Home
last modified time | relevance | path

Searched refs:scope (Results 1 – 22 of 22) sorted by relevance

/bionic/libc/bionic/
Dpthread_attr.cpp215 int pthread_attr_setscope(pthread_attr_t*, int scope) { in pthread_attr_setscope() argument
216 if (scope == PTHREAD_SCOPE_SYSTEM) { in pthread_attr_setscope()
219 if (scope == PTHREAD_SCOPE_PROCESS) { in pthread_attr_setscope()
225 int pthread_attr_getscope(const pthread_attr_t*, int* scope) { in pthread_attr_getscope() argument
226 *scope = PTHREAD_SCOPE_SYSTEM; in pthread_attr_getscope()
/bionic/tools/bionicbb/
Dgmail.py41 scope=OAUTH_SCOPE)
/bionic/libc/kernel/uapi/linux/
Dtipc.h107 signed char scope; member
/bionic/libm/x86/
De_hypot.S201 # Start file scope ASM
203 # End file scope ASM
Ds_sin.S323 # Start file scope ASM
325 # End file scope ASM
Ds_cos.S316 # Start file scope ASM
318 # End file scope ASM
Ds_cbrt.S227 # Start file scope ASM
229 # End file scope ASM
De_log.S233 # Start file scope ASM
235 # End file scope ASM
De_exp.S259 # Start file scope ASM
261 # End file scope ASM
De_log10.S244 # Start file scope ASM
246 # End file scope ASM
Ds_tan.S286 # Start file scope ASM
288 # End file scope ASM
Ds_atan.S247 # Start file scope ASM
249 # End file scope ASM
Ds_log1p.S268 # Start file scope ASM
270 # End file scope ASM
Ds_tanh.S280 # Start file scope ASM
282 # End file scope ASM
De_cosh.S274 # Start file scope ASM
276 # End file scope ASM
De_sinh.S326 # Start file scope ASM
328 # End file scope ASM
Ds_expm1.S367 # Start file scope ASM
369 # End file scope ASM
De_acos.S390 # Start file scope ASM
392 # End file scope ASM
De_atan2.S454 # Start file scope ASM
456 # End file scope ASM
De_asin.S468 # Start file scope ASM
470 # End file scope ASM
/bionic/libc/dns/net/
Dgetaddrinfo.c1019 char *cp, *hostname2 = NULL, *scope, *addr; in explore_numeric_scope()
1053 scope = cp + 1; in explore_numeric_scope()
1063 if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) { in explore_numeric_scope()
1240 ip6_str2scopeid(char *scope, struct sockaddr_in6 *sin6, u_int32_t *scopeid) in ip6_str2scopeid() argument
1246 assert(scope != NULL); in ip6_str2scopeid()
1253 if (*scope == '\0') in ip6_str2scopeid()
1262 *scopeid = if_nametoindex(scope); in ip6_str2scopeid()
1279 lscopeid = strtoul(scope, &ep, 10); in ip6_str2scopeid()
/bionic/tests/
Dpthread_test.cpp1056 int scope; in TEST() local
1057 ASSERT_EQ(0, pthread_attr_getscope(&attr, &scope)); in TEST()
1058 ASSERT_EQ(PTHREAD_SCOPE_SYSTEM, scope); in TEST()