Home
last modified time | relevance | path

Searched defs:error (Results 1 – 25 of 513) sorted by relevance

12345678910>>...21

/frameworks/base/tools/aapt2/format/
DContainer.cpp142 std::ostringstream error; in AddResFileEntry() local
211 std::ostringstream error; in GetResFileOffsets() local
219 std::ostringstream error; in GetResFileOffsets() local
226 std::ostringstream error; in GetResFileOffsets() local
233 std::ostringstream error; in GetResFileOffsets() local
277 std::ostringstream error; in ContainerReader() local
291 std::ostringstream error; in ContainerReader() local
305 std::ostringstream error; in ContainerReader() local
325 std::ostringstream error; in Next() local
333 std::ostringstream error; in Next() local
[all …]
/frameworks/base/core/java/android/net/http/
DSslError.java96 public SslError(int error, SslCertificate certificate) { in SslError()
108 public SslError(int error, X509Certificate certificate) { in SslError()
119 public SslError(int error, SslCertificate certificate, String url) { in SslError()
134 public SslError(int error, X509Certificate certificate, String url) { in SslError()
146 int error, SslCertificate cert, String url) { in SslErrorFromChromiumErrorCode()
182 public boolean addError(int error) { in addError()
196 public boolean hasError(int error) { in hasError()
/frameworks/native/services/surfaceflinger/DisplayHardware/
DHWComposer.cpp51 #define LOG_HWC_ERROR(what, error, displayId) \ argument
63 #define RETURN_IF_HWC_ERROR_FOR(what, error, displayId, ...) \ argument
71 #define RETURN_IF_HWC_ERROR(error, displayId, ...) \ argument
168 const auto error = static_cast<hal::Error>( in getDisplayIdentificationData() local
271 const auto error = static_cast<hal::Error>( in allocateVirtualDisplay() local
305 auto error = static_cast<hal::Error>( in getAttribute() local
317 auto error = std::move(expected).error(); in createLayer() local
336 auto error = static_cast<hal::Error>(mComposer->getDisplayConfigs(hwcDisplayId, &configIds)); in getModes() local
362 auto error = static_cast<hal::Error>(mComposer->getActiveConfig(hwcId, &configId)); in getActiveMode() local
379 const auto error = hwcDisplay->getConnectionType(&type); in getDisplayConnectionType() local
[all …]
/frameworks/native/services/vr/performanced/
Dperformance_service_tests.cpp40 const int error = file ? 0 : errno; in OpenTaskFile() local
45 int error; in GetTaskCpuSet() local
63 int error; in TEST() local
117 int error; in TEST() local
138 int error; in TEST() local
180 int error = dvrSetSchedulerPolicy(0, "vr:app:render"); in TEST() local
201 int error; in TEST() local
220 int error; in TEST() local
251 int error; in TEST() local
/frameworks/native/libs/vr/libbufferhub/
Dconsumer_buffer.cpp96 if (const int error = CheckMetadata(user_metadata_size)) in Acquire() local
100 if (const int error = LocalAcquire(&canonical_meta, ready_fence)) in Acquire() local
123 if (const int error = LocalAcquire(out_meta, out_fence)) in AcquireAsync() local
134 if (const int error = CheckMetadata(meta->user_metadata_size)) in LocalRelease() local
165 if (const int error = UpdateSharedFence(release_fence, shared_release_fence_)) in LocalRelease() local
175 if (const int error = LocalRelease(&meta, release_fence)) in Release() local
191 if (const int error = LocalRelease(meta, release_fence)) in ReleaseAsync() local
Dproducer_buffer.cpp79 if (const int error = CheckMetadata(meta->user_metadata_size)) in LocalPost() local
120 if (const int error = UpdateSharedFence(ready_fence, shared_acquire_fence_)) in LocalPost() local
135 if (const int error = LocalPost(&canonical_meta, ready_fence)) in Post() local
146 if (const int error = LocalPost(meta, ready_fence)) in PostAsync() local
232 if (const int error = LocalGain(&meta, release_fence, gain_posted_buffer)) in Gain() local
246 if (const int error = LocalGain(out_meta, release_fence, gain_posted_buffer)) in GainAsync() local
/frameworks/base/libs/hwui/utils/
DResult.h26 E error; member
34 Result(Error<E>&& error) : result(std::forward<Error<E>>(error)) {} in Result() argument
45 E error() const { in error() function
/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/
DServiceEntitlementException.java79 public ServiceEntitlementException(int error, String message) { in ServiceEntitlementException()
83 public ServiceEntitlementException(int error, int httpStatus, String message) { in ServiceEntitlementException()
88 int error, int httpStatus, String retryAfter, String message) { in ServiceEntitlementException()
95 public ServiceEntitlementException(int error, String message, Throwable cause) { in ServiceEntitlementException()
99 public ServiceEntitlementException(int error, int httpStatus, String message, Throwable cause) { in ServiceEntitlementException()
104 int error, int httpStatus, String retryAfter, String message, Throwable cause) { in ServiceEntitlementException()
/frameworks/base/opengl/java/android/opengl/
DGLException.java25 public GLException(final int error) { in GLException()
30 public GLException(final int error, final String string) { in GLException()
35 private static String getErrorString(int error) { in getErrorString()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DOutputLayer.cpp395 if (auto error = hwcLayer->setDisplayFrame(displayFrame); error != hal::Error::NONE) { in writeOutputDependentGeometryStateToHWC() local
401 if (auto error = hwcLayer->setSourceCrop(sourceCrop); error != hal::Error::NONE) { in writeOutputDependentGeometryStateToHWC() local
408 if (auto error = hwcLayer->setZOrder(z); error != hal::Error::NONE) { in writeOutputDependentGeometryStateToHWC() local
418 if (auto error = hwcLayer->setTransform(static_cast<hal::Transform>(bufferTransform)); in writeOutputDependentGeometryStateToHWC() local
435 if (auto error = hwcLayer->setBlendMode(blendMode); error != hal::Error::NONE) { in writeOutputIndependentGeometryStateToHWC() local
445 if (auto error = hwcLayer->setPlaneAlpha(alpha); error != hal::Error::NONE) { in writeOutputIndependentGeometryStateToHWC() local
451 if (auto error = hwcLayer->setLayerGenericMetadata(name, entry.mandatory, entry.value); in writeOutputIndependentGeometryStateToHWC() local
467 if (auto error = hwcLayer->setVisibleRegion(visibleRegion); error != hal::Error::NONE) { in writeOutputDependentPerFrameStateToHWC() local
477 if (auto error = hwcLayer->setDataspace(dataspace); error != hal::Error::NONE) { in writeOutputDependentPerFrameStateToHWC() local
486 switch (auto error = hwcLayer->setColorTransform(outputIndependentState.colorTransform)) { in writeOutputIndependentPerFrameStateToHWC() local
[all …]
/frameworks/base/core/java/android/hardware/soundtrigger/
DKeyphraseEnrollmentInfo.java187 String error = "No suitable enrollment application found"; in KeyphraseEnrollmentInfo() local
209 String error = "No " + VOICE_KEYPHRASE_META_DATA + " meta-data for " + packageName; in getKeyphraseMetadataFromApplicationInfo() local
225 String error = "Meta-data does not start with voice-enrollment-application tag for " in getKeyphraseMetadataFromApplicationInfo() local
252 String error = "No valid searchKeyphraseId specified in meta-data for " + packageName; in getKeyphraseFromTypedArray() local
262 String error = "No valid searchKeyphrase specified in meta-data for " + packageName; in getKeyphraseFromTypedArray() local
273 String error = "No valid searchKeyphraseSupportedLocales specified in meta-data for " in getKeyphraseFromTypedArray() local
303 String error = "No valid searchKeyphraseRecognitionFlags specified in meta-data for " in getKeyphraseFromTypedArray() local
/frameworks/base/core/java/android/content/pm/parsing/result/
DParseInput.java132 <ResultType> ParseResult<ResultType> error(int parseError); in error() method
138 <ResultType> ParseResult<ResultType> error(@NonNull String parseError); in error() method
141 <ResultType> ParseResult<ResultType> error(int parseError, @Nullable String errorMessage); in error() method
154 <ResultType> ParseResult<ResultType> error(int parseError, @Nullable String errorMessage, in error() method
162 <ResultType> ParseResult<ResultType> error(ParseResult<?> result); in error() method
/frameworks/native/libs/vr/libpdx_uds/
Dchannel_event_set.cpp20 const int error = errno; in SetupHandle() local
83 const int error = errno; in ChannelEventReceiver() local
93 const int error = errno; in ChannelEventReceiver() local
103 const int error = errno; in ChannelEventReceiver() local
121 const int error = errno; in PollPendingEvents() local
/frameworks/native/services/vr/virtual_touchpad/
DVirtualTouchpadService.cpp52 if (const status_t error = touchpad_->Attach()) { in attach() local
63 if (const status_t error = touchpad_->Detach()) { in detach() local
74 if (const status_t error = touchpad_->Touch(touchpad, x, y, pressure)) { in touch() local
84 if (const status_t error = touchpad_->ButtonState(touchpad, buttons)) { in buttonState() local
94 if (const status_t error = touchpad_->Scroll(touchpad, x, y)) { in scroll() local
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/face/aidl/
DFaceAuthenticationClient.java164 public void onError(@BiometricConstants.Errors int error, int vendorCode) { in onError()
228 final int error = BiometricFaceConstants.FACE_ERROR_LOCKOUT; in onLockoutTimed() local
229 logOnError(getContext(), error, 0 /* vendorCode */, getTargetUserId()); in onLockoutTimed() local
232 getListener().onError(getSensorId(), getCookie(), error, 0 /* vendorCode */); in onLockoutTimed() local
242 final int error = BiometricFaceConstants.FACE_ERROR_LOCKOUT_PERMANENT; in onLockoutPermanent() local
243 logOnError(getContext(), error, 0 /* vendorCode */, getTargetUserId()); in onLockoutPermanent() local
246 getListener().onError(getSensorId(), getCookie(), error, 0 /* vendorCode */); in onLockoutPermanent() local
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerException.java26 public final int error; field in PackageManagerException
33 public PackageManagerException(int error, String detailMessage) { in PackageManagerException()
38 public PackageManagerException(int error, String detailMessage, Throwable throwable) { in PackageManagerException()
/frameworks/native/libs/vr/libpdx/private/pdx/
Dstatus.h16 int error() const { return error_; } in error() function
68 void SetError(int error) { in SetError()
107 int error() const { return std::max(error_, 0); } in error() function
144 void SetError(int error) { error_ = error; } in SetError()
158 int error() const { return std::max(error_, 0); } in error() function
/frameworks/base/libs/androidfw/
DZipFileRO.cpp70 const int32_t error = OpenArchive(zipFileName, &handle); in open() local
85 const int32_t error = OpenArchiveFd(fd, debugFileName, &handle, assume_ownership); in openFd() local
101 const int32_t error = FindEntry(mHandle, entryName, &(data->entry)); in findEntryByName() local
152 int32_t error = StartIteration(mHandle, &(ze->cookie), in startIteration() local
168 int32_t error = Next(ze->cookie, &(ze->entry), &(ze->name)); in nextEntry() local
267 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry), in uncompressEntry() local
285 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd); in uncompressEntry() local
/frameworks/native/libs/vr/libperformance/
Dperformance_client.cpp15 PerformanceClient::PerformanceClient(int* error) in PerformanceClient()
117 int error; in dvrSetCpuPartition() local
126 int error; in dvrSetSchedulerPolicy() local
135 int error; in dvrSetSchedulerClass() local
143 int error; in dvrGetCpuPartition() local
/frameworks/base/core/java/android/database/sqlite/
DSQLiteCantOpenDatabaseException.java22 public SQLiteCantOpenDatabaseException(String error) { in SQLiteCantOpenDatabaseException()
27 public SQLiteCantOpenDatabaseException(String error, Throwable cause) { in SQLiteCantOpenDatabaseException()
DSQLiteException.java28 public SQLiteException(String error) { in SQLiteException()
32 public SQLiteException(String error, Throwable cause) { in SQLiteException()
/frameworks/base/core/java/android/database/
DSQLException.java26 public SQLException(String error) { in SQLException()
30 public SQLException(String error, Throwable cause) { in SQLException()
/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/aidl/
DFingerprintAuthenticationClient.java227 final int error = BiometricFingerprintConstants.FINGERPRINT_ERROR_LOCKOUT; in onLockoutTimed() local
228 logOnError(getContext(), error, 0 /* vendorCode */, getTargetUserId()); in onLockoutTimed() local
231 getListener().onError(getSensorId(), getCookie(), error, 0 /* vendorCode */); in onLockoutTimed() local
244 final int error = BiometricFingerprintConstants.FINGERPRINT_ERROR_LOCKOUT_PERMANENT; in onLockoutPermanent() local
245 logOnError(getContext(), error, 0 /* vendorCode */, getTargetUserId()); in onLockoutPermanent() local
248 getListener().onError(getSensorId(), getCookie(), error, 0 /* vendorCode */); in onLockoutPermanent() local
/frameworks/native/opengl/tests/lib/
DglTestLib.cpp53 for (EGLint error = eglGetError(); error != EGL_SUCCESS; error in glTestCheckEglError() local
62 for (GLint error = glGetError(); error; error in glTestCheckGlError() local
112 EGLint error = eglGetError(); in glTestPrintEGLConfiguration() local
/frameworks/native/libs/vr/libvrflinger/
Dhardware_composer.cpp80 int error = dvrSetSchedulerClass(0, scheduler_class.c_str()); in SetThreadPolicy() local
141 const auto error = composer->getDisplayIdentificationData( in UpdateEdidData() local
297 HWC::Error error = in Validate() local
311 HWC::Error error = composer_->setVsyncEnabled(display.id, in EnableVsync() local
326 HWC::Error error = composer_->setPowerMode(display.id, in SetPowerMode() local
354 HWC::Error error = composer_->presentDisplay(display, &present_fence); in Present() local
374 HWC::Error error = composer->getActiveConfig(display, &config); in GetDisplayParams() local
380 HWC::Error error = composer->getDisplayAttribute( in GetDisplayParams() local
536 HWC::Error error = Validate(display); in PostLayers() local
669 int ret, error; in PostThreadPollInterruptible() local
[all …]

12345678910>>...21