HomeSort by relevance Sort by last modified time
    Searched refs:PrettyMethod (Results 26 - 50 of 71) sorted by null

12 3

  /art/runtime/
reflection.cc 238 PrettyMethod(mh.GetMethod(), false).c_str(),
266 PrettyMethod(mh.GetMethod(), false).c_str(), \
387 << " to " << PrettyMethod(h_m.Get());
398 PrettyMethod(h_m.Get()).c_str());
570 PrettyMethod(m).c_str()).c_str());
dex_instruction.cc 329 os << "}, " << PrettyMethod(method_idx, *file) << " // method@" << method_idx;
362 << PrettyMethod(method_idx, *file) << " // method@" << method_idx;
quick_exception_handler.cc 140 LOG(INFO) << "Handler: " << PrettyMethod(handler_method_) << " (line: " << line_number << ")";
215 CHECK(verifier_success) << PrettyMethod(h_method.Get());
profiler.cc 431 std::string method_full_name = PrettyMethod(method);
584 std::string method_name = PrettyMethod(method);
610 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file));
627 PrettyMethod(current->GetMethod().dex_method_index, *(current->GetMethod().dex_file)).c_str(),
trace.cc 501 LOG(INFO) << PrettyMethod(method) << " " << static_cast<int>(action);
571 LOG(ERROR) << "Unexpected dex PC event in tracing " << PrettyMethod(method) << " " << new_dex_pc;
578 LOG(ERROR) << "Unexpected field read event in tracing " << PrettyMethod(method) << " " << dex_pc;
586 LOG(ERROR) << "Unexpected field write event in tracing " << PrettyMethod(method) << " " << dex_pc;
debugger.cc 228 os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc());
261 LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method)
    [all...]
check_jni.cc 54 os << "\n from " << PrettyMethod(current_method);
289 function_name_, PrettyMethod(m).c_str());
294 PrettyMethod(m).c_str(), function_name_);
297 PrettyMethod(m).c_str(), function_name_);
338 PrettyMethod(m).c_str(), PrettyClass(c).c_str());
357 JniAbortF(function_name_, "can't call %s on null object", PrettyMethod(m).c_str());
360 PrettyMethod(m).c_str(), PrettyTypeOf(o).c_str());
492 msg += PrettyMethod(m);
537 std::string methodName(PrettyMethod(traceMethod, false));
    [all...]
utils.h 315 // Used to implement PrettyClass, PrettyField, PrettyMethod, and PrettyTypeOf,
335 std::string PrettyMethod(mirror::ArtMethod* m, bool with_signature = true)
337 std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature = true);
monitor.cc 279 << PrettyMethod(owners_method) << " from " << owners_filename << ":"
    [all...]
  /art/compiler/driver/
compiler_driver-inl.h 244 resolved_method) << PrettyMethod(resolved_method);
254 DCHECK_NE(*invoke_type, kSuper) << PrettyMethod(resolved_method);
compiler_driver.cc     [all...]
  /art/runtime/entrypoints/
entrypoint_utils.cc 221 JniAbortF(NULL, "invalid reference returned from %s", PrettyMethod(m).c_str());
230 PrettyMethod(h_m.Get()).c_str());
entrypoint_utils-inl.h 436 CHECK_EQ(imt_method, method) << PrettyMethod(resolved_method) << " / " <<
437 PrettyMethod(imt_method) << " / " << PrettyMethod(method) << " / " <<
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 306 DCHECK(!interface_method->IsProxyMethod()) << PrettyMethod(interface_method);
392 CHECK(called->IsStatic()) << PrettyMethod(called);
  /art/runtime/interpreter/
interpreter.cc 30 std::string name(PrettyMethod(method));
127 LOG(FATAL) << "Calling native method " << PrettyMethod(method) << " in an unstarted "
265 LOG(FATAL) << "Do something with static native method: " << PrettyMethod(method)
309 LOG(FATAL) << "Do something with native method: " << PrettyMethod(method)
interpreter_common.cc 646 LOG(FATAL) << "Attempt to invoke non-executable method: " << PrettyMethod(method);
651 LOG(FATAL) << "Attempt to call compiled code when -Xint: " << PrettyMethod(method);
    [all...]
  /art/compiler/dex/
mir_optimization.cc 569 LOG(WARNING) << "LVN overflow in " << PrettyMethod(cu_->method_idx, *cu_->dex_file);
    [all...]
vreg_analysis.cc 367 LOG(WARNING) << PrettyMethod(cu_->method_idx, *cu_->dex_file)
397 << PrettyMethod(cu_->method_idx, *cu_->dex_file);
mir_graph.cc 555 LOG(INFO) << PrettyMethod(cu_->method_idx, *cu_->dex_file);
    [all...]
local_value_numbering.h 106 DCHECK_EQ(map->count(s_reg), 0u) << PrettyMethod(gvn_->cu_->method_idx, *gvn_->cu_->dex_file)
  /art/oatdump/
oatdump.cc 454 class_method_index, PrettyMethod(dex_method_idx, dex_file, true).c_str(),
    [all...]
  /art/runtime/mirror/
art_method-inl.h 146 DCHECK(!IsRuntimeMethod() && !IsProxyMethod()) << PrettyMethod(this);
198 << PrettyMethod(this)
  /art/compiler/jni/portable/
jni_compiler.cc 74 MangleForJni(PrettyMethod(method_idx, *dex_file)).c_str()));
  /art/compiler/optimizing/
graph_visualizer.cc 251 std::string pretty_name = PrettyMethod(cu.GetDexMethodIndex(), *cu.GetDexFile());
  /art/compiler/
common_compiler_test.cc 207 LOG(INFO) << "MakeExecutable " << PrettyMethod(method) << " code=" << method_code;

Completed in 1366 milliseconds

12 3