Searched defs:error (Results 126 - 150 of 351) sorted by relevance

1234567891011>>

/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DComposerHal.h203 Error error; member in struct:android::Hwc2::impl::CommandReader::CommandError
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRILRequest.java204 void onError(int error, Object ret) { argument
207 ex = CommandException.fromRilErrno(error);
212 + " error: " + ex + " ret=" + RIL.retToString(mRequest, ret));
/frameworks/rs/script_api/
H A DScanner.cpp98 ostream& Scanner::error() { function in class:Scanner
99 return error(mLineNumber);
102 ostream& Scanner::error(int lineNumber) { function in class:Scanner
104 cerr << mFileName << ":" << lineNumber << ": error: ";
112 error() << "Unexpected: \" " << mValue << "\".\n";
120 error() << "Found \"" << mTag << "\" while looking for \"" << tag << "\".\n";
144 error() << "Did not expect \"" << mValue << "\" after \"" << mTag << "\".\n";
156 error() << "Missing closing double quote\n";
184 error() << "Missing variable name\n";
190 error() << "Th
[all...]
/frameworks/av/media/common_time/
H A DICommonClock.cpp325 int32_t error; local
326 status_t status = getEstimatedError(&error);
329 reply->writeInt32(error);
/frameworks/av/media/libaaudio/examples/utils/
H A DAAudioSimpleRecorder.h300 aaudio_result_t error)
302 printf("Error Callback, error: %d\n",(int)error);
297 SimpleRecorderErrorCallbackProc( AAudioStream *stream __unused, void *userData __unused, aaudio_result_t error) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp437 OMX_ERRORTYPE error = validateInputBuffer(inHeader); local
438 if (error != OMX_ErrorNone) {
442 notify(OMX_EventError, error, 0, 0);
/frameworks/av/media/libstagefright/codecs/on2/enc/
H A DSoftVPXEncoder.cpp160 // Enable error resilience - needed for packet loss.
291 // The codec specific method would have logged the error.
656 OMX_ERRORTYPE error = validateInputBuffer(inputBufferHeader); local
657 if (error != OMX_ErrorNone) {
660 notify(OMX_EventError, error, 0, 0);
/frameworks/av/media/mtp/
H A DMtpFfsCompatHandle.cpp212 // If there was an error reading above
267 int error = 0; local
310 if (error == -1) {
324 error = -1;
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DEvent.java197 error("Error reading in object, ignoring.", ex);
244 private static void error(String msg) { method in class:Event
245 error(msg, null);
248 private static void error(String msg, Exception e) { method in class:Event
/frameworks/base/core/java/android/app/backup/
H A DRestoreSession.java51 * @return Zero on success, nonzero on error. The observer's restoreSetsAvailable()
75 * @return Zero on success, nonzero on error. The observer's restoreSetsAvailable()
88 * @return Zero on success; nonzero on error. The observer will only receive
121 * @return Zero on success; nonzero on error. The observer will only receive
139 * @return Zero on success, nonzero on error. The observer will only receive
179 * @return Zero on success, nonzero on error. The observer will only receive
202 * @return Zero on success; nonzero on error. The observer will only receive
240 * @return Zero on success; nonzero on error. The observer will only receive
331 public void restoreFinished(int error) { argument
333 mHandler.obtainMessage(MSG_RESTORE_FINISHED, error,
[all...]
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeAdvertiser.java650 final int error) {
654 callback.onAdvertisingSetStarted(null, 0, error);
659 private void postStartFailure(final AdvertiseCallback callback, final int error) { argument
663 callback.onStartFailure(error);
649 postStartSetFailure(Handler handler, final AdvertisingSetCallback callback, final int error) argument
/frameworks/base/core/java/android/companion/
H A DCompanionDeviceManager.java87 * Called if there was an error looking for device(s)
89 * @param error the cause of the error
91 public abstract void onFailure(CharSequence error); argument
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraDevice.java170 * a serious error.</p>
438 * encountered a fatal error
620 * encountered a fatal error
719 * encountered a fatal error
796 * encountered a fatal error
825 * encountered a fatal error.
853 * encountered a fatal error
889 * encountered a fatal error
926 * encountered a fatal error
976 * An error cod
1135 onError(@onNull CameraDevice camera, @ErrorCode int error) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceState.java65 * error has occurred.
92 * @param error the error to set. Should be one of the error codes defined in
95 public synchronized void setError(int error) { argument
96 mCurrentError = error;
108 * @return {@code false} if an error has occurred.
123 * @return {@code false} if an error has occurred.
140 * @param captureError Report a recoverable error for a single request using a valid
141 * error cod
253 doStateTransition(int newState, final long timestamp, final int error) argument
[all...]
/frameworks/base/core/java/android/net/
H A DIpSecTransform.java235 public void onError(int error) {
238 mCallbackHandler.post(() -> mUserKeepaliveCallback.onError(error));
264 /** The hardware returned an error. */
271 /** An error occurred. */
272 public void onError(int error) {} argument
/frameworks/base/core/java/android/net/metrics/
H A DNetworkMetrics.java31 * error counts for bug report logging.
48 // Running sums of latencies and error counts for connect and dns events.
50 // Running sums of the most recent latencies and error counts for connect and dns events.
88 public void addConnectResult(int error, int latencyMs, String ipAddr) { argument
92 boolean isSuccess = connectMetrics.addEvent(error, latencyMs, ipAddr);
94 if (ConnectStats.isNonBlocking(error)) {
109 /** Represents running sums for dns and connect average error counts and average latencies. */
116 // DNS error rate measured in percentage points.
120 // Blocking and non blocking connect error rate measured in percentage points.
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java176 * not successfully printed due to an error. This is a final state.
271 * @param error The human readable, short, and translated reason
280 public boolean fail(@Nullable String error) { argument
283 return setState(PrintJobInfo.STATE_FAILED, error);
465 private boolean setState(int state, @Nullable String error) { argument
467 if (mPrintServiceClient.setPrintJobState(mCachedInfo.getId(), state, error)) {
472 mCachedInfo.setStatus(error);
/frameworks/base/core/java/android/speech/
H A DRecognitionService.java172 * @param listener to send the error message to in case of error
268 * The service should call this method when a network or recognition error occurred.
270 * @param error code is defined in {@link SpeechRecognizer}
272 public void error(int error) throws RemoteException { argument
274 mListener.onError(error);
/frameworks/base/core/java/android/speech/tts/
H A DFileSynthesisCallback.java209 // This is not an error that would prevent synthesis. Hence no
254 public void error() { method in class:FileSynthesisCallback
255 error(TextToSpeech.ERROR_SYNTHESIS);
259 public void error(int errorCode) { method in class:FileSynthesisCallback
260 if (DBG) Log.d(TAG, "FileSynthesisRequest.error()");
/frameworks/base/core/java/android/webkit/
H A DWebViewFactory.java74 // error codes for waiting for WebView preparation
78 // native relro loading error codes
83 // more error codes for waiting for WebView preparation
86 // error for namespace lookup
90 private static String getWebViewPreparationErrorReason(int error) { argument
91 switch (error) {
194 Log.e(LOGTAG, "error waiting for relro creation", e);
258 Log.w(LOGTAG, "error instantiating provider with static factory method", e);
269 Log.e(LOGTAG, "error instantiating provider", e);
464 Log.e(LOGTAG, "error loadin
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DInputBindResult.java135 * <p>Due to the asynchronous nature of Android OS, we cannot completely avoid this error.
284 private static InputBindResult error(@ResultCode int result) { method in class:InputBindResult
289 * Predefined error object for {@link ResultCode#ERROR_NULL}.
291 public static final InputBindResult NULL = error(ResultCode.ERROR_NULL);
293 * Predefined error object for {@link ResultCode#NO_IME}.
295 public static final InputBindResult NO_IME = error(ResultCode.ERROR_NO_IME);
297 * Predefined error object for {@link ResultCode#NO_EDITOR}.
299 public static final InputBindResult NO_EDITOR = error(ResultCode.ERROR_NO_EDITOR);
301 * Predefined error object for {@link ResultCode#ERROR_INVALID_PACKAGE_NAME}.
304 error(ResultCod
[all...]
/frameworks/base/core/jni/android/graphics/
H A DGraphicBuffer.cpp128 status_t error = buffer->initCheck(); local
129 if (error < 0) {
/frameworks/base/core/jni/
H A Dandroid_hardware_HardwareBuffer.cpp87 status_t error = buffer->initCheck(); local
88 if (error < 0) {
H A Dandroid_hardware_UsbDeviceConnection.cpp239 // error or time out. As several threads can listen on the same fd, we might get wakeups
245 int error = errno; local
256 if (error != EAGAIN) {
H A Dandroid_hardware_camera2_legacy_PerfMeasurement.cpp83 int error; local
84 if ((error = glGetError()) != GL_NO_ERROR) {
86 "GLES20 error: 0x%d", error);
182 * and FAILED_MEASUREMENT if an error occurred during the next
267 "Unknown error starting GL timing");
287 "Unknown error ending GL timing");

Completed in 5756 milliseconds

1234567891011>>