Home
last modified time | relevance | path

Searched refs:argument (Results 1 – 25 of 1182) sorted by relevance

12345678910>>...48

/freebsd/sys/contrib/zstd/programs/
H A Dzstdcli.c894 if (argument[0]=='-') { in main()
1063 argument++; in main()
1068 if ((*argument>='0') && (*argument<='9')) { in main()
1121 argument++; in main()
1134 argument++; in main()
1140 argument++; in main()
1146 argument++; in main()
1152 argument++; in main()
1158 argument++; in main()
1166 argument++; in main()
[all …]
/freebsd/crypto/heimdal/kuser/
H A Dkdigest-commands.in55 argument = "realm"
67 argument = "type"
73 argument = "value"
100 argument = "realm"
106 argument = "name"
142 argument = "name"
160 argument = "uri"
172 argument = "qop"
194 argument = "name"
241 argument = "uri"
[all …]
H A Dkcc-commands.in115 argument = "enctype"
122 argument = "cachename"
162 argument = "enctype"
169 argument = "cachename"
176 argument = "keytabname"
183 argument = "principal"
204 argument = "service"
210 argument = "enctype"
221 argument = "time"
235 argument = "[command]"
/freebsd/contrib/googletest/docs/reference/
H A Dmatchers.md3 A **matcher** matches a *single* argument. You can use it inside `ON_CALL()` or
21 Built-in matchers (where `argument` is the function argument, e.g.
32 `A<type>()` or `An<type>()` | `argument` can be any value of type `type`.
73 | `IsNan()` | `argument` is any floating-point type with a NaN value. |
91 The `argument` can be either a C string or a C++ string object:
128 | `IsEmpty()` | `argument` is an empty container (`container.empty()`). |
145 int len)` -- see [Multi-argument Matchers](#MultiArgMatchers)).
166 …:field, m)` | `argument.field` (or `argument->field` when `argument` is a plain pointer) mat…
171argument.property()` (or `argument->property()` when `argument` is a plain pointer) matches matche…
212 ## Multi-argument Matchers {#MultiArgMatchers}
[all …]
H A Dactions.md13 | `ReturnArg<N>()` | Return the `N`-th (0-based) argument. |
26 | `DeleteArg<N>()` | Delete the `N`-th (0-based) argument, which must be a pointer. |
27 | `SaveArg<N>(pointer)` | Save the `N`-th (0-based) argument to `*pointer`. |
28 | `SaveArgPointee<N>(pointer)` | Save the value pointed to by the `N`-th (0-based) argument to `*po…
29 …gReferee<N>(value)` | Assign `value` to the variable referenced by the `N`-th (0-based) argument. |
30 …tArgPointee<N>(value)` | Assign `value` to the variable pointed by the `N`-th (0-based) argument. |
75 In `InvokeArgument<N>(...)`, if an argument needs to be passed by reference,
84 calls the mock function's #2 argument, passing to it `5` and `string("Hi")` by
103 | `WithArg<N>(a)` | Pass the `N`-th (0-based) argument of the mock function to actio…
111 …arg1; }` | Defines an action `Sum()` to return the sum of the mock function's argument #0 and #1. |
[all …]
/freebsd/contrib/libarchive/tar/
H A Dbsdtar.c326 if (strlen(bsdtar->argument) == 0) in main()
330 set_chdir(bsdtar, bsdtar->argument); in main()
369 bsdtar->filename = bsdtar->argument; in main()
381 bsdtar->gname = bsdtar->argument; in main()
400 bsdtar->gname = bsdtar->argument; in main()
405 bsdtar->gname = bsdtar->argument; in main()
458 bsdtar->argument) != ARCHIVE_OK) in main()
461 bsdtar->argument); in main()
679 bsdtar->uname = bsdtar->argument; in main()
684 bsdtar->uname = bsdtar->argument; in main()
[all …]
H A Dcmdline.c233 bsdtar->argument = NULL; in bsdtar_getopt()
267 bsdtar->argument = *bsdtar->argv; in bsdtar_getopt()
268 if (bsdtar->argument == NULL) { in bsdtar_getopt()
349 bsdtar->argument = bsdtar->getopt_word; in bsdtar_getopt()
363 bsdtar->argument = (char *)(uintptr_t)(p + 1); in bsdtar_getopt()
402 if (bsdtar->argument == NULL) { in bsdtar_getopt()
403 bsdtar->argument = *bsdtar->argv; in bsdtar_getopt()
404 if (bsdtar->argument == NULL) { in bsdtar_getopt()
415 if (bsdtar->argument != NULL) { in bsdtar_getopt()
/freebsd/crypto/heimdal/kadmin/
H A Dkadmin-commands.in49 argument = "file"
65 argument = "fd"
102 argument = "realm..."
108 argument = "file"
115 argument = "file"
150 argument ="lifetime"
168 argument = "time"
174 argument = "time"
293 argument = "from to"
323 argument = "time"
[all …]
/freebsd/crypto/heimdal/lib/hx509/
H A Dhxtool-commands.in67 argument = "password"
73 argument = "oid"
79 argument = "oid"
141 argument = "password"
191 argument = "password"
221 argument = "password"
227 argument = "enctype"
233 argument = "oid"
370 argument = "url"
484 argument = "name"
[all …]
/freebsd/sys/nlm/
H A Dnlm_prot_svc.c50 } argument; in nlm_prog_0() local
74 (void) memset((char *)&argument, 0, sizeof (argument)); in nlm_prog_0()
75 if (!svc_getargs(rqstp, xdr_argument, (char *)(caddr_t) &argument)) { in nlm_prog_0()
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp); in nlm_prog_0()
84 if (!svc_freeargs(rqstp, xdr_argument, (char *)(caddr_t) &argument)) { in nlm_prog_0()
112 } argument; in nlm_prog_1() local
226 (void) memset((char *)&argument, 0, sizeof (argument)); in nlm_prog_1()
255 } argument; in nlm_prog_3() local
319 (void) memset((char *)&argument, 0, sizeof (argument)); in nlm_prog_3()
363 } argument; in nlm_prog_4() local
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp70 CheckForLeaksParam *argument) { in LockStuffAndStopTheWorld() argument
76 CheckForLeaksParam *argument; in LockStuffAndStopTheWorld() member
77 } params = {{}, callback, argument}; in LockStuffAndStopTheWorld()
84 ScanGlobalRange(begin, end, &params->argument->frontier); in LockStuffAndStopTheWorld()
92 ScanRangeForPointers(begin, end, &params->argument->frontier, "STACK", in LockStuffAndStopTheWorld()
101 ScanRangeForPointers(begin, end, &params->argument->frontier, "REGISTERS", in LockStuffAndStopTheWorld()
126 &params->argument->frontier, "TLS", kReachable); in LockStuffAndStopTheWorld()
128 ScanRangeForPointers(begin2, end, &params->argument->frontier, "TLS", in LockStuffAndStopTheWorld()
131 ScanRangeForPointers(begin, end, &params->argument->frontier, "TLS", in LockStuffAndStopTheWorld()
153 ScanExtraStackRanges(ranges, &params->argument->frontier); in LockStuffAndStopTheWorld()
[all …]
/freebsd/crypto/heimdal/admin/
H A Dktutil-commands.in42 argument = "principal"
56 argument = "enctype"
94 argument = "realm"
101 argument = "host"
137 argument = "enctype"
143 argument = "realm"
150 argument = "host"
188 argument = "time"
209 argument = "enctype"
226 argument = "from to"
[all …]
/freebsd/contrib/byacc/test/btyacc/
H A Derr_inherit3.error5 YACC: w - line 64 of "./err_inherit3.y", unknown argument $c
6 YACC: w - line 64 of "./err_inherit3.y", untyped argument $c
7 YACC: w - line 65 of "./err_inherit3.y", unknown argument $t
10 YACC: w - line 65 of "./err_inherit3.y", unknown argument $c
13 YACC: w - line 69 of "./err_inherit3.y", unknown argument $t
16 YACC: w - line 69 of "./err_inherit3.y", untyped argument $t
17 YACC: w - line 69 of "./err_inherit3.y", unknown argument $c
20 YACC: w - line 69 of "./err_inherit3.y", untyped argument $c
/freebsd/contrib/bmake/unit-tests/
H A Dopt-jobs.mk9 EXPECT.0= argument '0' to option '-j' must be a positive number (exit 2)
13 EXPECT.08= argument '08' to option '-j' must be a positive number (exit 2)
16 EXPECT.-5= argument '-5' to option '-j' must be a positive number (exit 2)
30 EXPECT.0.0= argument '0.0' to option '-j' must be a positive number (exit 2)
32 EXPECT.0.0C= argument '0.0C' to option '-j' must be a positive number (exit 2)
33 EXPECT..00001= argument '.00001' to option '-j' must be a positive number (exit 2)
34 EXPECT..00001C= argument '.00001C' to option '-j' must be a positive number (exit 2)
40 EXPECT.08.5C= argument '08.5C' to option '-j' must be a positive number (exit 2)
/freebsd/contrib/libedit/
H A Dcommon.c78 int count = el->el_state.argument; in ed_insert()
99 c_insert(el, el->el_state.argument); in ed_insert()
127 el->el_state.argument, ce__isword); in ed_delete_prev_word()
324 el->el_state.argument, in ed_prev_word()
395 el->el_state.argument = c - '0'; in ed_digit()
399 el->el_state.argument = in ed_digit()
421 if (el->el_state.argument > 1000000) in ed_argument_digit()
423 el->el_state.argument = (el->el_state.argument * 10) + in ed_argument_digit()
426 el->el_state.argument = c - '0'; in ed_argument_digit()
761 if (el->el_state.argument > 0) in ed_prev_line()
[all …]
/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c913 if (argument[0]=='-') { in main()
914 argument++; in main()
917 switch(argument[0]) in main()
941 argument++; in main()
948 argument++; in main()
954 argument++; in main()
963 argument++; in main()
966 if (toupper(*argument)=='M') bSize<<=20, argument++; in main()
967 if (toupper(*argument)=='B') argument++; in main()
975 if ((*argument>='0') && (*argument<='9')) { in main()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td39 // Default value: OptionParser::eNoArgument (No argument allowed)
41 // - `OptionalArg`: Sets the argument type and marks it as optional.
42 // - `Arg`: Sets the argument type and marks it as required.
43 // - `EnumArg`: Sets the argument type to an enum and marks it as required.
81 // - `OptionalArg`: Sets the argument type and marks it as optional.
85 // - `Arg`: Sets the argument type and marks it as required.
96 // Use `OptionalEnumArg` for having an option enum argument.
142 // Gives the option an optional argument.
148 // Gives the option an required argument.
153 // Gives the option an required argument.
[all …]
/freebsd/contrib/libarchive/unzip/
H A Dcmdline.c96 bsdunzip->argument = NULL; in bsdunzip_getopt()
176 bsdunzip->argument = bsdunzip->getopt_word; in bsdunzip_getopt()
189 bsdunzip->argument = (char *)(uintptr_t)(p + 1); in bsdunzip_getopt()
228 if (bsdunzip->argument == NULL) { in bsdunzip_getopt()
229 bsdunzip->argument = *bsdunzip->argv; in bsdunzip_getopt()
230 if (bsdunzip->argument == NULL) { in bsdunzip_getopt()
242 if (bsdunzip->argument != NULL) { in bsdunzip_getopt()
/freebsd/contrib/libarchive/cat/
H A Dcmdline.c129 bsdcat->argument = NULL; in bsdcat_getopt()
211 bsdcat->argument = bsdcat->getopt_word; in bsdcat_getopt()
225 bsdcat->argument = (char *)(uintptr_t)(p + 1); in bsdcat_getopt()
264 if (bsdcat->argument == NULL) { in bsdcat_getopt()
265 bsdcat->argument = *bsdcat->argv; in bsdcat_getopt()
266 if (bsdcat->argument == NULL) { in bsdcat_getopt()
277 if (bsdcat->argument != NULL) { in bsdcat_getopt()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_fuchsia.cpp27 void StopTheWorld(StopTheWorldCallback callback, void *argument) { in StopTheWorld() argument
30 void *argument; in StopTheWorld() member
31 } params = {callback, argument}; in StopTheWorld()
36 params->callback(SuspendedThreadsListFuchsia(), params->argument); in StopTheWorld()
H A Dsanitizer_stoptheworld_win.cpp80 void *argument; member
83 DWORD WINAPI RunThread(void *argument) { in RunThread() argument
84 RunThreadArgs *run_args = (RunThreadArgs *)argument; in RunThread()
147 run_args->callback(suspended_threads_list, run_args->argument); in RunThread()
161 void StopTheWorld(StopTheWorldCallback callback, void *argument) { in StopTheWorld() argument
162 struct RunThreadArgs arg = {callback, argument}; in StopTheWorld()
/freebsd/usr.sbin/rpcbind/
H A Drpcb_svc.c74 } argument; in rpcb_service_3() local
161 (void) memset((char *)&argument, 0, sizeof (argument)); in rpcb_service_3()
163 (char *) &argument)) { in rpcb_service_3()
169 if (!check_access(transp, rqstp->rq_proc, &argument, RPCBVERS)) { in rpcb_service_3()
173 result = (*local)(&argument, rqstp, transp, RPCBVERS); in rpcb_service_3()
186 &argument)) { in rpcb_service_3()
/freebsd/libexec/rpc.rwalld/
H A Drwalld.c167 } argument; in wallprog_1() local
188 bzero(&argument, sizeof(argument)); in wallprog_1()
189 if (!svc_getargs(transp, xdr_argument, &argument)) { in wallprog_1()
193 result = (*local)(&argument, rqstp); in wallprog_1()
198 if (!svc_freeargs(transp, xdr_argument, &argument)) { in wallprog_1()
/freebsd/contrib/libarchive/cpio/
H A Dcmdline.c129 cpio->argument = NULL; in cpio_getopt()
208 cpio->argument = opt_word; in cpio_getopt()
222 cpio->argument = (char *)(uintptr_t)(p + 1); in cpio_getopt()
261 if (cpio->argument == NULL) { in cpio_getopt()
262 cpio->argument = *cpio->argv; in cpio_getopt()
263 if (cpio->argument == NULL) { in cpio_getopt()
274 if (cpio->argument != NULL) { in cpio_getopt()
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetCallingConv.td28 /// CCIfType - If the current argument is one of the specified types, apply
39 /// CCIfByVal - If the current argument has ByVal parameter attribute, apply
64 /// CCIfCFGuardTarget - If the current argument has cfguardtarget parameter
69 /// CCIfConsecutiveRegs - If the current argument has InConsecutiveRegs
78 /// CCIfInReg - If this argument is marked with the 'inreg' attribute, apply
82 /// CCIfNest - If this argument is marked with the 'nest' attribute, apply
86 /// CCIfSplit - If this argument is marked with the 'split' attribute, apply
90 /// CCIfSRet - If this argument is marked with the 'sret' attribute, apply
100 /// CCIfPtrAddrSpace - If the top-level parent of the current argument has
105 /// CCIfPtr - If the top-level parent of the current argument had
[all …]

12345678910>>...48