/external/lldb/source/Core/ |
FileLineResolver.cpp | 56 uint32_t file_idx = cu->GetSupportFiles().FindFileIndex(start_file_idx, m_file_spec, false); local 57 if (file_idx != UINT32_MAX) 66 while (file_idx != UINT32_MAX) 68 line_table->FineLineEntriesForFileIndex (file_idx, append, m_sc_list); 71 file_idx = cu->GetSupportFiles().FindFileIndex(file_idx + 1, m_file_spec, false);
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
DWARFDebugMacinfoEntry.h | 51 dw_uleb128_t file_idx; member in union:DWARFDebugMacinfoEntry::__anon4896
|
DWARFDebugMacinfoEntry.cpp | 68 s->Printf(" line:%u file index: '%u'\n", (uint32_t)m_line, (uint32_t)m_op2.file_idx); 110 m_op2.file_idx = mac_info_data.GetULEB128(offset_ptr);
|
DWARFDebugLine.h | 101 bool GetFile(uint32_t file_idx, std::string& file, std::string& dir) const;
|
DWARFDebugLine.cpp | [all...] |
SymbolFileDWARF.cpp | 2856 uint32_t file_idx = UINT32_MAX; local [all...] |
/external/lldb/include/lldb/Symbol/ |
LineTable.h | 81 uint16_t file_idx, 99 uint16_t file_idx, 159 /// Finds the next line entry that has a matching \a file_idx and 166 /// @param[out] file_idx 193 uint32_t file_idx, 206 FineLineEntriesForFileIndex (uint32_t file_idx, 279 file_idx (0), 300 file_idx (_file_idx), 318 file_idx = 0; 341 SCALAR_COMPARE (lhs.file_idx, rhs.file_idx) 367 uint16_t file_idx:11, \/\/\/< The file index into CompileUnit's file table, or zero if there is no file information. member in struct:lldb_private::LineTable::Entry [all...] |
/external/lldb/source/Symbol/ |
CompileUnit.cpp | 284 uint32_t file_idx = 0; local 288 file_idx = GetSupportFiles().FindFileIndex (1, *file_spec_ptr, true); 289 if (file_idx == UINT32_MAX) 299 file_idx = support_files.FindFileIndex (1, support_files.GetFileSpecAtIndex(0), full); 300 if (file_idx == UINT32_MAX) 301 file_idx = 0; 305 return line_table->FindLineEntryIndexByFileIndex (start_idx, file_idx, line, exact, line_entry_ptr); 335 uint32_t file_idx = GetSupportFiles().FindFileIndex (1, file_spec, true); 336 while (file_idx != UINT32_MAX) 338 file_indexes.push_back (file_idx); [all...] |
LineTable.cpp | 43 uint16_t file_idx, 51 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry); 88 uint16_t file_idx, 98 Entry entry(file_addr, line, column, file_idx, is_start_of_statement, is_start_of_basic_block, is_prologue_end, is_epilogue_begin, is_terminal_entry); 158 LT_COMPARE (a.file_idx, b.file_idx); 274 line_entry.file = m_comp_unit->GetSupportFiles().GetFileSpecAtIndex (entry.file_idx); 310 if (find (begin_pos, end_pos, m_entries[idx].file_idx) == end_pos) 347 LineTable::FindLineEntryIndexByFileIndex (uint32_t start_idx, uint32_t file_idx, uint32_t line, bool exact, LineEntry* line_entry_ptr) 358 if (m_entries[idx].file_idx != file_idx [all...] |