Searched refs:ERROR (Results 1 - 25 of 125) sorted by last modified time

12345

/art/tools/bisection_search/
H A Dbisection_search.py118 cmd, LogSeverity.ERROR)
344 choices=[RetCode.SUCCESS.name, RetCode.TIMEOUT.name, RetCode.ERROR.name])
/art/tools/breakpoint-logger/
H A Dbreakpoint_logger.cc271 LOG(ERROR) << "Unable to get method info!";
292 LOG(ERROR) << option << " doesn't look like it has a class name";
299 LOG(ERROR) << bp << " doesn't seem to indicate a method, expected ->";
306 LOG(ERROR) << bp << " doesn't seem to have a method sig!";
311 LOG(ERROR) << bp << " doesn't seem to have a valid location!";
338 LOG(ERROR) << "Unable to parse breakpoint from " << next;
361 LOG(ERROR) << "Unable to access JVMTI, error code " << res;
370 LOG(ERROR) << "Unable to alloc memory for breakpoint target data";
377 LOG(ERROR) << "Unable to set local storage";
382 LOG(ERROR) << "faile
[all...]
/art/tools/common/
H A Dcommon.py51 ERROR = 2 variable in class:RetCode
62 ERROR = 4 variable in class:LogSeverity
163 retcode = RetCode.ERROR
263 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
337 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
436 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
/art/tools/dexfuzz/src/dexfuzz/
H A DLog.java23 private static LogTag threshold = LogTag.ERROR;
32 ERROR, enum constant in enum:Log.LogTag
41 return (threshold.ordinal() < LogTag.ERROR.ordinal());
57 log(LogTag.ERROR, msg);
H A DStreamConsumer.java47 ERROR enum constant in enum:StreamConsumer.State
189 state = State.ERROR;
196 state = State.ERROR;
/art/tools/golem/
H A Dbuild-target.sh115 echo >&2 "ERROR: " "$@"
/art/tools/hiddenapi/
H A Dhiddenapi.cc47 LOG(ERROR) << error;
249 LOG(ERROR) << "Unable to open file '" << path << "' " << strerror(errno);
270 LOG(ERROR) << "Unable to open file '" << filename << "': " << strerror(errno);
287 LOG(ERROR) << "Open failed for '" << filename << "' " << error_msg;
292 LOG(ERROR) << "Expected a standard dex file '" << filename << "'";
298 LOG(ERROR) << "Failed to enable write permission for '" << filename << "'";
/art/tools/jfuzz/
H A Drun_jfuzz_test.py43 BISECTABLE_RET_CODES = (RetCode.SUCCESS, RetCode.ERROR, RetCode.TIMEOUT)
508 if retc1 == RetCode.ERROR and retc2 == RetCode.SUCCESS:
/art/tools/veridex/
H A Dveridex.cc147 LOG(ERROR) << error_msg;
158 LOG(ERROR) << error_msg;
/art/tools/wrapagentproperties/
H A Dwrapagentproperties.cc102 LOG(ERROR) << "Version number 0x" << std::hex << version << " looks like a JVMTI "
213 LOG(ERROR) << "Could not allocate extra space for new jvmti interface struct";
290 LOG(ERROR) << "No agent lib in " << options;
314 LOG(ERROR) << "unable to read property file at " << std::quoted(prop_file) << "!";
/art/test/ti-stress/
H A Dstress.cc71 LOG(ERROR) << "ERROR: Can't find class " << descriptor;
381 LOG(ERROR) << "Unable to get method info!";
392 LOG(ERROR) << "Unable to get class name!";
447 return "<ERROR Found type " + type + ">";
465 LOG(ERROR) << "Unable to get callback info!";
535 LOG(ERROR) << "Unable to get callback info!";
554 LOG(ERROR) << "Unable to get method info!";
573 LOG(ERROR) << "Unable to get method info!";
590 LOG(ERROR) << "Unabl
[all...]
/art/test/626-const-class-linking/
H A Dclear_dex_cache_types.cc44 LOG(ERROR) << klass->PrettyClass() << " has unexpected status: " << status;
60 LOG(ERROR) << "Class #" << i << ": " << as_class->PrettyDescriptor()
/art/test/595-profile-saving/
H A Dprofile-saving.cc43 LOG(ERROR) << "Failed to create profiling info for method " << art_method->PrettyMethod();
/art/test/136-daemon-jni-shutdown/
H A Ddaemon_jni_shutdown.cc50 LOG(ERROR) << "Should not be reached!";
/art/test/137-cfi/
H A Dcfi.cc96 PrintFileToLog(android::base::StringPrintf("/proc/%d/maps", pid), ::android::base::ERROR); member in class:art::android::base
101 PLOG(ERROR) << "Failed to send signal";
167 PLOG(ERROR) << "unexpected waitpid response: n=" << n << ", status=" << std::hex << status;
199 PLOG(ERROR) << "Failed to attach.";
242 PLOG(ERROR) << "Detach failed";
/art/runtime/jit/
H A Dprofile_compilation_info.cc375 LOG(ERROR) << "Profile data size exceeds "
570 LOG(ERROR) << "Exceeded the maximum number of dex files (255). Something went wrong";
603 LOG(ERROR) << "num_method_ids mismatch for dex " << profile_key
1090 LOG(ERROR) << "Dex checksum mismatch while verifying profile "
1098 LOG(ERROR) << "Number of method ids in dex file and profile don't match."
1109 LOG(ERROR) << "Invalid method id in profile file. dex location="
1142 LOG(ERROR) << "Invalid inline cache in profile file. dex location="
1158 LOG(ERROR) << "Invalid class id in profile file. dex_file location "
1296 LOG(ERROR) << "Profile data size exceeds "
1798 LOG(ERROR) << "De
[all...]
H A Dprofile_saver.cc56 LOG(ERROR) << "Failed to setpriority to :" << priority;
/art/runtime/
H A Djni_internal.cc221 LOG(ERROR)
393 LOG(ERROR) << "No <init>" << signature << " in "
2360 c->DumpClass(LOG_STREAM(ERROR), mirror::Class::kDumpClassFullDetail);
2361 LOG(ERROR)
2368 LOG(ERROR)
2525 LOG(ERROR) << "Invalid capacity given to " << caller << ": " << desired_capacity;
H A Djni_internal_test.cc696 ScopedLogSeverity sls(LogSeverity::ERROR);
H A Dmem_map.cc183 PrintFileToLog("/proc/self/maps", LogSeverity::ERROR);
740 PLOG(ERROR) << "mprotect(" << reinterpret_cast<void*>(base_begin_) << ", " << base_size_ << ", "
984 LOG(ERROR) << "Could not find contiguous low-memory space.";
1010 LOG(ERROR) << "The requested address space (" << addr << ", "
1042 PLOG(ERROR) << "Could not protect to requested prot: " << orig_prot;
H A Dmonitor.cc613 LOG(Runtime::Current()->IsStarted() ? ::android::base::INFO : ::android::base::ERROR)
1392 LOG(ERROR) << "Could not find dex_pc for " << m->PrettyMethod();
/art/runtime/mirror/
H A Dclass.cc180 LOG(ERROR) << "Setting " << h_this->PrettyDescriptor() << " to erroneous.";
182 LOG(ERROR) << "Exception: " << self->GetException()->Dump();
/art/runtime/native/
H A Ddalvik_system_DexFile.cc474 LOG(ERROR) << "DexFile_getDexOptNeeded file '" << filename << "' does not exist";
649 LOG(ERROR) << "DexFile_isDexOptNeeded file '" << filename << "' does not exist";
H A Ddalvik_system_VMDebug.cc196 klass->DumpClass(LOG_STREAM(ERROR), flags_);
H A Ddalvik_system_VMStack.cc75 LOG(ERROR) << "Trying to get thread's stack failed as the thread failed to suspend within a "

Completed in 1125 milliseconds

12345