Searched defs:error (Results 1 - 13 of 13) sorted by relevance

/art/runtime/base/
H A Dlogging.cc122 LogMessageData::LogMessageData(const char* file, int line, LogSeverity severity, int error) argument
126 error(error) {
137 if (data_->error != -1) {
138 data_->buffer << ": " << strerror(data_->error);
H A Dlogging.h194 LogMessageData(const char* file, int line, LogSeverity severity, int error);
199 const int error; member in struct:art::LogMessageData
207 LogMessage(const char* file, int line, LogSeverity severity, int error) argument
208 : data_(new LogMessageData(file, line, severity, error)) {
323 // some error checking to ensure fatal shutdown makes forward progress.
/art/runtime/
H A Dzip_archive.cc44 const int32_t error = ExtractEntryToFile(handle_, zip_entry_, file.Fd()); local
45 if (error) {
46 *error_msg = std::string(ErrorCodeString(error));
66 const int32_t error = ExtractToMemory(handle_, zip_entry_, local
68 if (error) {
69 *error_msg = std::string(ErrorCodeString(error));
94 const int32_t error = OpenArchive(filename, &handle); local
95 if (error) {
96 *error_msg = std::string(ErrorCodeString(error));
110 const int32_t error local
126 const int32_t error = FindEntry(handle_, name, zip_entry.get()); local
[all...]
H A Dparsed_options.cc201 #error "ART default GC type must be set"
730 bool error = (fmt != nullptr); local
731 FILE* stream = error ? stderr : stdout;
854 Exit((error) ? 1 : 0);
H A Ddebugger.h58 arg_count(0), arg_values(NULL), options(0), error(JDWP::ERR_NONE),
80 JDWP::JdwpError error; member in struct:art::DebugInvokeReq
H A Dclass_linker_test.cc381 bool error = false; local
390 error = true;
400 error = true;
407 error = true;
410 if (error) {
429 error = true;
432 if (error) {
444 return !error;
H A Ddebugger.cc974 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
975 if (error != JDWP::ERR_NONE) {
976 return error;
995 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
996 if (error != JDWP::ERR_NONE) {
997 return error;
1078 // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI
1079 // also ignores these cases and never return an error. However it's not obvious why this command
1081 // strict and return an error if this happens.
1095 // JDWP specs state an INVALID_OBJECT error i
1964 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
1989 JDWP::JdwpError error; local
2034 JDWP::JdwpError error; local
2053 JDWP::JdwpError error; local
2097 JDWP::JdwpError error; local
2175 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2196 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2209 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2288 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2341 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2448 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2618 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
2746 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
3437 JDWP::JdwpError error = DecodeThread(soa, thread_id, thread); local
3487 JDWP::JdwpError error = DecodeThread(soa, thread_id, targetThread); local
[all...]
/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_event.cc168 * not be added to the list, and an appropriate error will be returned.
319 // Failure to find the event isn't really an error. For instance, it looks like Eclipse will
611 pReq->error = ERR_NONE;
786 JdwpError error = Dbg::GetThreadName(thread_id, thread_name); local
787 if (error != JDWP::ERR_NONE) {
H A Djdwp_handler.cc156 JDWP::JdwpError error = Dbg::StringToUtf8(resultValue, &result_string); local
157 CHECK_EQ(error, JDWP::ERR_NONE);
928 JDWP::JdwpError error = Dbg::StringToUtf8(stringObject, &str); local
929 if (error != JDWP::ERR_NONE) {
930 return error;
948 JdwpError error = Dbg::GetThreadName(thread_id, name); local
949 if (error != ERR_NONE) {
950 return error;
1007 JdwpError error = Dbg::GetThreadStatus(thread_id, &threadStatus, &suspendStatus); local
1008 if (error !
1042 JdwpError error = Dbg::GetThreadFrameCount(thread_id, actual_frame_count); local
1401 JdwpError error = Dbg::GetLocalValue(thread_id, frame_id, slot, reqSigByte, ptr, width); local
1426 JdwpError error = Dbg::SetLocalValue(thread_id, frame_id, slot, sigByte, value, width); local
[all...]
/art/patchoat/
H A Dpatchoat.cc638 std::string error; local
639 StringAppendV(&error, fmt, ap);
640 LOG(ERROR) << error;
/art/dex2oat/
H A Ddex2oat.cc83 std::string error; local
84 StringAppendV(&error, fmt, ap);
85 LOG(ERROR) << error;
229 std::cerr << "See log for usage error information\n";
641 // TODO: Remove when we switch to LOG when we can guarantee it won't prevent shutdown in error
712 // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases.
/art/runtime/verifier/
H A Dmethod_verifier.cc92 std::string* error) {
113 *error = "Verifier rejected class " + PrettyDescriptor(klass) + failure_message;
123 return VerifyClass(&dex_file, dex_cache, class_loader, class_def, allow_soft_failures, error);
131 std::string* error) {
178 *error += "\n";
180 *error = "Verifier rejected class ";
181 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
182 *error += " due to bad method ";
183 *error += PrettyMethod(method_idx, *dex_file);
222 *error
90 VerifyClass(mirror::Class* klass, bool allow_soft_failures, std::string* error) argument
126 VerifyClass(const DexFile* dex_file, Handle<mirror::DexCache> dex_cache, Handle<mirror::ClassLoader> class_loader, const DexFile::ClassDef* class_def, bool allow_soft_failures, std::string* error) argument
466 Fail(VerifyError error) argument
[all...]

Completed in 5508 milliseconds