HomeSort by relevance Sort by last modified time
    Searched refs:mLastError (Results 1 - 11 of 11) sorted by null

  /frameworks/base/tools/aapt2/
ResChunkPullParser.cpp 47 mLastError = "chunk is past the end of the document";
53 mLastError = "chunk has too small header";
57 mLastError = "chunk's total size is smaller than header";
61 mLastError = "chunk's data extends past the end of the document";
ResChunkPullParser.h 74 std::string mLastError;
113 return mLastError;
BindingXmlPullParser.cpp 55 mLastError = "variable declaration missing name";
60 mLastError = "variable declaration missing type";
131 // mLastError is set, so getEvent will return kBadDocument.
218 if (!mLastError.empty()) {
225 if (!mLastError.empty()) {
226 return mLastError;
BindingXmlPullParser.h 80 std::string mLastError;
SourceXmlPullParser.h 82 std::string mLastError;
SourceXmlPullParser.cpp 54 mLastError = strerror(errno);
60 mLastError = XML_ErrorString(XML_GetErrorCode(mParser));
96 return mLastError;
  /frameworks/compile/slang/
slang_rs_reflection.h 87 std::string mLastError;
97 inline void setError(const std::string &Error) { mLastError = Error; }
249 if (mLastError.empty())
252 return mLastError.c_str();
slang_rs_reflection.cpp 298 mNextExportFuncSlot(0), mNextExportForEachSlot(0), mLastError(""),
    [all...]
  /frameworks/native/include/binder/
IPCThreadState.h 124 status_t mLastError;
  /frameworks/native/libs/binder/
IPCThreadState.cpp 341 const status_t err = mLastError;
342 mLastError = NO_ERROR;
571 return (mLastError = err);
797 mLastError = err;
931 return (mLastError = err);
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Tethering.java 778 int mLastError;
813 res += " - lastError =" + mLastError;
819 return mLastError;
825 mLastError = error;
    [all...]

Completed in 2840 milliseconds