Searched refs:attributes (Results 1 – 7 of 7) sorted by relevance
/bionic/libc/bionic/ |
D | system.cpp | 53 posix_spawnattr_t attributes; in system() local 54 if ((errno = posix_spawnattr_init(&attributes))) return -1; in system() 55 if ((errno = posix_spawnattr_setsigdefault64(&attributes, &default_mask))) return -1; in system() 56 if ((errno = posix_spawnattr_setsigmask64(&attributes, &sigchld_blocker.old_set_))) return -1; in system() 57 if ((errno = posix_spawnattr_setflags(&attributes, flags))) return -1; in system() 61 if ((errno = posix_spawn(&child, __bionic_get_shell_path(), nullptr, &attributes, in system() 66 posix_spawnattr_destroy(&attributes); in system()
|
/bionic/tests/ |
D | pthread_test.cpp | 291 pthread_attr_t attributes; in TEST() local 292 ASSERT_EQ(0, pthread_attr_init(&attributes)); in TEST() 293 …ASSERT_EQ(0, pthread_attr_setstacksize(&attributes, static_cast<size_t>(-1) & ~(getpagesize() - 1)… in TEST() 296 ASSERT_EQ(EAGAIN, pthread_create(&t, &attributes, IdFn, nullptr)); in TEST() 750 pthread_attr_t attributes; in GetActualGuardSizeFn() local 751 pthread_getattr_np(pthread_self(), &attributes); in GetActualGuardSizeFn() 752 pthread_attr_getguardsize(&attributes, reinterpret_cast<size_t*>(arg)); in GetActualGuardSizeFn() 756 static size_t GetActualGuardSize(const pthread_attr_t& attributes) { in GetActualGuardSize() argument 759 pthread_create(&t, &attributes, GetActualGuardSizeFn, &result); in GetActualGuardSize() 765 pthread_attr_t attributes; in GetActualStackSizeFn() local [all …]
|
/bionic/tools/versioner/ |
D | README.md | 2 Use clang to verify the correctness of bionic's availability attributes against the NDK platform de…
|
/bionic/libc/kernel/uapi/linux/ |
D | fuse.h | 39 uint64_t attributes; member
|
D | kvm.h | 1102 __u64 attributes; member
|
/bionic/docs/ |
D | clang_fortify_anatomy.md | 221 `pass_object_size` attributes. Given two overloads of a function that only 222 differ on the presence of `pass_object_size` attributes, the candidate with 223 `pass_object_size` attributes is preferred. 619 resolves to the function without any `pass_object_size` attributes.
|
D | elf-tls.md | 203 * Specifiers on the variable (`static`, `extern`, ELF visibility attributes).
|