Searched refs:options (Results 1 - 20 of 20) sorted by relevance

/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 wait3(int* status, int options, struct rusage* rusage) { argument
39 return wait4(-1, status, options, rusage);
42 pid_t waitpid(pid_t pid, int* status, int options) { argument
43 return wait4(pid, status, options, NULL);
46 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) { argument
48 return __waitid(which, id, info, options, NULL);
52 extern "C" pid_t __wait4(pid_t pid, int* status, int options, struct rusage* rusage) { argument
53 return wait4(pid, status, options, rusage);
H A Dfts.c70 fts_open(char * const *argv, int options, argument
80 if (options & ~FTS_OPTIONMASK) {
89 sp->fts_options = options;
/bionic/libc/kernel/arch-mips/asm/
H A Dcpu-features.h30 #define cpu_has_tlb (cpu_data[0].options & MIPS_CPU_TLB)
34 #define cpu_has_4kex (cpu_data[0].options & MIPS_CPU_4KEX)
37 #define cpu_has_3k_cache (cpu_data[0].options & MIPS_CPU_3K_CACHE)
44 #define cpu_has_4k_cache (cpu_data[0].options & MIPS_CPU_4K_CACHE)
47 #define cpu_has_tx39_cache (cpu_data[0].options & MIPS_CPU_TX39_CACHE)
51 #define cpu_has_fpu (current_cpu_data.options & MIPS_CPU_FPU)
52 #define raw_cpu_has_fpu (raw_current_cpu_data.options & MIPS_CPU_FPU)
59 #define cpu_has_32fpr (cpu_data[0].options & MIPS_CPU_32FPR)
62 #define cpu_has_counter (cpu_data[0].options & MIPS_CPU_COUNTER)
66 #define cpu_has_watch (cpu_data[0].options
[all...]
H A Dcpu-info.h44 unsigned long options; member in struct:cpuinfo_mips
/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)
368 * Disable GNU extensions if POSIXLY_CORRECT is set or options
579 getopt(int nargc, char * const *nargv, const char *options) argument
599 getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
612 getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]
/bionic/libc/kernel/common/linux/mtd/
H A Dbbm.h24 int options; member in struct:nand_bbt_descr
62 int options; member in struct:bbm_info
H A Dnand.h102 #define NAND_CANAUTOINCR(chip) (!(chip->options & NAND_NO_AUTOINCR))
104 #define NAND_MUST_PAD(chip) (!(chip->options & NAND_NO_PADDING))
105 #define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG))
106 #define NAND_HAS_COPYBACK(chip) ((chip->options & NAND_COPYBACK))
202 unsigned int options; member in struct:nand_chip
249 unsigned long options; member in struct:nand_flash_dev
257 int options; member in struct:nand_bbt_descr
302 unsigned int options; member in struct:platform_nand_chip
/bionic/libc/netbsd/resolv/
H A Dres_query.c144 if (statp->options & RES_DEBUG)
152 (statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC)) != 0U)
157 if (statp->options & RES_DEBUG)
167 if ((statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC)) != 0U &&
170 if (statp->options & RES_DEBUG)
176 if (statp->options & RES_DEBUG)
185 if (statp->options & RES_DEBUG)
271 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
272 (dots && !trailing_dot && (statp->options & RES_DNSRCH) != 0U)) {
339 if ((statp->options
[all...]
H A Dres_init.c182 if ((statp->options & RES_INIT) != 0U)
188 statp->options = RES_DEFAULT;
417 if (MATCH(buf, "options")) {
418 res_setoptions(statp, buf + sizeof("options") - 1, "conf");
462 if (statp->options & RES_DEBUG) {
475 statp->options |= RES_INIT;
481 res_setoptions(res_state statp, const char *options, const char *source) argument
483 const char *cp = options;
488 if (statp->options & RES_DEBUG)
490 options, sourc
[all...]
H A Dres_mkquery.c135 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 Dres_send.c384 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 Dres_data.c85 #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 Dres_state.c163 D("%s: tid=%d, rt=%p, resetting DNS state (options RES_INIT=%d)",
164 __FUNCTION__, gettid(), rt, (rt->_nres->options & RES_INIT) != 0);
H A Dres_debug.c144 * Print the current options.
150 fprintf(file, ";; res options:");
152 if (statp->options & mask)
/bionic/libc/include/sys/
H A Dwait.h59 extern int waitid(idtype_t which, id_t id, siginfo_t *info, int options);
/bionic/libc/kernel/common/linux/
H A Dwatchdog.h26 __u32 options; member in struct:watchdog_info
/bionic/libc/netbsd/
H A Dgethnamaddr.c144 if (res->options & RES_DEBUG) {
373 if (res->options & RES_USE_INET6) {
460 if (res->options & RES_USE_INET6)
499 if (res->options & RES_USE_INET6) {
690 if (res->options & RES_USE_INET6)
943 if (res->options & RES_USE_INET6) {
1007 if (res->options & RES_USE_INET6)
1397 if (af == AF_INET && (res->options & RES_USE_INET6)) {
/bionic/libc/private/
H A Dresolv_private.h149 u_int options; /* option flags - see below. */ member in struct:__res_state
151 u_long options; /* option flags - see below. */ member in struct:__res_state
222 /* res_findzonecut2() options */
228 * Resolver options (keep these in synch with res_debug.c, please)
/bionic/libc/netbsd/net/
H A Dgetaddrinfo.c2188 if (res->options & RES_DEBUG)
2195 if (n > 0 && (res->options & RES_USE_EDNS0) != 0)
2200 if (res->options & RES_DEBUG)
2210 if (res->options & RES_DEBUG)
2221 if (res->options & RES_DEBUG)
2315 if ((!dots && (res->options & RES_DEFNAMES)) ||
2316 (dots && !trailing_dot && (res->options & RES_DNSRCH))) {
2373 if (!(res->options & RES_DNSRCH))
2422 if (res->options & RES_DEBUG)
/bionic/libc/kernel/common/sound/
H A Dcompress_params.h261 union snd_codec_options options; member in struct:snd_codec

Completed in 354 milliseconds