Searched refs:WTERMSIG (Results 1 – 13 of 13) sorted by relevance
57 WTERMSIG(status)); in ~CommandResult()186 ret.signal = WTERMSIG(status); in execute()
173 VLOG("return by signal: %s", strerror(WTERMSIG(status))); in statusCode()174 return -WTERMSIG(status); in statusCode()
109 public static int WTERMSIG(int status) { return status & 0x7f; } in WTERMSIG() method in OsConstants119 public static boolean WIFEXITED(int status) { return (WTERMSIG(status) == 0); } in WIFEXITED()124 public static boolean WIFSTOPPED(int status) { return (WTERMSIG(status) == 0x7f); } in WIFSTOPPED()129 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); } in WIFSIGNALED()
431 … dprintf(fd, "*** command '%s' failed: killed by signal %d\n", command, WTERMSIG(status)); in RunCommandToFd()432 MYLOGE("*** command '%s' failed: killed by signal %d\n", command, WTERMSIG(status)); in RunCommandToFd()
35 import static android.system.OsConstants.WTERMSIG;414 assertEquals(0, WTERMSIG(0)); in test_WTERMSIG()415 assertEquals(0x7f, WTERMSIG(0x7f)); in test_WTERMSIG()
70 return "term signal " + std::to_string(WTERMSIG(wstatus)); in WaitStatusToString()779 EXPECT_TRUE(WIFSIGNALED(wstatus) && WTERMSIG(wstatus) == SIGTERM) in TEST_P()874 EXPECT_TRUE(WIFSIGNALED(wstatus) && WTERMSIG(wstatus) == SIGABRT) in TEST_P()894 EXPECT_TRUE(WIFSIGNALED(wstatus) && WTERMSIG(wstatus) == SIGTERM) in TEST_P()914 EXPECT_TRUE(WIFSIGNALED(wstatus) && WTERMSIG(wstatus) == SIGTERM) in TEST_P()
554 LOG(WARNING) << "Interrupted by signal " << WTERMSIG(dexopt_result) ; in RunPreopt()
1736 if ((WTERMSIG(result) == SIGKILL) && cancelled) { in process_secondary_dex_dexopt()1999 if ((WTERMSIG(res) == SIGKILL) && cancelled) { in dexopt()
740 EXPECT_EQ(WTERMSIG(return_code), SIGKILL); in TEST_F()
453 WTERMSIG(status), strsignal(WTERMSIG(status)), in SigChldHandler()460 if (WTERMSIG(status) != SIGTERM && RemoveUsapTableEntry(pid)) { in SigChldHandler()
501 info.setStatus(OsConstants.WTERMSIG(status)); in updateExistingExitInfoRecordLocked()503 info.setStatus(OsConstants.WTERMSIG(status)); in updateExistingExitInfoRecordLocked()
AndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
27650 method public static int WTERMSIG(int);