/bionic/libc/bionic/ |
H A D | wait.cpp | 32 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 D | malloc_info.cpp | 59 int malloc_info(int options, FILE* fp) { argument 60 if (options != 0) {
|
H A D | ndk_cruft.cpp | 61 extern "C" pid_t __wait4(pid_t pid, int* status, int options, struct rusage* rusage) { argument 62 return wait4(pid, status, options, rusage); 271 extern "C" pid_t wait3(int* status, int options, struct rusage* rusage) { argument 272 return wait4(-1, status, options, rusage);
|
H A D | fts.c | 73 fts_open(char * const *argv, int options, argument 83 if (options & ~FTS_OPTIONMASK) { 92 sp->fts_options = options;
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
H A D | xt_connlabel.h | 29 __u16 options; member in struct:xt_connlabel_mtinfo
|
H A D | xt_SYNPROXY.h | 29 __u8 options; member in struct:xt_synproxy_info
|
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
H A D | getopt_long.c | 80 #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/dns/resolv/ |
H A D | res_query.c | 145 if (statp->options & RES_DEBUG) 153 (statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC)) != 0U) 158 if (statp->options & RES_DEBUG) 168 if ((statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC)) != 0U && 171 if (statp->options & RES_DEBUG) 177 if (statp->options & RES_DEBUG) 186 if (statp->options & RES_DEBUG) 272 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) || 273 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) { 340 if ((statp->options [all...] |
H A D | res_init.c | 191 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...] |
H A D | res_mkquery.c | 135 if (statp->options & RES_DEBUG) 148 hp->rd = (statp->options & RES_RECURSE) != 0U; 242 if ((statp->options & RES_DEBUG) != 0U) 261 if (statp->options & RES_USE_DNSSEC) { 263 if (statp->options & RES_DEBUG)
|
H A D | res_send.c | 384 DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_QUERY), 386 v_circuit = (statp->options & RES_USEVC) || buflen > PACKETSZ; 473 if ((statp->options & RES_ROTATE) != 0U && 474 (statp->options & RES_BLAST) == 0U) { 543 Dprint(((statp->options & RES_DEBUG) && 592 Dprint((statp->options & RES_DEBUG) || 597 DprintQ((statp->options & RES_DEBUG) || 613 if ((v_circuit && (statp->options & RES_USEVC) == 0U) || 614 (statp->options & RES_STAYOPEN) == 0U) { 875 Dprint(statp->options [all...] |
H A D | res_data.c | 85 #define res_need_init() ((_nres.options & RES_INIT) == 0U) 94 * to set options. We keep another struct res that is the same 102 if (ores->options != 0) 103 _nres.options = ores->options; 123 * _nres.options is tricky since some apps were known to diddle the bits 133 if (!(_nres.options & RES_INIT)) 134 _nres.options = RES_DEFAULT;
|
H A D | res_state.c | 161 D("%s: tid=%d, rt=%p, resetting DNS state (options RES_INIT=%d)", 162 __FUNCTION__, gettid(), rt, (rt->_nres->options & RES_INIT) != 0);
|
/bionic/tests/ |
H A D | gtest_main.cpp | 884 // Pick options not for gtest: There are two parts in args, one part is used in isolation test mode 889 // args is used to pass in all command arguments, and pass out only the part of options for gtest. 890 // options is used to pass out test options in isolation mode. 892 static bool PickOptions(std::vector<char*>& args, IsolationTestOptions& options) { argument 896 options.isolate = false; 937 options.isolate = true; 941 options.isolate = false; 943 options.isolate = false; 948 if (options 1053 IsolationTestOptions options; local [all...] |
/bionic/libc/include/sys/ |
H A D | wait.h | 61 extern int waitid(idtype_t which, id_t id, siginfo_t *info, int options);
|
/bionic/libc/kernel/uapi/linux/ |
H A D | isdn_ppp.h | 66 unsigned char options[ISDN_PPP_COMP_MAX_OPTIONS]; member in struct:isdn_ppp_comp_data
|
H A D | net_dropmon.h | 43 struct net_dm_config_entry options[0]; member in struct:net_dm_config_msg
|
H A D | watchdog.h | 26 __u32 options; member in struct:watchdog_info
|
/bionic/tools/relocation_packer/src/ |
H A D | main.cc | 56 static const option options[] = { local 62 int c = getopt_long(argc, argv, "uvph", options, NULL);
|
/bionic/libc/dns/include/ |
H A D | resolv_private.h | 159 u_int options; /* option flags - see below. */ member in struct:__res_state 161 u_long options; /* option flags - see below. */ member in struct:__res_state 232 /* res_findzonecut2() options */ 238 * Resolver options (keep these in synch with res_debug.c, please)
|
/bionic/libc/dns/net/ |
H A D | getaddrinfo.c | 2167 if (res->options & RES_DEBUG) 2174 if (n > 0 && (res->options & RES_USE_EDNS0) != 0) 2179 if (res->options & RES_DEBUG) 2189 if (res->options & RES_DEBUG) 2200 if (res->options & RES_DEBUG) 2294 if ((!dots && (res->options & RES_DEFNAMES)) || 2295 (dots && !trailing_dot && (res->options & RES_DNSRCH))) { 2352 if (!(res->options & RES_DNSRCH)) 2401 if (res->options & RES_DEBUG)
|
H A D | gethnamaddr.c | 93 #define maybe_ok(res, nm, ok) (((res)->options & RES_NOCHECKNAME) != 0U || \ 172 if (res->options & RES_DEBUG) { 389 if (res->options & RES_USE_INET6) { 474 if (res->options & RES_USE_INET6) 524 if (res->options & RES_USE_INET6) { 809 if (res->options & RES_USE_INET6) 1014 if (res->options & RES_USE_INET6) { 1323 if (info->hp->h_addrtype == AF_INET && (res->options & RES_USE_INET6)) {
|
H A D | sethostent.c | 107 if (res->options & RES_USE_INET6)
|
/bionic/libc/kernel/uapi/sound/ |
H A D | compress_params.h | 241 union snd_codec_options options; member in struct:snd_codec
|
/bionic/libc/kernel/tools/ |
H A D | cpp.py | 212 options = TranslationUnit.PARSE_DETAILED_PROCESSING_RECORD variable in class:CppTokenizer 274 options=self.options) 280 options=self.options)
|