Home
last modified time | relevance | path

Searched refs:old_mask (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/cmds/dumpstate/
DDumpstateUtil.cpp46 sigset_t child_mask, old_mask; in waitpid_with_timeout() local
50 if (sigprocmask(SIG_BLOCK, &child_mask, &old_mask) == -1) { in waitpid_with_timeout()
61 if (sigprocmask(SIG_SETMASK, &old_mask, NULL) == -1) { in waitpid_with_timeout()
/frameworks/native/cmds/installd/
Dotapreopt.cpp438 static int ReplaceMask(int input, int old_mask, int new_mask) { in ReplaceMask() argument
439 return (input & old_mask) != 0 ? new_mask : 0; in ReplaceMask()