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

  /system/tools/aidl/tests/
aidl_test_client_service_exceptions.cpp 38 status.serviceSpecificErrorCode() != i) {
  /frameworks/native/include/binder/
Status.h 86 static Status fromServiceSpecificError(int32_t serviceSpecificErrorCode);
87 static Status fromServiceSpecificError(int32_t serviceSpecificErrorCode,
119 int32_t serviceSpecificErrorCode() const {
  /frameworks/native/libs/binder/
Status.cpp 35 Status Status::fromServiceSpecificError(int32_t serviceSpecificErrorCode) {
36 return Status(EX_SERVICE_SPECIFIC, serviceSpecificErrorCode);
39 Status Status::fromServiceSpecificError(int32_t serviceSpecificErrorCode,
41 return Status(EX_SERVICE_SPECIFIC, serviceSpecificErrorCode, message);
  /frameworks/av/camera/
CameraBase.cpp 232 return res.isOk() ? OK : res.serviceSpecificErrorCode();
241 return res.isOk() ? OK : res.serviceSpecificErrorCode();
250 return res.isOk() ? OK : res.serviceSpecificErrorCode();
Camera.cpp 101 switch(ret.serviceSpecificErrorCode()) {
  /system/netd/tests/
binder_test.cpp 327 EXPECT_EQ(ENOENT, status.serviceSpecificErrorCode());
597 ASSERT_NE(0, status.serviceSpecificErrorCode());
613 ASSERT_NE(0, status.serviceSpecificErrorCode());
649 EXPECT_EQ(0, status.serviceSpecificErrorCode());
653 EXPECT_EQ(td.expectedReturnCode, status.serviceSpecificErrorCode());
  /frameworks/av/camera/ndk/impl/
ACameraManager.cpp 129 } else if (ret.serviceSpecificErrorCode() ==
475 switch(serviceRet.serviceSpecificErrorCode()) {
ACameraDevice.cpp 128 if (remoteRet.serviceSpecificErrorCode() ==
383 if (remoteRet.serviceSpecificErrorCode() ==
605 if (remoteRet.serviceSpecificErrorCode() == hardware::ICameraService::ERROR_ILLEGAL_ARGUMENT) {
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 828 if (res.serviceSpecificErrorCode() == hardware::ICameraService::ERROR_DISCONNECTED) {
836 return res.serviceSpecificErrorCode();

Completed in 242 milliseconds