Searched refs:error_ (Results 1 - 20 of 20) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dstatus.h14 ErrorStatus(int error) : error_{error} {}
15 int error() const { return error_; }
20 int error_; member in struct:android::pdx::ErrorStatus
29 Status() : error_{-1} {}
39 : error_{error_status.error()} {}
45 : value_{std::move(other.value_)}, error_{other.error_} {
46 other.error_ = -1;
52 error_ = other.error_;
[all...]
H A Dclient.h143 int error_{0};
/frameworks/native/services/vr/performanced/
H A Ddirectory_reader.h20 error_ = errno;
32 int GetError() const { return error_; }
46 int error_; member in class:android::dvr::DirectoryReader
/frameworks/base/tools/aapt2/unflatten/
H A DResChunkPullParser.cpp60 error_ = "chunk is past the end of the document";
66 error_ = "chunk has too small header";
71 error_ = "chunk's total size is smaller than header " + ChunkHeaderDump(current_chunk_);
75 error_ = "chunk's data extends past the end of the document " + ChunkHeaderDump(current_chunk_);
H A DResChunkPullParser.h78 std::string error_; member in class:aapt::ResChunkPullParser
118 inline const std::string& ResChunkPullParser::error() const { return error_; }
/frameworks/base/tools/aapt2/flatten/
H A DArchive.cpp45 error_ = "directory does not exist";
48 error_ = "not a directory";
65 error_ = android::base::SystemErrorCodeToString(errno);
77 error_ = android::base::SystemErrorCodeToString(errno);
107 bool HadError() const override { return !error_.empty(); }
109 std::string GetError() const override { return error_; }
116 std::string error_; member in class:aapt::__anon1348::DirectoryWriter
126 error_ = android::base::SystemErrorCodeToString(errno);
149 error_ = ZipWriter::ErrorCodeString(result);
158 error_
237 std::string error_; member in class:aapt::__anon1348::ZipFileWriter
[all...]
/frameworks/base/tools/aapt2/link/
H A DXmlReferenceLinker.cpp47 : callsite_(callsite), context_(context), symbols_(symbols), decls_(decls), error_(false) {}
51 error_ = true;
55 bool HasError() const { return error_; }
64 bool error_; member in class:aapt::__anon1354::ReferenceVisitor
117 error_ = true;
139 error_ = true;
147 bool HasError() { return error_ || reference_visitor_.HasError(); }
158 bool error_ = false; member in class:aapt::__anon1354::XmlVisitor
H A DReferenceLinker.cpp64 error_ = true;
125 error_ = true;
134 error_ = true;
139 bool HasError() { return error_; }
177 bool error_ = false; member in class:aapt::__anon1352::ReferenceLinkerVisitor
/frameworks/native/services/vr/virtual_touchpad/
H A DEvdevInjector.h59 int GetError() const { return error_; }
60 void ResetError() { error_ = 0; }
115 // Sets |error_| if it is not already set; returns |code|.
130 int error_ = 0; variable
H A DEvdevInjector.cpp277 if (!error_) {
278 error_ = code;
284 if (error_) {
285 return error_;
312 result.appendFormat("injector_error = %d\n", error_);
/frameworks/base/tools/aapt2/java/
H A DJavaClassGenerator.h114 std::string error_; member in class:aapt::JavaClassGenerator
118 return error_;
H A DJavaClassGenerator.cpp532 error_ = err.str();
642 error_ = android::base::SystemErrorCodeToString(errno);
/frameworks/base/tools/aapt2/compile/
H A DInlineXmlFormatParser.cpp62 error_ = true;
70 error_ = true;
87 error_ = true;
110 bool HasError() const { return error_; }
118 bool error_ = false; member in class:aapt::__anon1345::Visitor
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp72 error_(false) {
81 error_ = true;
355 if (error_) {
370 if (!error_ &&
384 return !error_ && Seek(infile_bc_offset_) &&
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp28 error_ = -status.error();
39 // connection in the handler, in which case error_ will be non-zero.
43 ret.SetError(-error_);
70 error_ = -status.error();
82 int Client::error() const { return error_; }
112 error_ = error <= 0 ? error : -error;
/frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
H A Dbitcode_wrapperer.h218 bool error_; member in class:BitcodeWrapperer
/frameworks/base/tools/aapt2/util/
H A DUtil.h187 std::string error_; member in class:aapt::StringBuilder
192 inline const std::string& StringBuilder::Error() const { return error_; }
198 inline StringBuilder::operator bool() const { return error_.empty(); }
H A DUtil.cpp316 if (!error_.empty()) {
357 error_ = "invalid unicode escape sequence";
390 error_ = "unescaped apostrophe";
437 error_ = "invalid unicode code point";
/frameworks/base/tools/aapt2/xml/
H A DXmlPullParser.cpp58 error_ = strerror(errno);
64 error_ = XML_ErrorString(XML_GetErrorCode(parser_));
101 const std::string& XmlPullParser::error() const { return error_; }
H A DXmlPullParser.h176 std::string error_; member in class:aapt::xml::XmlPullParser

Completed in 1103 milliseconds