HomeSort by relevance Sort by last modified time
    Searched defs:NO_ERROR (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/bluetooth/le/
ScanCallback.java 59 static final int NO_ERROR = 0;
  /frameworks/base/services/core/java/com/android/server/vr/
VrManagerInternal.java 33 public static final int NO_ERROR = 0;
84 * Return NO_ERROR if the given package is installed on the device and enabled as a
88 * @return NO_ERROR if the given package is installed and is enabled, or a negative error code
EnabledComponentsObserver.java 55 public static final int NO_ERROR = 0;
206 return NO_ERROR;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
dderror.h 5 #define NO_ERROR 0
  /tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
_anritsu_utils.py 22 NO_ERROR = 0
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraBinderTestUtils.java 21 public static final int NO_ERROR = 0;
  /frameworks/native/libs/gui/tests/
MultiTextureConsumer_test.cpp 71 ASSERT_EQ(native_window_set_usage(mANW, GRALLOC_USAGE_SW_WRITE_OFTEN), NO_ERROR);
72 ASSERT_EQ(native_window_set_buffers_format(mANW, HAL_PIXEL_FORMAT_RGBA_8888), NO_ERROR);
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipErrorCode.java 28 public static final int NO_ERROR = 0;
68 case NO_ERROR:
69 return "NO_ERROR";
  /system/extras/simpleperf/
read_elf.h 30 NO_ERROR,
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyExceptionUtils.java 31 public static final int NO_ERROR = 0;
70 if (errorFlag == NO_ERROR) {
71 return NO_ERROR;
91 if (errorFlag >= NO_ERROR) {
  /system/core/libutils/include/utils/
Errors.h 39 // Win32 #defines NO_ERROR as well. It has the same value, so there's no
42 # undef NO_ERROR
47 NO_ERROR = 0, // No errors.
81 # define NO_ERROR 0L
  /system/security/keystore/include/keystore/
keystore.h 30 NO_ERROR = STATE_NO_ERROR, // 1
  /cts/tests/tests/nativehardware/jni/
AHardwareBufferTest.cpp 37 #define NO_ERROR 0
106 ASSERT_EQ(NO_ERROR, res);
123 ASSERT_EQ(NO_ERROR, res);
134 ASSERT_EQ(NO_ERROR, res);
149 ASSERT_EQ(NO_ERROR, res);
174 if (err != NO_ERROR) {
200 ASSERT_EQ(NO_ERROR, err);
216 ASSERT_EQ(NO_ERROR, err);
246 ASSERT_EQ(NO_ERROR, err);
250 ASSERT_EQ(NO_ERROR, err)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
ErrorCode.java 20 /** Not an error! For SPDY stream resets, prefer null over NO_ERROR. */
21 NO_ERROR(0, -1, 0),
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
serialization.h 120 NO_ERROR = 0,
133 ErrorType() : error_code_(ErrorCode::NO_ERROR) {}
149 explicit operator bool() const { return error_code_ != ErrorCode::NO_ERROR; }
166 case ErrorCode::NO_ERROR:
167 return "NO_ERROR";
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
MessagingException.java 31 public static final int NO_ERROR = -1;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
MessagingException.java 32 public static final int NO_ERROR = -1;
  /cts/tests/vr/jni/
VrExtensionsJni.cpp 57 #define NO_ERROR 0
197 ASSERT_EQ(error, NO_ERROR);
219 ASSERT_EQ(error, NO_ERROR);
223 ASSERT_EQ(error, NO_ERROR);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 57 private static final String NO_ERROR = "No error";
84 private String mErrorReason = NO_ERROR;
  /packages/services/Telephony/src/com/android/phone/
ChangeIccPinScreen.java 57 private static final int NO_ERROR = 0;
165 return NO_ERROR;
  /tools/tradefederation/core/src/com/android/tradefed/command/
CommandRunner.java 35 private ExitCode mErrorCode = ExitCode.NO_ERROR;
101 if (ExitCode.NO_ERROR.equals(mErrorCode)) {
108 if (!ExitCode.NO_ERROR.equals(mErrorCode)
125 NO_ERROR(0),
  /frameworks/ml/nn/runtime/include/
NeuralNetworksWrapper.h 47 NO_ERROR = ANEURALNETWORKS_NO_ERROR,
325 if (result != Result::NO_ERROR) {
  /frameworks/opt/vcard/java/com/android/vcard/
VCardComposer.java 111 public static final String NO_ERROR = "No error";
149 private String mErrorReason = NO_ERROR;
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
Recorder.java 43 public static final int NO_ERROR = 0;
  /frameworks/base/keystore/java/android/security/
KeyStore.java 57 public static final int NO_ERROR = 1;
109 private int mError = NO_ERROR;
153 case NO_ERROR: return State.UNLOCKED;
182 return insert(key, value, uid, flags) == NO_ERROR;
197 return (ret == NO_ERROR || ret == KEY_NOT_FOUND);
210 return mBinder.exist(key, uid) == NO_ERROR;
239 return mBinder.reset() == NO_ERROR;
254 return mBinder.lock(userId) == NO_ERROR;
279 return mError == NO_ERROR;
310 new KeystoreArguments(args)) == NO_ERROR;
    [all...]

Completed in 552 milliseconds

1 2 3 4