Home
last modified time | relevance | path

Searched refs:WTERMSIG (Results 1 – 13 of 13) sorted by relevance

/frameworks/native/libs/binder/
DUtilsHost.cpp57 WTERMSIG(status)); in ~CommandResult()
186 ret.signal = WTERMSIG(status); in execute()
/frameworks/base/cmds/incidentd/src/
Dincidentd_util.cpp173 VLOG("return by signal: %s", strerror(WTERMSIG(status))); in statusCode()
174 return -WTERMSIG(status); in statusCode()
/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/android/system/
DOsConstants.java109 public static int WTERMSIG(int status) { return status & 0x7f; } in WTERMSIG() method in OsConstants
119 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()
/frameworks/native/cmds/dumpstate/
DDumpstateUtil.cpp431 … 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()
/frameworks/base/ravenwood/runtime-test/test/com/android/ravenwood/runtimetest/
DOsConstantsTest.java35 import static android.system.OsConstants.WTERMSIG;
414 assertEquals(0, WTERMSIG(0)); in test_WTERMSIG()
415 assertEquals(0x7f, WTERMSIG(0x7f)); in test_WTERMSIG()
/frameworks/native/libs/binder/tests/
DbinderRpcTest.cpp70 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()
/frameworks/native/cmds/installd/
Dotapreopt.cpp554 LOG(WARNING) << "Interrupted by signal " << WTERMSIG(dexopt_result) ; in RunPreopt()
Ddexopt.cpp1736 if ((WTERMSIG(result) == SIGKILL) && cancelled) { in process_secondary_dex_dexopt()
1999 if ((WTERMSIG(res) == SIGKILL) && cancelled) { in dexopt()
/frameworks/native/cmds/installd/tests/
Dinstalld_utils_test.cpp740 EXPECT_EQ(WTERMSIG(return_code), SIGKILL); in TEST_F()
/frameworks/base/core/jni/
Dcom_android_internal_os_Zygote.cpp453 WTERMSIG(status), strsignal(WTERMSIG(status)), in SigChldHandler()
460 if (WTERMSIG(status) != SIGTERM && RemoveUsapTableEntry(pid)) { in SigChldHandler()
/frameworks/base/services/core/java/com/android/server/am/
DAppExitInfoTracker.java501 info.setStatus(OsConstants.WTERMSIG(status)); in updateExistingExitInfoRecordLocked()
503 info.setStatus(OsConstants.WTERMSIG(status)); in updateExistingExitInfoRecordLocked()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt27650 method public static int WTERMSIG(int);