HomeSort by relevance Sort by last modified time
    Searched refs:exceptionCode (Results 1 - 16 of 16) sorted by null

  /frameworks/native/libs/binder/include/binder/
Status.h 86 static Status fromExceptionCode(int32_t exceptionCode);
87 static Status fromExceptionCode(int32_t exceptionCode,
89 static Status fromExceptionCode(int32_t exceptionCode,
123 int32_t exceptionCode() const { return mException; }
138 Status(int32_t exceptionCode, int32_t errorCode);
139 Status(int32_t exceptionCode, int32_t errorCode, const String8& message);
  /system/libhidl/base/
Status.cpp 84 Status Status::fromExceptionCode(int32_t exceptionCode) {
85 return Status(exceptionCode, OK);
88 Status Status::fromExceptionCode(int32_t exceptionCode,
90 return Status(exceptionCode, OK, message);
99 Status::Status(int32_t exceptionCode, int32_t errorCode)
100 : mException(exceptionCode),
103 Status::Status(int32_t exceptionCode, int32_t errorCode, const char *message)
104 : mException(exceptionCode),
127 if (s.exceptionCode() == Status::EX_NONE) {
130 stream << "Status(" << exceptionToString(s.exceptionCode()) << "): '"
    [all...]
  /frameworks/av/media/libmedia/
IMediaHTTPConnection.cpp 70 int32_t exceptionCode = reply.readExceptionCode();
72 if (exceptionCode) {
104 int32_t exceptionCode = reply.readExceptionCode();
106 if (exceptionCode) {
148 int32_t exceptionCode = reply.readExceptionCode();
150 if (exceptionCode) {
166 int32_t exceptionCode = reply.readExceptionCode();
168 if (exceptionCode) {
186 int32_t exceptionCode = reply.readExceptionCode();
188 if (exceptionCode) {
    [all...]
  /frameworks/native/libs/binder/
Status.cpp 26 Status Status::fromExceptionCode(int32_t exceptionCode) {
27 return Status(exceptionCode, OK);
30 Status Status::fromExceptionCode(int32_t exceptionCode,
32 return Status(exceptionCode, OK, message);
35 Status Status::fromExceptionCode(int32_t exceptionCode,
37 return fromExceptionCode(exceptionCode, String8(message));
60 Status::Status(int32_t exceptionCode, int32_t errorCode)
61 : mException(exceptionCode),
64 Status::Status(int32_t exceptionCode, int32_t errorCode, const String8& message)
65 : mException(exceptionCode),
    [all...]
IActivityManager.cpp 44 int32_t exceptionCode = reply.readExceptionCode();
45 if (!exceptionCode) {
54 String8(stringUri).string(), exceptionCode);
Parcel.cpp     [all...]
  /system/tools/aidl/tests/
aidl_test_client_service_exceptions.cpp 37 if (status.exceptionCode() != Status::EX_SERVICE_SPECIFIC ||
aidl_test_client_nullables.cpp 146 if (s->TakesAnIBinder(null_binder).exceptionCode() !=
152 if (s->TakesAnIBinderList(*list_with_nulls).exceptionCode() !=
  /system/libhidl/base/include/hidl/
Status.h 82 static Status fromExceptionCode(int32_t exceptionCode);
83 static Status fromExceptionCode(int32_t exceptionCode,
103 int32_t exceptionCode() const { return mException; }
115 Status(int32_t exceptionCode, int32_t errorCode);
116 Status(int32_t exceptionCode, int32_t errorCode, const char *message);
  /system/libhidl/transport/
HidlBinderSupport.cpp 185 if (s.exceptionCode() == Status::EX_TRANSACTION_FAILED) {
189 status_t status = parcel->writeInt32(s.exceptionCode());
191 if (s.exceptionCode() == Status::EX_NONE) {
  /system/security/keystore/
keystore_cli.cpp 142 fprintf(stderr, "Exception code: %d\n", ret.exceptionCode()); \
184 fprintf(stderr, "Exception code: %d\n", ret.exceptionCode()); \
199 fprintf(stderr, "list: exception (%d)\n", ret.exceptionCode());
keystore_attestation_id.cpp 259 status.exceptionMessage().string(), status.exceptionCode());
  /packages/apps/Email/src/com/android/email/activity/setup/
CheckSettingsErrorDialogFragment.java 135 final int exceptionCode = ex.getExceptionType();
136 switch (exceptionCode) {
  /system/netd/tests/
binder_test.cpp 531 ASSERT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
759 ASSERT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
775 ASSERT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
811 EXPECT_EQ(0, status.exceptionCode());
815 EXPECT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
872 EXPECT_EQ(0, status.exceptionCode());
875 EXPECT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
    [all...]
  /external/honggfuzz/mac/
arch.c 72 exceptionCode:(mach_exception_data_t)anExceptionCode
484 exceptionCode:code
510 exceptionCode:code
  /system/update_engine/
update_engine_client_android.cc 230 return ExitWhenIdle(status.exceptionCode());

Completed in 485 milliseconds