Home
last modified time | relevance | path

Searched refs:source_file (Results 1 – 7 of 7) sorted by relevance

/art/runtime/mirror/
Dthrowable.cc94 const char* source_file = method->GetDeclaringClassSourceFile(); in Dump() local
96 source_file, line_number); in Dump()
/art/runtime/
Dmonitor.cc1088 const char** source_file, uint32_t* line_number) const { in TranslateLocation() argument
1091 *source_file = ""; in TranslateLocation()
1095 *source_file = method->GetDeclaringClassSourceFile(); in TranslateLocation()
1096 if (*source_file == NULL) { in TranslateLocation()
1097 *source_file = ""; in TranslateLocation()
Dmonitor.h187 const char** source_file, uint32_t* line_number) const
Dthread.cc916 const char* source_file(m->GetDeclaringClassSourceFile()); in VisitFrame() local
917 os << "(" << (source_file != nullptr ? source_file : "unavailable") in VisitFrame()
1611 const char* source_file = method->GetDeclaringClassSourceFile(); in InternalStackTraceToStackTraceElementArray() local
1612 if (source_file != nullptr) { in InternalStackTraceToStackTraceElementArray()
1613 source_name_object.Assign(mirror::String::AllocFromModifiedUtf8(soa.Self(), source_file)); in InternalStackTraceToStackTraceElementArray()
Ddebugger.cc1245 const char* source_file = c->GetSourceFile(); in GetSourceFile() local
1246 if (source_file == nullptr) { in GetSourceFile()
1249 result = source_file; in GetSourceFile()
4690 const char* source_file = method->GetDeclaringClassSourceFile(); in GetMethodSourceFile() local
4691 return (source_file != nullptr) ? source_file : ""; in GetMethodSourceFile()
Ddebugger.h282 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string& source_file)
/art/runtime/jdwp/
Djdwp_handler.cc493 std::string source_file; in RT_SourceFile() local
494 JdwpError status = Dbg::GetSourceFile(refTypeId, source_file); in RT_SourceFile()
498 expandBufAddUtf8String(pReply, source_file); in RT_SourceFile()