Searched defs:file_idx (Results 1 - 7 of 7) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacinfoEntry.h51 dw_uleb128_t file_idx; member in union:DWARFDebugMacinfoEntry::__anon9988
H A DDWARFDebugLine.cpp974 bool DWARFDebugLine::Prologue::GetFile(uint32_t file_idx, std::string& path, std::string& directory) const argument
976 uint32_t idx = file_idx - 1; // File indexes are 1 based...
H A DSymbolFileDWARF.cpp2856 uint32_t file_idx = UINT32_MAX; local
2862 file_idx = sc.comp_unit->GetSupportFiles().FindFileIndex (1, file_spec, true);
2863 if (file_idx == UINT32_MAX)
2876 file_idx = sc.comp_unit->GetSupportFiles().FindFileIndex (1, file_spec, true);
2878 if (file_idx != UINT32_MAX)
2881 uint32_t line_idx = line_table->FindLineEntryIndexByFileIndex (0, file_idx, line, false, &sc.line_entry);
2917 line_idx = line_table->FindLineEntryIndexByFileIndex (line_idx + 1, file_idx, found_line, true, &sc.line_entry);
/external/lldb/source/Core/
H A DFileLineResolver.cpp56 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/include/lldb/Symbol/
H A DLineTable.h81 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, rh
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/
H A DCompileUnit.cpp284 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...]
H A DLineTable.cpp43 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) argument
358 if (m_entries[idx].file_idx !
38 InsertLineEntry( lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry ) argument
82 AppendLineEntryToSequence( LineSequence* sequence, lldb::addr_t file_addr, uint32_t line, uint16_t column, uint16_t file_idx, bool is_start_of_statement, bool is_start_of_basic_block, bool is_prologue_end, bool is_epilogue_begin, bool is_terminal_entry ) argument
395 FineLineEntriesForFileIndex(uint32_t file_idx, bool append, SymbolContextList &sc_list) argument
[all...]

Completed in 218 milliseconds