Searched refs:ERROR (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/core/java/android/bluetooth/
H A DAtCommandHandler.java38 return new AtCommandResult(AtCommandResult.ERROR);
48 return new AtCommandResult(AtCommandResult.ERROR);
58 return new AtCommandResult(AtCommandResult.ERROR);
78 return new AtCommandResult(AtCommandResult.ERROR);
H A DAtCommandResult.java37 public static final int ERROR = 1; field in class:AtCommandResult
41 private static final String ERROR_STRING = "ERROR";
49 * @param resultCode One of OK, ERROR or UNSOLICITED.
99 case ERROR:
H A DAtParser.java266 // Return ["ERROR"]
267 return new AtCommandResult(AtCommandResult.ERROR);
289 new AtCommandResult(AtCommandResult.ERROR));
304 new AtCommandResult(AtCommandResult.ERROR));
H A DBluetoothDevice.java68 * BluetoothDevice.ERROR)</code>
70 public static final int ERROR = Integer.MIN_VALUE; field in class:BluetoothDevice
598 if (classInt == BluetoothClass.ERROR) return null;
667 return BluetoothDevice.ERROR;
H A DBluetoothClass.java56 public static final int ERROR = 0xFF000000; field in class:BluetoothClass
H A DHeadsetBase.java130 if (result.getResultCode() == AtCommandResult.ERROR) {
/frameworks/base/core/tests/coretests/src/android/bluetooth/
H A DAtParserTest.java38 this(AtCommandResult.ERROR, AtCommandResult.ERROR,
39 AtCommandResult.ERROR, AtCommandResult.ERROR,
40 AtCommandResult.ERROR);
178 new String[]{"ERROR"},
229 new String[]{"ERROR"},
237 new String[]{"ERROR"},
H A DBluetoothTestUtils.java168 BluetoothAdapter.ERROR);
169 assertNotSame(mode, BluetoothAdapter.ERROR);
183 BluetoothAdapter.ERROR);
184 assertNotSame(state, BluetoothAdapter.ERROR);
296 BluetoothDevice.ERROR);
297 assertNotSame(type, BluetoothDevice.ERROR);
318 BluetoothDevice.ERROR);
319 assertNotSame(state, BluetoothDevice.ERROR);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaPlayerStateErrors.java32 ERROR, enum constant in enum:MediaPlayerStateErrors.MediaPlayerState
H A DMediaRecorderStateErrors.java28 ERROR, enum constant in enum:MediaRecorderStateErrors.MediaRecorderState
H A DMediaPlayerStateUnitTestTemplate.java121 if (mMediaPlayerState != MediaPlayerStateErrors.MediaPlayerState.ERROR) {
367 case ERROR:
411 case ERROR:
462 callMediaPlayerMethodUnderTestInState(MediaPlayerStateErrors.MediaPlayerState.ERROR);
H A DMediaRecorderStateUnitTestTemplate.java239 case ERROR:
274 case ERROR:
309 callMediaRecorderMethodUnderTestInState(MediaRecorderStateErrors.MediaRecorderState.ERROR);
/frameworks/base/core/java/android/webkit/
H A DHTML5Audio.java57 private static int ERROR = -1; field in class:HTML5Audio
83 if (mState != ERROR && mMediaPlayer.isPlaying()) {
88 mState = ERROR;
112 mState = ERROR;
182 if ((mState == ERROR || mState == IDLE) && mUrl != null) {
212 mState = ERROR;
H A DConsoleMessage.java33 ERROR, enum constant in enum:ConsoleMessage.MessageLevel
H A DDataLoader.java68 mLoadListener.error(EventHandler.ERROR,
H A DHTML5VideoViewProxy.java68 private static final int ERROR = 103; field in class:HTML5VideoViewProxy
271 sendMessage(obtainMessage(ERROR));
315 case ERROR: {
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java54 public static final int ERROR = -1; field in class:TextToSpeech
113 * @param status {@link TextToSpeech#SUCCESS} or {@link TextToSpeech#ERROR}.
288 * {@link TextToSpeech#SUCCESS} and {@link TextToSpeech#ERROR}.
471 mInitListener.onInit(ERROR);
521 * @return Code indicating success or failure. See {@link #ERROR} and {@link #SUCCESS}.
526 return ERROR;
550 return ERROR;
568 * @return Code indicating success or failure. See {@link #ERROR} and {@link #SUCCESS}.
573 return ERROR;
597 return ERROR;
[all...]
/frameworks/ex/common/java/com/android/common/speech/
H A DLoggingEvents.java109 public static final int ERROR = 13; field in class:LoggingEvents.VoiceIme
/frameworks/base/core/java/android/util/
H A DLog.java31 * ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled
77 public static final int ERROR = 6; field in class:Log
200 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS will
224 * Send an {@link #ERROR} log message.
230 return println_native(LOG_ID_MAIN, ERROR, tag, msg);
234 * Send a {@link #ERROR} log message and log the exception.
241 return println_native(LOG_ID_MAIN, ERROR, tag, msg + '\n' + getStackTraceString(tr));
H A DSlog.java73 return Log.println_native(Log.LOG_ID_SYSTEM, Log.ERROR, tag, msg);
77 return Log.println_native(Log.LOG_ID_SYSTEM, Log.ERROR, tag,
/frameworks/base/packages/TtsService/src/android/tts/
H A DTtsService.java243 return TextToSpeech.ERROR;
260 return TextToSpeech.ERROR;
366 int res = TextToSpeech.ERROR;
375 res = TextToSpeech.ERROR;
382 int res = TextToSpeech.ERROR;
387 res = TextToSpeech.ERROR;
416 int res = TextToSpeech.ERROR;
426 res = TextToSpeech.ERROR;
542 int result = TextToSpeech.ERROR;
560 result = TextToSpeech.ERROR;
[all...]
/frameworks/base/core/java/android/net/http/
H A DEventHandler.java41 public static final int ERROR = -1; field in interface:EventHandler
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java47 * ERROR
163 return Log.ERROR;
/frameworks/base/media/java/android/media/
H A DAudioRecord.java78 public static final int ERROR = -1; field in class:AudioRecord
445 * or {@link #ERROR} if the implementation was unable to query the hardware for its
478 return AudioRecord.ERROR;
H A DAudioTrack.java112 public static final int ERROR = -1; field in class:AudioTrack
604 * or {@link #ERROR} if the implementation was unable to query the hardware for its output
638 return AudioTrack.ERROR;

Completed in 1239 milliseconds

12