Lines Matching defs:argvp

163 ARGV   *argv_free(ARGV *argvp)  in argv_free()
178 ARGV *argvp; in argv_alloc() local
204 ARGV *argv_qsort(ARGV *argvp, ARGV_COMPAR_FN compar) in argv_qsort()
213 ARGV *argv_sort(ARGV *argvp) in argv_sort()
221 ARGV *argv_uniq(ARGV *argvp, ARGV_COMPAR_FN compar) in argv_uniq()
241 static void argv_extend(ARGV *argvp) in argv_extend()
253 void argv_add(ARGV *argvp,...) in argv_add()
275 void argv_addn(ARGV *argvp,...) in argv_addn()
298 void argv_terminate(ARGV *argvp) in argv_terminate()
309 void argv_truncate(ARGV *argvp, ssize_t len) in argv_truncate()
329 void argv_insert_one(ARGV *argvp, ssize_t where, const char *arg) in argv_insert_one()
349 void argv_replace_one(ARGV *argvp, ssize_t where, const char *arg) in argv_replace_one()
366 void argv_delete(ARGV *argvp, ssize_t first, ssize_t how_many) in argv_delete()
432 static ARGV *test_argv_populate(const TEST_CASE *tp, ARGV *argvp) in test_argv_populate()
445 static ARGV *test_argv_sort(const TEST_CASE *tp, ARGV *argvp) in test_argv_sort()
454 static ARGV *test_argv_sort_uniq(const TEST_CASE *tp, ARGV *argvp) in test_argv_sort_uniq()
467 static ARGV *test_argv_good_truncate(const TEST_CASE *tp, ARGV *argvp) in test_argv_good_truncate()
476 static ARGV *test_argv_bad_truncate(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_truncate()
485 static ARGV *test_argv_good_insert(const TEST_CASE *tp, ARGV *argvp) in test_argv_good_insert()
494 static ARGV *test_argv_bad_insert1(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_insert1()
503 static ARGV *test_argv_bad_insert2(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_insert2()
512 static ARGV *test_argv_good_replace(const TEST_CASE *tp, ARGV *argvp) in test_argv_good_replace()
521 static ARGV *test_argv_bad_replace1(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_replace1()
530 static ARGV *test_argv_bad_replace2(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_replace2()
539 static ARGV *test_argv_bad_delete1(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_delete1()
548 static ARGV *test_argv_bad_delete2(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_delete2()
557 static ARGV *test_argv_bad_delete3(const TEST_CASE *tp, ARGV *argvp) in test_argv_bad_delete3()
566 static int test_argv_verify(const TEST_CASE *tp, ARGV *argvp) in test_argv_verify()
700 ARGV *argvp; in main() local