Searched defs:source_file (Results 1 - 5 of 5) sorted by relevance

/art/runtime/mirror/
H A Dthrowable.cc94 const char* source_file = method->GetDeclaringClassSourceFile(); local
96 source_file, line_number);
/art/runtime/jdwp/
H A Djdwp_handler.cc493 std::string source_file; local
494 JdwpError status = Dbg::GetSourceFile(refTypeId, source_file);
498 expandBufAddUtf8String(pReply, source_file);
/art/runtime/
H A Dmonitor.cc1088 const char** source_file, uint32_t* line_number) const {
1091 *source_file = "";
1095 *source_file = method->GetDeclaringClassSourceFile();
1096 if (*source_file == NULL) {
1097 *source_file = "";
1087 TranslateLocation(mirror::ArtMethod* method, uint32_t dex_pc, const char** source_file, uint32_t* line_number) const argument
H A Dthread.cc904 const char* source_file(m->GetDeclaringClassSourceFile());
905 os << "(" << (source_file != nullptr ? source_file : "unavailable")
1574 const char* source_file = method->GetDeclaringClassSourceFile(); local
1575 if (source_file != nullptr) {
1576 source_name_object.Assign(mirror::String::AllocFromModifiedUtf8(soa.Self(), source_file));
H A Ddebugger.cc1233 const char* source_file = c->GetSourceFile(); local
1234 if (source_file == nullptr) {
1237 result = source_file;
4574 const char* source_file = method->GetDeclaringClassSourceFile(); local
4575 return (source_file != nullptr) ? source_file : "";

Completed in 3557 milliseconds