Searched refs:scope (Results 1 - 24 of 24) sorted by relevance

/bionic/libc/kernel/uapi/linux/
H A Dtipc.h103 signed char scope; member in struct:sockaddr_tipc
131 __u32 scope; member in struct:tipc_group_req
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dtipc.h103 signed char scope; member in struct:sockaddr_tipc
131 __u32 scope; member in struct:tipc_group_req
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dtipc.h103 signed char scope; member in struct:sockaddr_tipc
131 __u32 scope; member in struct:tipc_group_req
/bionic/libc/bionic/
H A Dpthread_attr.cpp260 int pthread_attr_setscope(pthread_attr_t*, int scope) { argument
261 if (scope == PTHREAD_SCOPE_SYSTEM) {
264 if (scope == PTHREAD_SCOPE_PROCESS) {
271 int pthread_attr_getscope(const pthread_attr_t*, int* scope) { argument
272 *scope = PTHREAD_SCOPE_SYSTEM;
/bionic/tools/bionicbb/
H A Dgmail.py41 scope=OAUTH_SCOPE)
/bionic/libm/x86/
H A De_hypot.S201 # Start file scope ASM
203 # End file scope ASM
H A De_exp.S259 # Start file scope ASM
261 # End file scope ASM
H A De_log.S233 # Start file scope ASM
235 # End file scope ASM
H A De_log10.S244 # Start file scope ASM
246 # End file scope ASM
H A Ds_atan.S247 # Start file scope ASM
249 # End file scope ASM
H A Ds_cbrt.S227 # Start file scope ASM
229 # End file scope ASM
H A Ds_cos.S316 # Start file scope ASM
318 # End file scope ASM
H A Ds_sin.S323 # Start file scope ASM
325 # End file scope ASM
H A De_cosh.S274 # Start file scope ASM
276 # End file scope ASM
H A Ds_log1p.S268 # Start file scope ASM
270 # End file scope ASM
H A Ds_tan.S286 # Start file scope ASM
288 # End file scope ASM
H A Ds_tanh.S280 # Start file scope ASM
282 # End file scope ASM
H A De_acos.S390 # Start file scope ASM
392 # End file scope ASM
H A De_sinh.S326 # Start file scope ASM
328 # End file scope ASM
H A Ds_expm1.S367 # Start file scope ASM
369 # End file scope ASM
H A De_asin.S468 # Start file scope ASM
470 # End file scope ASM
H A De_atan2.S454 # Start file scope ASM
456 # End file scope ASM
/bionic/libc/dns/net/
H A Dgetaddrinfo.c1013 * numeric hostname with scope
1025 char *cp, *hostname2 = NULL, *scope, *addr;
1051 * Handle special case of <scoped_address><delimiter><scope id>
1059 scope = cp + 1;
1069 if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) {
1244 /* convert a string to a scope identifier. XXX: IPv6 specific */
1246 ip6_str2scopeid(char *scope, struct sockaddr_in6 *sin6, u_int32_t *scopeid) argument
1252 assert(scope != NULL);
1259 if (*scope == '\0')
1268 *scopeid = if_nametoindex(scope);
[all...]
/bionic/tests/
H A Dpthread_test.cpp1278 int scope; local
1279 ASSERT_EQ(0, pthread_attr_getscope(&attr, &scope));
1280 ASSERT_EQ(PTHREAD_SCOPE_SYSTEM, scope);

Completed in 6536 milliseconds