Searched refs:arg_list (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | stack.c | 50 tArgList * arg_list; in optionUnstackArg() local 55 arg_list = (tArgList *)od->optCookie; in optionUnstackArg() 61 if (arg_list == NULL) { in optionUnstackArg() 82 for (i = 0, dIdx = 0, ct = arg_list->useCt; --ct >= 0; i++) { in optionUnstackArg() 83 char const * pzSrc = arg_list->apzArgs[ i ]; in optionUnstackArg() 100 arg_list->useCt--; in optionUnstackArg() 113 arg_list->apzArgs[ dIdx ] = pzSrc; in optionUnstackArg() 130 for (i = 0, dIdx = 0, ct = arg_list->useCt; --ct >= 0; i++) { in optionUnstackArg() 131 const char * pzSrc = arg_list->apzArgs[ i ]; in optionUnstackArg() 144 arg_list->useCt--; in optionUnstackArg() [all …]
|
H A D | nested.c | 600 unload_arg_list(tArgList * arg_list) in unload_arg_list() argument 602 int ct = arg_list->useCt; in unload_arg_list() 603 char const ** pnew_val = arg_list->apzArgs; in unload_arg_list() 612 AGFREE(arg_list); in unload_arg_list() 645 sort_list(tArgList * arg_list) in sort_list() argument 648 int lm = arg_list->useCt; in sort_list() 655 tOptionValue * new_v = C(tOptionValue *, arg_list->apzArgs[ix]); in sort_list() 656 tOptionValue * old_v = C(tOptionValue *, arg_list->apzArgs[iy]); in sort_list() 664 arg_list->apzArgs[iy+1] = VOIDP(old_v); in sort_list() 665 old_v = (tOptionValue *)VOIDP(arg_list->apzArgs[--iy]); in sort_list() [all …]
|
H A D | configfile.c | 274 tArgList * arg_list; in optionGetValue() local 281 arg_list = oov->v.nestVal; in optionGetValue() 283 if (arg_list->useCt > 0) { in optionGetValue() 284 int ct = arg_list->useCt; in optionGetValue() 285 void ** ovlist = (void **)(arg_list->apzArgs); in optionGetValue() 333 tArgList * arg_list; in optionNextValue() local 341 arg_list = ov_list->v.nestVal; in optionNextValue() 343 int ct = arg_list->useCt; in optionNextValue() 344 void ** o_list = (void **)(arg_list->apzArgs); in optionNextValue()
|
H A D | proto.h | 339 unload_arg_list(tArgList * arg_list); 342 sort_list(tArgList * arg_list);
|
/freebsd/usr.bin/rpcgen/ |
H A D | rpc_parse.h | 139 struct arg_list { struct 144 typedef struct arg_list arg_list; typedef 149 arg_list args;
|
/freebsd/contrib/unbound/contrib/ |
H A D | unbound_cache.sh | 141 arg_list=$* 143 set -- `$GETOPT sSlLrRhH: $arg_list` || { 148 for i in $arg_list
|
/freebsd/contrib/kyua/utils/cmdline/ |
H A D | base_command_test.cpp | 199 ATF_REQUIRE_EQ("arg1 [arg2 [arg3]]", cmd.arg_list()); in ATF_TEST_CASE_BODY() 243 ATF_REQUIRE_EQ("arg1 [arg2 [arg3]]", cmd.arg_list()); in ATF_TEST_CASE_BODY()
|
H A D | base_command.hpp | 84 const std::string& arg_list(void) const;
|
H A D | base_command.cpp | 132 cmdline::command_proto::arg_list(void) const in arg_list() function in cmdline::command_proto
|
/freebsd/contrib/kyua/cli/ |
H A D | cmd_help.cpp | 178 (command->arg_list().empty() ? "" : (" " + command->arg_list())), in subcommand_help()
|
/freebsd/contrib/lib9p/pytest/ |
H A D | pfod.py | 173 arg_list = repr(tuple(field_names)).replace("'", "")[1:-1],
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 612 std::vector<CompilerType> arg_list; in CreateLLDBTypeFromPDBType() local 634 arg_list.push_back(arg_ast_type); in CreateLLDBTypeFromPDBType() 636 lldbassert(arg_list.size() <= num_args); in CreateLLDBTypeFromPDBType() 657 m_ast.CreateFunctionType(return_ast_type, arg_list.data(), in CreateLLDBTypeFromPDBType() 658 arg_list.size(), is_variadic, type_quals, cc); in CreateLLDBTypeFromPDBType()
|