Searched defs:options (Results 1 - 17 of 17) sorted by relevance

/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_connlabel.h29 __u16 options; member in struct:xt_connlabel_mtinfo
H A Dxt_SYNPROXY.h29 __u8 options; member in struct:xt_synproxy_info
/bionic/libc/bionic/
H A Dwait.cpp32 extern "C" int __waitid(idtype_t which, id_t id, siginfo_t* info, int options, struct rusage* ru);
38 pid_t waitpid(pid_t pid, int* status, int options) { argument
39 return wait4(pid, status, options, NULL);
42 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) { argument
44 return __waitid(which, id, info, options, NULL);
H A Dmalloc_info.cpp59 int malloc_info(int options, FILE* fp) { argument
60 if (options != 0) {
H A Dfts.c73 fts_open(char * const *argv, int options, argument
83 if (options & ~FTS_OPTIONMASK) {
92 sp->fts_options = options;
H A Dndk_cruft.cpp61 pid_t __wait4(pid_t pid, int* status, int options, struct rusage* rusage) { argument
62 return wait4(pid, status, options, rusage);
271 pid_t wait3(int* status, int options, struct rusage* rusage) { argument
272 return wait4(-1, status, options, rusage);
/bionic/tools/relocation_packer/src/
H A Dmain.cc56 static const option options[] = { local
62 int c = getopt_long(argc, argv, "uvph", options, NULL);
/bionic/libc/kernel/uapi/linux/
H A Disdn_ppp.h66 unsigned char options[ISDN_PPP_COMP_MAX_OPTIONS]; member in struct:isdn_ppp_comp_data
H A Dnet_dropmon.h43 struct net_dm_config_entry options[0]; member in struct:net_dm_config_msg
H A Dwatchdog.h26 __u32 options; member in struct:watchdog_info
/bionic/libc/malloc_debug/
H A DConfig.h52 // If only one or more of these options is set, then no special header is needed.
74 uint64_t options = 0; member in struct:Config
/bionic/libc/dns/resolv/
H A Dres_init.c191 if ((statp->options & RES_INIT) != 0U)
198 statp->options = RES_DEFAULT;
428 if (MATCH(buf, "options")) {
429 res_setoptions(statp, buf + sizeof("options") - 1, "conf");
473 if (statp->options & RES_DEBUG) {
486 statp->options |= RES_INIT;
492 res_setoptions(res_state statp, const char *options, const char *source) argument
494 const char *cp = options;
499 if (statp->options & RES_DEBUG)
501 options, sourc
[all...]
/bionic/libc/upstream-freebsd/lib/libc/stdlib/
H A Dgetopt_long.c80 #define PRINT_ERROR ((opterr) && (*options != ':'))
82 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
83 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
88 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
111 static int nonopt_end = -1; /* first option after non options (for permute) */
188 * Parse long options in argc/argv argument vector.
192 parse_long_options(char * const *nargv, const char *options, argument
357 getopt_internal(int nargc, char * const *nargv, const char *options, argument
364 if (options == NULL)
375 * Disable GNU extensions if POSIXLY_CORRECT is set or options
573 getopt(int nargc, char * const *nargv, const char *options) argument
593 getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
606 getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]
/bionic/libc/kernel/tools/
H A Dcpp.py212 options = TranslationUnit.PARSE_DETAILED_PROCESSING_RECORD variable in class:CppTokenizer
274 options=self.options)
280 options=self.options)
/bionic/libc/dns/include/
H A Dresolv_private.h160 u_int options; /* option flags - see below. */ member in struct:__res_state
162 u_long options; /* option flags - see below. */ member in struct:__res_state
251 /* res_findzonecut2() options */
257 * Resolver options (keep these in synch with res_debug.c, please)
/bionic/libc/kernel/uapi/sound/
H A Dcompress_params.h241 union snd_codec_options options; member in struct:snd_codec
/bionic/tests/
H A Dgtest_main.cpp951 // Pick options not for gtest: There are two parts in args, one part is used in isolation test mode
956 // args is used to pass in all command arguments, and pass out only the part of options for gtest.
957 // options is used to pass out test options in isolation mode.
959 static bool PickOptions(std::vector<char*>& args, IsolationTestOptions& options) { argument
963 options.isolate = false;
1004 options.isolate = true;
1008 options.isolate = false;
1010 options.isolate = false;
1015 if (options
1132 IsolationTestOptions options; local
[all...]

Completed in 358 milliseconds