Searched refs:error (Results 1 - 25 of 26) sorted by relevance

12

/art/tools/
H A Dcpplint.py120 error messages whose category names pass the filters will be printed.
157 # We categorize each error message we print. Here are the categories.
159 # If you add a new error message with a new category, add it to the list
352 # {str, set(int)}: a map from error categories to sets of linenumbers
360 def ParseNolintSuppressions(filename, raw_line, linenum, error):
361 """Updates the global list of error-suppressions.
364 error_suppressions store. Reports an error if the NOLINT comment
371 error: function, an error handler.
385 error(filenam
[all...]
/art/runtime/
H A Datomic.cc75 #error Unexpected architecture
104 #error Unexpected architecture
137 #error Unexpected architecture
H A Ddebugger.cc697 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
698 if (error != JDWP::ERR_NONE) {
699 return error;
747 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
748 if (error != JDWP::ERR_NONE) {
749 return error;
1576 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
1577 if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) {
1578 return error;
1603 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
1703 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
1724 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
1737 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
1849 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
1902 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2000 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2144 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2231 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2637 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread); local
[all...]
H A DAndroid.mk208 $(error unsupported TARGET_ARCH=$(TARGET_ARCH))
230 $(error unsupported HOST_ARCH=$(HOST_ARCH))
262 $$(error expected target or host for argument 1, received $(1))
267 $$(error expected ndebug or debug for argument 2, received $(2))
H A Dclass_linker_test.cc366 bool error = false; local
375 error = true;
385 error = true;
394 error = true;
397 if (error) {
417 error = true;
420 if (error) {
432 return !error;
H A Ddebugger.h52 arg_count_(0), arg_values_(NULL), options_(0), error(JDWP::ERR_NONE),
74 JDWP::JdwpError error; member in struct:art::DebugInvokeReq
H A Dcommon_test.h259 #error unsupported OS
/art/runtime/base/
H A Dlogging.cc118 LogMessageData::LogMessageData(const char* file, int line, LogSeverity severity, int error) argument
122 error(error) {
133 if (data_->error != -1) {
134 data_->buffer << ": " << strerror(data_->error);
H A Dlogging.h178 LogMessageData(const char* file, int line, LogSeverity severity, int error);
183 const int error; member in struct:art::LogMessageData
191 LogMessage(const char* file, int line, LogSeverity severity, int error) argument
192 : data_(new LogMessageData(file, line, severity, error)) {
325 // some error checking to ensure fatal shutdown makes forward progress.
H A Dmutex.cc495 #error unsupported C library
739 #error unsupported C library
851 // Futex failed, check it is an expected error.
/art/build/
H A DAndroid.executable.mk36 $$(error expected target or host for argument 5, received $(5))
41 $$(error expected ndebug or debug for argument 6, received $(6))
H A DAndroid.libarttest.mk26 $$(error expected target or host for argument 1, received $(1))
H A DAndroid.gtest.mk93 $$(error expected target or host for argument 1, received $(1))
/art/test/JniTest/
H A Djni_test.cc24 #error test code compiled without NDEBUG
/art/runtime/jdwp/
H A Djdwp_socket.cc278 int error; local
279 int cc = gethostbyname_r(options->host.c_str(), &he, auxBuf, sizeof(auxBuf), &pEntry, &error);
281 LOG(WARNING) << "gethostbyname_r('" << options->host << "') failed: " << hstrerror(error);
345 * Returns "false" on error (indicating that the connection has been severed),
H A Djdwp_handler.cc935 JdwpError error = Dbg::GetThreadName(thread_id, name); local
936 if (error != ERR_NONE) {
937 return error;
992 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); local
993 if (error != ERR_NONE) {
994 return error;
1017 * If the thread isn't suspended, the error code isn't defined, but should
1027 JdwpError error = Dbg::GetThreadFrameCount(thread_id, actual_frame_count); local
1028 if (error != ERR_NONE) {
1029 return error;
[all...]
H A Djdwp_event.cc143 * not be added to the list, and an appropriate error will be returned.
233 * Failure to find the event isn't really an error, but it is a little
535 pReq->error = ERR_NONE;
/art/runtime/verifier/
H A Dmethod_verifier.cc78 std::string* error) {
84 *error = "Verifier rejected class ";
85 *error += PrettyDescriptor(klass);
86 *error += " that has no super class";
90 *error = "Verifier rejected class ";
91 *error += PrettyDescriptor(klass);
92 *error += " that attempts to sub-class final class ";
93 *error += PrettyDescriptor(super);
100 *error = "Verifier rejected class ";
101 *error
76 VerifyClass(const mirror::Class* klass, bool allow_soft_failures, std::string* error) argument
114 VerifyClass(const DexFile* dex_file, mirror::DexCache* dex_cache, mirror::ClassLoader* class_loader, const DexFile::ClassDef* class_def, bool allow_soft_failures, std::string* error) argument
422 Fail(VerifyError error) argument
[all...]
H A Dmethod_verifier.h73 VERIFY_ERROR_BAD_CLASS_HARD, // VerifyError; hard error that skips compilation.
74 VERIFY_ERROR_BAD_CLASS_SOFT, // VerifyError; soft error that verifies again at runtime.
88 * Identifies the type of reference in the instruction that generated the verify error
149 std::string* error)
154 bool allow_soft_failures, std::string* error)
175 std::ostream& Fail(VerifyError error);
295 * Logs an error and returns "false" on failure.
597 * Returns "false" if an error is encountered.
707 // The types of any error that occurs.
/art/jdwpspy/
H A DNet.cpp476 art::JDWP::JdwpError error = art::JDWP::ERR_NONE; local
485 error = static_cast<art::JDWP::JdwpError>(get2BE(buf+9));
515 prefix, dataLen, id, flags, error, ss.str().c_str(), min,sec);
523 * Handle a packet. Returns "false" if we encounter a connection-fatal error.
587 * Returns "false" on error (indicating that the connection has been severed).
/art/compiler/
H A DAndroid.mk123 $$(error expected target or host for argument 1, received $(1))
128 $$(error expected ndebug or debug for argument 2, received $(2))
/art/compiler/utils/arm/
H A Dconstants_arm.h47 #error "Exactly one of VFPv3_D16 or VFPv3_D32 can be defined at a time."
/art/dex2oat/
H A Ddex2oat.cc60 std::string error; local
61 StringAppendV(&error, fmt, ap);
62 LOG(ERROR) << error;
148 std::cerr << "See log for usage error information\n";
487 // TODO: Remove when we switch to LOG when we can guarantee it won't prevent shutdown in error
552 // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases.
604 #error "Unsupported architecture"
/art/runtime/entrypoints/portable/
H A Dportable_trampoline_entrypoints.cc51 #error "Unsupported architecture"
273 // field within the proxy object, which will box the primitive arguments and deal with error cases.
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc100 #error "Unsupported architecture"
367 // field within the proxy object, which will box the primitive arguments and deal with error cases.

Completed in 782 milliseconds

12