Searched refs:error (Results 201 - 225 of 446) sorted by path

1234567891011>>

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSystemAudioAction.java98 public void onSendCompleted(int error) {
99 if (error != Constants.SEND_RESULT_SUCCESS) {
100 HdmiLogger.debug("Failed to send <System Audio Mode Request>:" + error);
H A DSystemAudioAutoInitiationAction.java50 public void onSendCompleted(int error) {
51 if (error != Constants.SEND_RESULT_SUCCESS) {
H A DSystemAudioStatusAction.java58 public void onSendCompleted(int error) {
59 if (error != Constants.SEND_RESULT_SUCCESS) {
H A DTimerRecordingAction.java84 public void onSendCompleted(int error) {
85 if (error != Constants.SEND_RESULT_SUCCESS) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java187 dispatchSessionFinished(e.error, completeMsg, null);
H A DPackageManagerException.java23 public final int error; field in class:PackageManagerException
25 public PackageManagerException(int error, String detailMessage) { argument
27 this.error = error;
30 public PackageManagerException(int error, String detailMessage, Throwable throwable) { argument
32 this.error = error;
37 throw new PackageManagerException(e.error, e.getMessage(), e.getCause());
H A DPackageManagerService.java1181 // Indicate service bind error
1235 // Indicate service bind error
2257 // can do about it. A settings error is reported, though.
5564 // Not much to do if idmap fails: we already logged the error
5636 e.error == PackageManager.INSTALL_FAILED_INVALID_APK) {
5718 * Returns null in case of errors and the error code is stored in mLastScanError
5908 // Should not happen at all. Just log an error.
9670 * Returns true if application is not found or there was an error. Otherwise it returns
10224 * error.
10538 // Invalid install. Return error cod
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_connectivity_Vpn.cpp68 goto error;
75 goto error;
82 goto error;
87 error:
219 int error = SYSTEM_ERROR; local
229 if ((error = ifc_add_address(name, address, jPrefixLength)) != 0) {
231 strerror(-error));
234 if ((error = ifc_del_address(name, address, jPrefixLength)) != 0) {
236 strerror(-error));
247 return !error;
252 throwException(JNIEnv *env, int error, const char *message) argument
[all...]
H A Dcom_android_server_fingerprint_FingerprintService.cpp29 #include <keystore/keystore.h> // for error code
95 arg1 = msg.data.error;
204 ALOGE("Can't open fingerprint HW Module, error: %d", err);
222 ALOGE("Can't open fingerprint methods, error: %d", err);
H A Dcom_android_server_input_InputManagerService.cpp510 bool error = false; local
514 error = true;
522 if (!error) {
949 bool error = checkAndClearExceptionFromCallback(env, "interceptKeyBeforeDispatching"); local
952 if (!error) {
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintService.java719 public boolean setPrintJobState(PrintJobId printJobId, int state, String error) { argument
724 return service.mSpooler.setPrintJobState(printJobId, state, error);
H A DRemotePrintSpooler.java207 public final boolean setPrintJobState(PrintJobId printJobId, int state, String error) { argument
215 printJobId, state, error);
520 int status, String error) throws RemoteException, TimeoutException {
522 target.setPrintJobState(printJobId, status, error, mCallback, sequence);
519 setPrintJobState(IPrintSpooler target, PrintJobId printJobId, int status, String error) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/job/
H A DJobStoreTest.java147 * Helper function to throw an error if the provided task and TaskStatus objects are not equal.
185 private void compareTimestampsSubjectToIoLatency(String error, long ts1, long ts2) { argument
187 assertTrue(error, Math.abs(ts1 - ts2) < DELTA_MILLIS + IO_WAIT);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbDeviceManager.java850 String error = accessory.toString()
853 throw new IllegalArgumentException(error);
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsUtListener.aidl34 void utConfigurationUpdateFailed(in IImsUt ut, int id, in ImsReasonInfo error);
40 void utConfigurationQueryFailed(in IImsUt ut, int id, in ImsReasonInfo error);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java91 public QueryPoolException(String error) { argument
92 super(error);
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DTestSuiteBuilderTest.java23 import android.test.suitebuilder.examples.error.ErrorTest;
24 import android.test.suitebuilder.examples.error.FailingTest;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/error/
H A DErrorTest.java17 package android.test.suitebuilder.examples.error;
H A DFailingTest.java17 package android.test.suitebuilder.examples.error;
/frameworks/base/tests/Camera2Tests/CameraToo/src/com/example/android/camera2/cameratoo/
H A DCameraTooActivity.java332 public void onError(CameraDevice camera, int error) {
333 Log.e(TAG, "State error on device '" + camera.getId() + "': code " + error);
379 Log.e(TAG, "Configuration error on device '" + mCamera.getId());
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGLToolbox.java118 // For some devices, "pixels" being null causes system error.
174 int error;
175 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
176 throw new RuntimeException("GL Operation '" + operation + "' caused error "
177 + Integer.toHexString(error) + "!");
H A DRenderTarget.java424 int error = egl.eglGetError();
425 if (error != EGL10.EGL_SUCCESS) {
426 throw new RuntimeException("Error executing " + command + "! EGL error = 0x"
427 + Integer.toHexString(error));
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DAutomaticActivity.java44 * Threshold of error change required to consider a test regressed/improved
84 float error = mErrorCalculator.calcErrorRS(mSoftwareBitmap, mHardwareBitmap);
88 handleError(modifierNames, error);
122 TestResult(String label, float error) { argument
124 mTotalError = error;
127 public void addInto(float error) { argument
128 mTotalError += error;
168 Log.e(LOG_TAG, "error parsing input json", e);
170 Log.e(LOG_TAG, "error reading input json from sd", e);
210 c.report(String.format("tests with error ove
248 addForAllModifiers(String fullName, float error, String[] modifierNames, HashMap<String, TestResult> modifierResults) argument
260 handleError(final String[] modifierNames, final float error) argument
[all...]
H A DManualActivity.java58 // recalculate error
59 float error = mErrorCalculator.calcErrorRS(mSoftwareBitmap, mHardwareBitmap);
65 Log.d(LOG_TAG, "error for " + modname + " is " + error);
66 mErrorTextView.setText(String.format("%.4f", error));
/frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/
H A DAppCompatibility.java97 * first error.
113 // exception with the first error encountered.
127 * Gets the stack trace for the error.
130 * @return {@link String} the long message of the error.
212 for (ProcessErrorStateInfo error : postErr) {
213 if (error.processName.equals(processName)) {
214 return error;

Completed in 665 milliseconds

1234567891011>>