Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/tests/
DbinderUtilsHostTest.cpp36 EXPECT_THAT(result->exitCode, Optional(EX_OK)); in TEST()
62 EXPECT_EQ(std::nullopt, result->exitCode); in TEST()
87 EXPECT_EQ(std::nullopt, result->exitCode); in TEST()
108 EXPECT_EQ(std::nullopt, result->exitCode); in TEST()
DbinderHostDeviceTest.cpp79 ASSERT_EQ(0, debuggableResult->exitCode) << *debuggableResult; in SetUp()
88 if (lsResult->exitCode != 0) { in SetUp()
99 ASSERT_EQ(std::nullopt, service->exitCode) << *service; in SetUp()
/frameworks/native/libs/binder/
DUtilsHost.h45 std::optional<int32_t> exitCode; member
57 std::swap(exitCode, other.exitCode);
DServiceManagerHost.cpp72 if (result->exitCode.value_or(1) != 0) { in forward()
102 if (result->exitCode.value_or(1) != 0) { in ~AdbForwarder()
137 if (result->exitCode.has_value()) { in getDeviceService()
DUtilsHost.cpp68 if (res.exitCode) os << "code=" << *res.exitCode; in operator <<()
183 ret.exitCode = WEXITSTATUS(status); in execute()
/frameworks/base/tests/Codegen/
DrunTest.sh29 exitCode=$?
33 return $exitCode
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
DApplicationExitInfoTest.java237 int exitCode = 5; in testApplicationExitInfo() local
241 doReturn(new Pair<Long, Object>(now1, Integer.valueOf(makeExitStatus(exitCode)))) in testApplicationExitInfo()
266 exitCode, // status in testApplicationExitInfo()
313 exitCode = 6; in testApplicationExitInfo()
320 doReturn(new Pair<Long, Object>(now2, Integer.valueOf(makeExitStatus(exitCode)))) in testApplicationExitInfo()
343 exitCode, // status in testApplicationExitInfo()
707 exitCode, // status in testApplicationExitInfo()
865 exitCode = 6; in testApplicationExitInfo()
877 exitCode, // status in testApplicationExitInfo()
902 exitCode = 5; in testApplicationExitInfo()
[all …]
/frameworks/base/telephony/common/com/android/internal/telephony/
DSmsNumberUtils.java439 for (String exitCode : allIDDs) { in checkInternationalNumberPlan()
440 if (number.startsWith(exitCode)) { in checkInternationalNumberPlan()
441 String numberNoIDD = number.substring(exitCode.length()); in checkInternationalNumberPlan()
444 numberEntry.IDD = exitCode; in checkInternationalNumberPlan()
/frameworks/base/tests/DynamicCodeLoggerIntegrationTests/src/com/android/server/pm/dex/
DDynamicCodeLoggerIntegrationTests.java214 int exitCode = process.waitFor(); in testGeneratesEvents_nativeExecutable() local
215 assertThat(exitCode).isEqualTo(0); in testGeneratesEvents_nativeExecutable()