Home
last modified time | relevance | path

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

/art/compiler/debug/
Delf_debug_writer.cc55 const char* source_file = mi.dex_file->GetSourceFile(dex_class_def); in WriteDebugInfo() local
56 if (compilation_units.empty() || source_file != last_source_file) { in WriteDebugInfo()
66 last_source_file = source_file; in WriteDebugInfo()
Delf_debug_line_writer.h177 const char* source_file = dex->GetSourceFile(dex_class_def); in WriteCompilationUnit() local
178 if (source_file != nullptr) { in WriteCompilationUnit()
179 std::string file_name(source_file); in WriteCompilationUnit()
/art/runtime/mirror/
Dthrowable.cc119 const char* source_file = method->GetDeclaringClassSourceFile(); in Dump() local
121 source_file, line_number); in Dump()
/art/runtime/
Dmonitor.cc1362 const char** source_file, in TranslateLocation() argument
1366 *source_file = ""; in TranslateLocation()
1370 *source_file = method->GetDeclaringClassSourceFile(); in TranslateLocation()
1371 if (*source_file == nullptr) { in TranslateLocation()
1372 *source_file = ""; in TranslateLocation()
Dmonitor.h258 const char** source_file,
Dthread.cc1799 const char* source_file(m->GetDeclaringClassSourceFile()); in VisitFrame() local
1800 os << "(" << (source_file != nullptr ? source_file : "unavailable") in VisitFrame()
2660 const char* source_file = method->GetDeclaringClassSourceFile(); in InternalStackTraceToStackTraceElementArray() local
2667 if (source_file != nullptr) { in InternalStackTraceToStackTraceElementArray()
2668 source_name_object.Assign(mirror::String::AllocFromModifiedUtf8(soa.Self(), source_file)); in InternalStackTraceToStackTraceElementArray()
Ddebugger.cc1123 const char* source_file = c->GetSourceFile(); in GetSourceFile() local
1124 if (source_file == nullptr) { in GetSourceFile()
1127 *result = source_file; in GetSourceFile()
5038 const char* source_file = method->GetDeclaringClassSourceFile(); in GetMethodSourceFile() local
5039 return (source_file != nullptr) ? source_file : ""; in GetMethodSourceFile()
Ddebugger.h294 static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string* source_file)
/art/runtime/hprof/
Dhprof.cc717 const char* source_file = method->GetDeclaringClassSourceFile(); in WriteStackTraces() local
718 if (source_file == nullptr) { in WriteStackTraces()
719 source_file = ""; in WriteStackTraces()
721 __ AddStringId(LookupStringId(source_file)); in WriteStackTraces()
/art/test/
DAndroid.bp287 "992-source-data/source_file.cc",
/art/runtime/jdwp/
Djdwp_handler.cc450 std::string source_file; in RT_SourceFile() local
451 JdwpError status = Dbg::GetSourceFile(refTypeId, &source_file); in RT_SourceFile()
455 expandBufAddUtf8String(pReply, source_file); in RT_SourceFile()
/art/dexlayout/
Ddex_ir.cc374 const StringId* source_file = GetStringIdOrNullPtr(disk_class_def.source_file_idx_.index_); in CreateClassDef() local
390 source_file, annotations, static_values, class_data); in CreateClassDef()
Ddexlayout.cc1460 const dex_ir::StringId* source_file = class_def->SourceFile(); in DumpClass() local
1462 source_file == nullptr ? 0xffffffffU : source_file->GetIndex(), file_name); in DumpClass()
Ddex_ir.h786 const StringId* source_file, in ClassDef() argument
794 source_file_(source_file), in ClassDef()