HomeSort by relevance Sort by last modified time
    Searched refs:errorCode (Results 401 - 425 of 973) sorted by null

<<11121314151617181920>>

  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
GeofenceTransitionsIntentService.java 74 int errorCode = geoFenceEvent.getErrorCode();
75 Log.e(TAG, "Location Services error: " + errorCode);
  /development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
GeofenceTransitionsIntentService.java 74 int errorCode = geoFenceEvent.getErrorCode();
75 Log.e(TAG, "Location Services error: " + errorCode);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues004Test.java 122 short errorCode = getValuesReply.getErrorCode();
123 if ( errorCode != JDWPConstants.Error.NONE ) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPTestCase.java 712 int errorCode = reply.getErrorCode();
729 message = message + "Error Code:<" + errorCode + "("
730 + JDWPConstants.Error.getName(errorCode) + ")>";
732 message = message + "Unexpected error code:<" + errorCode + "("
733 + JDWPConstants.Error.getName(errorCode) + ")>"
    [all...]
  /external/icu/icu4c/source/i18n/
collationkeys.cpp 231 UBool preflight, UErrorCode &errorCode) {
232 if(U_FAILURE(errorCode)) { return; }
271 int64_t ce = iter.nextCE(errorCode);
299 ce = iter.nextCE(errorCode);
343 if(U_SUCCESS(errorCode) && !sink.IsOk()) {
344 errorCode = U_MEMORY_ALLOCATION_ERROR;
619 if(U_FAILURE(errorCode)) { return; }
667 errorCode = U_MEMORY_ALLOCATION_ERROR;
sortkey.cpp 176 UErrorCode errorCode = U_ZERO_ERROR;
177 return static_cast<Collator::EComparisonResult>(compareTo(target, errorCode));
  /external/icu/icu4c/source/i18n/unicode/
measfmt.h 352 UErrorCode &errorCode) const;
356 UErrorCode &errorCode) const;
coll.h     [all...]
  /external/mdnsresponder/mDNSWindows/ControlPanel/
ConfigPropertySheet.cpp 256 DNSServiceErrorType errorCode,
268 if ( errorCode )
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyCameraDevice.java 94 /*errorCode*/CameraDeviceState.NO_CAPTURE_ERROR, /*errorArg*/null);
98 int errorCode, Object errorArg) {
100 if (errorCode == CameraDeviceImpl.CameraDeviceCallbacks.ERROR_CAMERA_BUFFER) {
125 public void onError(final int errorCode, final Object errorArg, final RequestHolder holder) {
127 Log.d(TAG, "onError called, errorCode = " + errorCode + ", errorArg = " + errorArg);
129 switch (errorCode) {
145 final CaptureResultExtras extras = getExtrasFromRequest(holder, errorCode, errorArg);
151 ", with error code " + errorCode);
154 mDeviceCallbacks.onDeviceError(errorCode, extras)
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewDelegate.java 175 * Returns the error string for the given {@code errorCode}.
177 public String getErrorString(Context context, int errorCode) {
178 return LegacyErrorStrings.getString(errorCode, context);
  /frameworks/base/core/jni/
android_util_jar_StrictJarFile.cpp 37 static void throwIoException(JNIEnv* env, const int32_t errorCode) {
38 jniThrowException(env, "java/io/IOException", ErrorCodeString(errorCode));
  /frameworks/base/services/core/java/com/android/server/fingerprint/
AuthenticationClient.java 91 int errorCode = lockoutMode == LOCKOUT_TIMED ?
94 receiver.onError(getHalDeviceId(), errorCode, 0 /* vendorCode */);
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingCameraManager.java 81 * @param errorCode
86 public BlockingOpenException(int errorCode, String message) {
88 mError = errorCode;
  /frameworks/ex/framesequence/jni/
FrameSequenceJNI.cpp 111 void throwIae(JNIEnv* env, const char* message, int errorCode) {
113 snprintf(buf, sizeof(buf), "%s, error %d", message, errorCode);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnContext.java 485 int errorCode = 0;
487 errorCode = Integer.parseInt(errorValue[0]);
493 if (count > 0 && errorCode > 0) {
494 mRetriesLeftPerErrorCode.put(errorCode, count);
503 public boolean restartOnError(int errorCode) {
507 retriesLeft = mRetriesLeftPerErrorCode.get(errorCode);
519 mRetriesLeftPerErrorCode.put(errorCode, retriesLeft - 1);
524 String str = "ApnContext.restartOnError(" + errorCode + ") found " + retriesLeft +
  /libcore/ojluni/src/main/java/java/util/prefs/
FileSystemPreferences.java 886 int errorCode = 0
    [all...]
  /system/libhidl/base/include/hidl/
Status.h 116 Status(int32_t exceptionCode, int32_t errorCode);
117 Status(int32_t exceptionCode, int32_t errorCode, const char *message);
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
ScanCallbackTest.java 104 public void onScanFailed(int errorCode) {
  /cts/tests/tests/hardware/src/android/hardware/fingerprint/cts/
FingerprintManagerTest.java 41 public void onAuthenticationError(int errorCode, CharSequence errString) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
SuspendCountTest.java 313 int errorCode = reply.getErrorCode();
314 if ( errorCode != JDWPConstants.Error.NONE ) {
316 logWriter.println("## FAILURE: VirtualMachine.Suspend command returns error = " + errorCode
317 + "(" + JDWPConstants.Error.getName(errorCode) + ")");
417 int errorCode = reply.getErrorCode();
418 if ( errorCode != JDWPConstants.Error.NONE ) {
422 + "'; ClassType.SetValues command reurns error = " + errorCode);
ForceEarlyReturnTest.java 268 short errorCode = forceEarlyReturnReply.getErrorCode();
269 if (errorCode != JDWPConstants.Error.NONE) {
270 if (errorCode == JDWPConstants.Error.THREAD_NOT_SUSPENDED) {
  /frameworks/av/services/camera/libcameraservice/common/
Camera2ClientBase.h 65 virtual void notifyError(int32_t errorCode,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
SmsSessionEventBuilder.java 48 mEvent.errorCode = code;
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
VehicleHalManager.h 84 void onHalPropertySetError(StatusCode errorCode, int32_t property,

Completed in 1089 milliseconds

<<11121314151617181920>>