Searched refs:scope (Results 1 – 7 of 7) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_attr.cpp | 215 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/ |
D | tipc.h | 79 signed char scope; member 109 __u32 scope; member
|
D | counter.h | 26 __u8 scope; member
|
/bionic/libc/dns/net/ |
D | getaddrinfo.c | 1024 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/ |
D | libc_assembler.md | 96 is beyond the scope of this document. However, most of the benchmarks max
|
D | clang_fortify_anatomy.md | 94 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/ |
D | pthread_test.cpp | 1488 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()
|