Searched refs:how (Results 1 – 14 of 14) sorted by relevance
/bionic/libc/bionic/ |
D | sigprocmask.cpp | 44 int sigprocmask(int how, in sigprocmask() argument 56 if (sigprocmask64(how, new_set_ptr, &old_set.sigset64) == -1) { in sigprocmask() 67 int sigprocmask64(int how, in sigprocmask64() argument 71 if (new_set && how != SIG_BLOCK && how != SIG_UNBLOCK && how != SIG_SETMASK) { in sigprocmask64() 79 mutable_new_set = filter_reserved_signals(*new_set, how); in sigprocmask64() 82 return __rt_sigprocmask(how, mutable_new_set_ptr, old_set, sizeof(*new_set)); in sigprocmask64()
|
D | signal.cpp | 49 int pthread_sigmask(int how, const sigset_t* new_set, sigset_t* old_set) { in pthread_sigmask() argument 51 return (sigprocmask(how, new_set, old_set) == -1) ? errno : 0; in pthread_sigmask() 54 int pthread_sigmask64(int how, const sigset64_t* new_set, sigset64_t* old_set) { in pthread_sigmask64() argument 56 return (sigprocmask64(how, new_set, old_set) == -1) ? errno : 0; in pthread_sigmask64()
|
/bionic/libc/platform/bionic/ |
D | reserved_signals.h | 58 static inline __always_inline sigset64_t filter_reserved_signals(sigset64_t sigset, int how) { in filter_reserved_signals() argument 61 switch (how) { in filter_reserved_signals()
|
/bionic/docs/ |
D | libc_assembler.md | 3 This document describes how to verify incoming assembler libc routines. 8 have any bugs. See the [Testing](#Testing) section for details about how to 13 …utine looks sane. See the [Unwind Info](#unwind-info) section for details about how to verify this. 38 and pushed on to the device. The commands below show how to do this. 55 Here is an example of how the benchmark should be executed. For this 66 how to add a benchmark for a function that doesn't already exist. 143 **bionic/tests/string\_test.cpp** for examples of how to use it. 156 information indicating how to get the register.
|
D | fdsan.md | 43 …file descriptor mismanagement by enforcing file descriptor ownership. Like how most memory allocat… 66 *No, really, how do I use fdsan?*
|
D | native_allocator.md | 2 This document describes how to verify the native memory allocator on Android. 196 These are the benchmarks that examine how the allocator handles multiple
|
D | status.md | 277 and in an attempt to flush out racy code, we changed how an invalid
|
D | elf-tls.md | 633 * It's unclear how many Android apps use Go. There are at least two with 1,000,000+ installs. 680 * When linking an executable, the static linker needs to know how TLS is allocated because it
|
/bionic/libc/kernel/uapi/linux/ |
D | auto_dev-ioctl.h | 54 __u32 how; member
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 139 static inline int __rt_sigprocmask(int how, const sigset64_t* new_set, sigset64_t* old_set, in __rt_sigprocmask() argument 141 return syscall(SYS_rt_sigprocmask, how, new_set, old_set, sigset_size); in __rt_sigprocmask()
|
D | README_marshmallow_and_earlier.md | 7 This documentation describes how to enable this feature on API level
|
D | README.md | 7 This documentation describes how to enable this feature on Android N or later 237 This option only has meaning if free\_track is set. It indicates how many 302 Below is how each type of allocation/free call ends up in the file dump.
|
/bionic/benchmarks/ |
D | README.md | 106 Google Benchmark uses two settings to control how many times to run each benchmark, "iterations" and
|
/bionic/ |
D | README.md | 34 The C++ ABI support functions. The C++ compiler doesn't know how to implement
|