Home
last modified time | relevance | path

Searched refs:how (Results 1 – 9 of 9) sorted by relevance

/art/sigchainlib/
Dsigchain.cc439 int __sigprocmask(int how, const SigsetType* new_set, SigsetType* old_set, in __sigprocmask() argument
443 return linked(how, new_set, old_set); in __sigprocmask()
451 if (how == SIG_BLOCK || how == SIG_SETMASK) { in __sigprocmask()
463 return linked(how, new_set_ptr, old_set); in __sigprocmask()
466 extern "C" int sigprocmask(int how, const sigset_t* new_set, in sigprocmask() argument
469 return __sigprocmask(how, new_set, old_set, linked_sigprocmask); in sigprocmask()
473 extern "C" int sigprocmask64(int how, const sigset64_t* new_set, in sigprocmask64() argument
476 return __sigprocmask(how, new_set, old_set, linked_sigprocmask64); in sigprocmask64()
Dsigchain_test.cc51 static int RealSigprocmask(int how, const sigset64_t* new_sigset, sigset64_t* old_sigset) { in RealSigprocmask() argument
53 return syscall(__NR_rt_sigprocmask, how, new_sigset, old_sigset, 8); in RealSigprocmask()
/art/test/575-checker-string-init-alias/
Dinfo.txt2 sure the compiler knows how to handle dex aliases.
/art/test/991-field-trace-2/
Dinfo.txt3 This test specifically examines how the runtime responds to exceptions occurring
/art/test/081-hot-exceptions/
Dinfo.txt1 Make a hot exception-throwing path to stress test how the trace builder handles
/art/test/664-aget-verifier/
Dinfo.txt1 Tests how the verifier handles aget on an array that was initially null.
/art/test/
DAndroid.bp354 // many problems with how we export headers that are making doing this the 'right' way
/art/runtime/interpreter/mterp/
DREADME.txt8 Every configuration has a "config-*" file that controls how the sources
/art/cmdline/
DREADME.md33 // See variant_map_test.cc for how to completely define a custom map.