Home
last modified time | relevance | path

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

/art/compiler/
Delf_writer_debug.cc266 const char* source_file = mi.dex_file_->GetSourceFile(dex_class_def); in WriteDebugSections() local
267 if (compilation_units.empty() || source_file != last_source_file) { in WriteDebugSections()
271 last_source_file = source_file; in WriteDebugSections()
358 const char* source_file = dex->GetSourceFile(dex_class_def); in WriteDebugSections() local
359 if (source_file != nullptr) { in WriteDebugSections()
360 std::string file_name(source_file); in WriteDebugSections()
/art/runtime/mirror/
Dthrowable.cc114 const char* source_file = method->GetDeclaringClassSourceFile(); in Dump() local
116 source_file, line_number); in Dump()
/art/runtime/
Dmonitor.cc1092 const char** source_file, uint32_t* line_number) const { in TranslateLocation() argument
1095 *source_file = ""; in TranslateLocation()
1099 *source_file = method->GetDeclaringClassSourceFile(); in TranslateLocation()
1100 if (*source_file == nullptr) { in TranslateLocation()
1101 *source_file = ""; in TranslateLocation()
Dmonitor.h230 const char** source_file, uint32_t* line_number) const
Dthread.cc1075 const char* source_file(m->GetDeclaringClassSourceFile()); in VisitFrame() local
1076 os << "(" << (source_file != nullptr ? source_file : "unavailable") in VisitFrame()
1826 const char* source_file = method->GetDeclaringClassSourceFile(); in InternalStackTraceToStackTraceElementArray() local
1827 if (source_file != nullptr) { in InternalStackTraceToStackTraceElementArray()
1828 source_name_object.Assign(mirror::String::AllocFromModifiedUtf8(soa.Self(), source_file)); in InternalStackTraceToStackTraceElementArray()
Ddebugger.cc1171 const char* source_file = c->GetSourceFile(); in GetSourceFile() local
1172 if (source_file == nullptr) { in GetSourceFile()
1175 *result = source_file; in GetSourceFile()
5034 const char* source_file = method->GetDeclaringClassSourceFile(); in GetMethodSourceFile() local
5035 return (source_file != nullptr) ? source_file : ""; in GetMethodSourceFile()
Ddebugger.h304 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string* source_file)
/art/runtime/jdwp/
Djdwp_handler.cc447 std::string source_file; in RT_SourceFile() local
448 JdwpError status = Dbg::GetSourceFile(refTypeId, &source_file); in RT_SourceFile()
452 expandBufAddUtf8String(pReply, source_file); in RT_SourceFile()