/frameworks/native/libs/vr/libpdx/ |
D | serialization_tests.cpp | 1294 EXPECT_EQ(ErrorCode::NO_ERROR, error); in TEST() 1300 EXPECT_EQ(ErrorCode::NO_ERROR, error); in TEST() 1312 EXPECT_EQ(ErrorCode::NO_ERROR, error); in TEST() 1318 EXPECT_EQ(ErrorCode::NO_ERROR, error); in TEST() 1324 EXPECT_EQ(ErrorCode::NO_ERROR, error); in TEST() 1330 EXPECT_EQ(ErrorCode::NO_ERROR, error); in TEST() 1336 EXPECT_EQ(ErrorCode::UNEXPECTED_ENCODING, error); in TEST() 1343 EXPECT_EQ(ErrorCode::UNEXPECTED_ENCODING, error); in TEST() 1350 EXPECT_EQ(ErrorCode::UNEXPECTED_ENCODING, error); in TEST() 1363 EXPECT_EQ(ErrorCode::NO_ERROR, error); in TEST() [all …]
|
/frameworks/compile/libbcc/include/bcc/ |
D | Compiler.h | 52 enum ErrorCode { enum 75 static const char *GetErrorString(enum ErrorCode pErrCode); 82 enum ErrorCode runPasses(Script &pScript, llvm::raw_pwrite_stream &pResult); 95 enum ErrorCode config(const CompilerConfig &pConfig); 101 enum ErrorCode compile(Script &pScript, llvm::raw_pwrite_stream &pResult, 115 enum ErrorCode screenGlobalFunctions(Script &pScript);
|
D | RSCompilerDriver.h | 73 Compiler::ErrorCode compileScript(Script& pScript, const char* pScriptName,
|
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
D | serialization.h | 119 enum class ErrorCode { 133 ErrorType() : error_code_(ErrorCode::NO_ERROR) {} 138 ErrorType(ErrorCode error_code) : error_code_(error_code) {} 141 ErrorType(ErrorCode error_code, EncodingClass encoding_class, 149 explicit operator bool() const { return error_code_ != ErrorCode::NO_ERROR; } 152 operator ErrorCode() const { return error_code_; } 153 ErrorCode error_code() const { return error_code_; } 168 case ErrorCode::NO_ERROR: 170 case ErrorCode::UNEXPECTED_ENCODING: 174 case ErrorCode::UNEXPECTED_TYPE_SIZE: [all …]
|
D | remote_method.h | 370 case rpc::ErrorCode::NO_ERROR: 376 case rpc::ErrorCode::INSUFFICIENT_DESTINATION_SIZE: 430 case rpc::ErrorCode::NO_ERROR: 436 case rpc::ErrorCode::INSUFFICIENT_DESTINATION_SIZE:
|
D | serializable.h | 117 return ErrorCode::UNEXPECTED_TYPE_SIZE;
|
/frameworks/base/core/java/android/net/ |
D | InvalidPacketException.java | 52 public @interface ErrorCode {} annotation in InvalidPacketException 58 public InvalidPacketException(@ErrorCode final int error) { in InvalidPacketException()
|
D | SocketKeepalive.java | 110 public @interface ErrorCode {} annotation in SocketKeepalive 274 public void onError(@ErrorCode int error) {} in onError()
|
/frameworks/compile/libbcc/lib/ |
D | Compiler.cpp | 118 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) { in GetErrorString() 169 enum ErrorCode err = config(pConfig); in Compiler() 179 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) { in config() 221 enum Compiler::ErrorCode Compiler::runPasses(Script &script, in runPasses() 301 enum Compiler::ErrorCode Compiler::compile(Script &script, in compile() 305 enum ErrorCode err; in compile() 489 enum Compiler::ErrorCode Compiler::screenGlobalFunctions(Script &script) { in screenGlobalFunctions()
|
D | RSCompilerDriver.cpp | 109 Compiler::ErrorCode RSCompilerDriver::compileScript(Script& pScript, const char* pScriptName, in compileScript() 183 Compiler::ErrorCode err = mCompiler.config(*mConfig); in compileScript() 205 Compiler::ErrorCode compile_result = in compileScript() 294 Compiler::ErrorCode status = compileScript(script, pResName, in build() 445 Compiler::ErrorCode status = compileScript(pScript, pOut, pOut, pRuntimePath, in buildForCompatLib()
|
/frameworks/base/core/java/android/os/ |
D | UpdateEngine.java | 181 public @interface ErrorCode {} annotation in UpdateEngine 466 private @ErrorCode int mErrorCode = ErrorCodeConstants.SUCCESS; 481 @ErrorCode 619 @ErrorCode
|
D | UpdateEngineCallback.java | 48 @UpdateEngine.ErrorCode int errorCode); in onPayloadApplicationComplete()
|
/frameworks/av/camera/ndk/ndk_vendor/impl/ |
D | ACameraDevice.h | 53 using ErrorCode = frameworks::cameraservice::device::V2_0::ErrorCode; variable 112 android::hardware::Return<void> onDeviceError(ErrorCode errorCode, 227 ErrorCode errorCode,
|
D | ACameraDevice.cpp | 809 ErrorCode errorCode, in onCaptureErrorLocked() 833 if (errorCode == ErrorCode::CAMERA_BUFFER) { in onCaptureErrorLocked() 873 failure->wasImageCaptured = (errorCode == ErrorCode::CAMERA_RESULT); in onCaptureErrorLocked() 1412 ErrorCode errorCode, in onDeviceError() 1429 case ErrorCode::CAMERA_DISCONNECTED: in onDeviceError() 1446 case ErrorCode::CAMERA_DEVICE: in onDeviceError() 1447 case ErrorCode::CAMERA_SERVICE: in onDeviceError() 1454 case ErrorCode::CAMERA_DEVICE: in onDeviceError() 1457 case ErrorCode::CAMERA_SERVICE: in onDeviceError() 1473 case ErrorCode::CAMERA_REQUEST: in onDeviceError() [all …]
|
/frameworks/base/core/java/android/hardware/camera2/ |
D | CameraDevice.java | 1121 public @interface ErrorCode {}; annotation in CameraDevice.StateCallback 1207 @ErrorCode int error); // Must implement in onError()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | RcsUceAdapter.java | 132 public @interface ErrorCode {} annotation in RcsUceAdapter 263 public void onError(@ErrorCode int errorCode) { in onError()
|
/frameworks/native/libs/vr/libpdx_uds/private/uds/ |
D | ipc_helper.h | 190 if (status && rpc::Deserialize(data, &payload) != rpc::ErrorCode::NO_ERROR) in ReceiveData() 200 if (status && rpc::Deserialize(request, &payload) != rpc::ErrorCode::NO_ERROR) in ReceiveData()
|
/frameworks/base/core/proto/android/stats/otaupdate/ |
D | updateengine_enums.proto | 45 enum ErrorCode { enum
|
/frameworks/av/services/camera/libcameraservice/hidl/ |
D | Convert.h | 51 using HErrorCode = frameworks::cameraservice::device::V2_0::ErrorCode;
|
/frameworks/base/core/proto/android/stats/connectivity/ |
D | tethering.proto | 21 enum ErrorCode { enum
|
/frameworks/hardware/interfaces/cameraservice/device/2.0/ |
D | ICameraDeviceCallback.hal | 29 oneway onDeviceError(ErrorCode errorCode,
|
/frameworks/hardware/interfaces/cameraservice/vts/functional/ |
D | VtsHalCameraServiceV2_0TargetTest.cpp | 56 using android::frameworks::cameraservice::device::V2_0::ErrorCode; 128 virtual Return<void> onDeviceError(ErrorCode errorCode, in onDeviceError()
|
/frameworks/compile/libbcc/tools/bcc_compat/ |
D | Main.cpp | 201 Compiler::ErrorCode result = compiler->config(*config); in ConfigCompiler()
|
/frameworks/compile/libbcc/tools/bcc/ |
D | Main.cpp | 264 Compiler::ErrorCode result = RSC->config(*config); in ConfigCompiler()
|
/frameworks/base/telephony/java/android/telephony/euicc/ |
D | EuiccManager.java | 693 public @interface ErrorCode{} annotation in EuiccManager
|