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

  /frameworks/av/media/libmediaplayerservice/
ActivityManager.cpp 43 int32_t exceptionCode = reply.readExceptionCode();
44 if (!exceptionCode) {
53 String8(uri).string(), exceptionCode);
  /frameworks/av/media/libmedia/
IMediaHTTPConnection.cpp 70 int32_t exceptionCode = reply.readExceptionCode();
72 if (exceptionCode) {
104 int32_t exceptionCode = reply.readExceptionCode();
106 if (exceptionCode) {
140 int32_t exceptionCode = reply.readExceptionCode();
142 if (exceptionCode) {
158 int32_t exceptionCode = reply.readExceptionCode();
160 if (exceptionCode) {
178 int32_t exceptionCode = reply.readExceptionCode();
180 if (exceptionCode) {
    [all...]
  /frameworks/native/include/binder/
Status.h 83 static Status fromExceptionCode(int32_t exceptionCode);
84 static Status fromExceptionCode(int32_t exceptionCode,
114 int32_t exceptionCode() const { return mException; }
129 Status(int32_t exceptionCode, int32_t errorCode);
130 Status(int32_t exceptionCode, int32_t errorCode, const String8& message);
  /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);
50 Status::Status(int32_t exceptionCode, int32_t errorCode)
51 : mException(exceptionCode),
54 Status::Status(int32_t exceptionCode, int32_t errorCode, const String8& message)
55 : mException(exceptionCode),
Parcel.cpp     [all...]
  /system/tools/aidl/tests/
aidl_test_client_service_exceptions.cpp 37 if (status.exceptionCode() != Status::EX_SERVICE_SPECIFIC ||
  /system/weaved/common/
binder_utils.cc 35 std::to_string(status.exceptionCode()),
  /packages/apps/Email/src/com/android/email/activity/setup/
CheckSettingsErrorDialogFragment.java 135 final int exceptionCode = ex.getExceptionType();
136 switch (exceptionCode) {
  /system/weaved/libweaved/
command.cc 159 std::string error_code = BinderExceptionString(status.exceptionCode());
187 std::string error_code = BinderExceptionString(status.exceptionCode());
  /packages/services/Car/libvehiclenetwork/native/
IVehicleNetwork.cpp 131 int32_t exceptionCode = reply.readExceptionCode();
132 if (exceptionCode != NO_ERROR) {
133 if (exceptionCode == binder::Status::EX_SERVICE_SPECIFIC) {
136 return exceptionCode;
  /system/netd/tests/
binder_test.cpp 326 ASSERT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
596 ASSERT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
612 ASSERT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
648 EXPECT_EQ(0, status.exceptionCode());
652 EXPECT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
  /system/update_engine/
update_engine_client_android.cc 227 return ExitWhenIdle(status.exceptionCode());
  /external/svox/pico/lib/
picoos.c 820 pico_status_t exceptionCode, picoos_char * baseMessage, picoos_char * fmt, ...)
825 if (PICO_OK == this->curExceptionCode && PICO_OK != exceptionCode) {
826 this->curExceptionCode = exceptionCode;
828 picoos_vSetErrorMsg(this->curExceptionMessage,PICOOS_MAX_EXC_MSG_LEN, exceptionCode, baseMessage, fmt,args);
    [all...]
picoos.h 234 pico_status_t exceptionCode, picoos_char * baseMessage, picoos_char * fmt, ...);

Completed in 430 milliseconds