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

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/upstream/utility/
ErrorContext.hpp 41 ErrorContext(std::string &error) : mError(error) {}
43 void setError(const std::string &error) { mError = error; }
45 void appendToError(const std::string &append) { mError += append; }
47 void prependToError(const std::string &prepend) { mError = prepend + mError; }
51 std::string &mError;
  /frameworks/base/opengl/java/android/opengl/
GLException.java 27 mError = error;
32 mError = error;
44 return mError;
47 private final int mError;
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
CustomErrorEditText.java 28 private CharSequence mError;
36 return mError;
42 mError = error;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallStateException.java 24 private int mError = ERROR_INVALID;
47 mError = error;
51 return mError;
  /system/libvintf/include/vintf/
KernelConfigParser.h 43 std::stringstream mError;
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3StreamBufferListener.h 37 bool mError;
  /system/vold/
Keymaster.h 49 explicit operator bool() { return mError == km::ErrorCode::OK; }
50 km::ErrorCode errorCode() { return mError; }
66 KeymasterOperation() : mDevice{nullptr}, mOpHandle{0}, mError{km::ErrorCode::UNKNOWN_ERROR} {}
75 mError = rhs.mError;
76 rhs.mError = km::ErrorCode::UNKNOWN_ERROR;
83 : mDevice{d}, mOpHandle{h}, mError{km::ErrorCode::OK} {}
84 KeymasterOperation(km::ErrorCode error) : mDevice{nullptr}, mOpHandle{0}, mError{error} {}
91 km::ErrorCode mError;
  /frameworks/base/core/tests/coretests/src/android/content/
ContentQueryMapTest.java 38 public Throwable mError = null;
49 mError = e;
103 if (thread.mError != null) throw thread.mError;
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
CommandResult.java 36 private final String mError;
43 mError = errorDetails;
57 return mError;
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererBase.java 36 int mError;
  /device/google/contexthub/sensorhal/
directchannel.h 32 DirectChannelBase() : mError(NO_INIT), mSize(0), mBase(nullptr) { }
41 int mError;
71 int mError;
  /frameworks/compile/libbcc/lib/
FileBase.h 68 std::error_code mError;
124 { return (bool) mError; }
127 { return mError; }
132 { return mError.message(); }
  /system/libhwbinder/include/hwbinder/
Parcel.h 293 status_t mError;
  /frameworks/native/services/surfaceflinger/
DispSync.h 155 // mError is the computed model error. It is based on the difference
158 nsecs_t mError;
  /hardware/intel/common/utils/ISV/include/
isv_processor.h 123 bool mError;
  /packages/apps/Settings/src/com/android/settings/applications/
AppStorageSizesController.java 37 private final @StringRes int mError;
56 mError = error;
65 int errorRes = mLastResultFailed ? mError : mComputing;
141 private @StringRes int mError;
169 mError = sequence;
180 mError);
  /cts/tests/vr/src/android/vr/cts/
RendererBasicTest.java 49 int mError;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
MultiThread.c 333 static INT8 mError; // non-zero means error occurred
570 if (mError || mDone) {
640 if (mError) {
653 mError = 1;
660 return mError;
725 mError = 0;
824 mError = 1;
839 if (mError) {
882 if (mError && (mBuildingList != NULL)) {
904 return mError;
    [all...]
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingCameraManager.java 57 private final int mError;
60 return mError == ERROR_DISCONNECTED;
64 return mError != ERROR_DISCONNECTED;
74 return mError;
88 mError = errorCode;
183 private int mError = ERROR_UNINITIALIZED;
202 assertEquals(ERROR_UNINITIALIZED, mError);
264 mError = error;
316 } else if (mError != ERROR_UNINITIALIZED) {
318 mError,
    [all...]
  /packages/apps/Car/Messenger/tests/robotests/src/com/android/car/messenger/tts/
TTSHelperTest.java 135 private boolean mError = false;
142 return mStopped && !mError;
146 return mStopped && mError;
157 mError = error;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ProjectCheckPage.java 54 private Image mError;
214 if (mError == null) {
215 mError = IconFactory.getInstance().getIcon(IMG_ERROR);
218 new Label(parent, SWT.NONE).setImage(mError);
  /system/core/logd/
LogTimes.h 38 bool mError;
79 return threadRunning || mRelease || mError || mNonBlock;
109 mError = true;
118 return mRelease || mError;
  /frameworks/av/camera/ndk/impl/
ACameraDevice.h 171 camera_status_t mError = ACAMERA_OK;
  /frameworks/native/libs/binder/include/binder/
Parcel.h 458 status_t mError;
    [all...]
  /hardware/qcom/media/msm8974/libc2dcolorconvert/
C2DColorConverter.cpp 109 int mError;
114 mError = 0;
118 mError = -1;
136 mError = -1;
172 if (mError) {
199 if (mError) {
201 return mError;

Completed in 1426 milliseconds

1 2 3 4 5 6 7 8 91011>>