Lines Matching refs:av
382 char *tmp, *username = NULL, *command = NULL, **av = NULL; in match_principals_command() local
415 &ac, &av, 0) != 0) { in match_principals_command()
448 tmp = percent_expand(av[i], in match_principals_command()
465 free(av[i]); in match_principals_command()
466 av[i] = tmp; in match_principals_command()
469 command = argv_assemble(ac, av); in match_principals_command()
472 ac, av, &f, in match_principals_command()
495 free(av[i]); in match_principals_command()
496 free(av); in match_principals_command()
656 char uidstr[32], *tmp, *command = NULL, **av = NULL; in user_key_command_allowed2() local
696 if (argv_split(options.authorized_keys_command, &ac, &av, 0) != 0) { in user_key_command_allowed2()
709 tmp = percent_expand(av[i], in user_key_command_allowed2()
721 free(av[i]); in user_key_command_allowed2()
722 av[i] = tmp; in user_key_command_allowed2()
725 command = argv_assemble(ac, av); in user_key_command_allowed2()
733 av = xreallocarray(av, ac + 2, sizeof(*av)); in user_key_command_allowed2()
734 av[1] = xstrdup(user_pw->pw_name); in user_key_command_allowed2()
735 av[2] = NULL; in user_key_command_allowed2()
738 xasprintf(&command, "%s %s", av[0], av[1]); in user_key_command_allowed2()
742 ac, av, &f, in user_key_command_allowed2()
767 free(av[i]); in user_key_command_allowed2()
768 free(av); in user_key_command_allowed2()