Home
last modified time | relevance | path

Searched refs:scope (Results 1 – 7 of 7) 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()
226 int pthread_attr_getscope(const pthread_attr_t*, int* scope) { in pthread_attr_getscope() argument
227 *scope = PTHREAD_SCOPE_SYSTEM; in pthread_attr_getscope()
/bionic/libc/kernel/uapi/linux/
Dtipc.h79 signed char scope; member
109 __u32 scope; member
Dcounter.h26 __u8 scope; member
/bionic/libc/dns/net/
Dgetaddrinfo.c1024 char *cp, *hostname2 = NULL, *scope, *addr; in explore_numeric_scope()
1058 scope = cp + 1; in explore_numeric_scope()
1068 if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) { in explore_numeric_scope()
1245 ip6_str2scopeid(char *scope, struct sockaddr_in6 *sin6, u_int32_t *scopeid) in ip6_str2scopeid() argument
1251 assert(scope != NULL); in ip6_str2scopeid()
1258 if (*scope == '\0') in ip6_str2scopeid()
1267 *scopeid = if_nametoindex(scope); in ip6_str2scopeid()
1284 lscopeid = strtoul(scope, &ep, 10); in ip6_str2scopeid()
/bionic/docs/
Dlibc_assembler.md96 is beyond the scope of this document. However, most of the benchmarks max
Dclang_fortify_anatomy.md94 implementations is out-of-scope for this doc, however.
629 attribute/builtin necessary to power FORTIFY was out of scope. This is... only
/bionic/tests/
Dpthread_test.cpp1488 int scope; in TEST() local
1489 ASSERT_EQ(0, pthread_attr_getscope(&attr, &scope)); in TEST()
1490 ASSERT_EQ(PTHREAD_SCOPE_SYSTEM, scope); in TEST()