OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dw_uleb128_t
(Results
1 - 9
of
9
) sorted by null
/external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugMacinfoEntry.h
48
dw_uleb128_t
m_line;
51
dw_uleb128_t
file_idx;
DWARFAbbreviationDeclaration.h
31
dw_uleb128_t
Code() const { return m_code; }
32
void SetCode(
dw_uleb128_t
code) { m_code = code; }
67
bool Extract(const lldb_private::DataExtractor& data, lldb::offset_t *offset_ptr,
dw_uleb128_t
code);
75
dw_uleb128_t
m_code;
DWARFDebugAbbrev.cpp
39
dw_uleb128_t
prev_abbr_code = 0;
70
DWARFAbbreviationDeclarationSet::GetAbbreviationDeclaration(
dw_uleb128_t
abbrCode) const
97
dw_uleb128_t
101
dw_uleb128_t
code = m_decls.size()+1;
DWARFDebugAbbrev.h
48
dw_uleb128_t
AppendAbbrevDeclSequential(const DWARFAbbreviationDeclaration& abbrevDecl);
50
const DWARFAbbreviationDeclaration* GetAbbreviationDeclaration(
dw_uleb128_t
abbrCode) const;
DWARFFormValue.cpp
199
case DW_FORM_block: {
dw_uleb128_t
size = debug_info_data.GetULEB128(offset_ptr); *offset_ptr += size; } return true;
200
case DW_FORM_block1: {
dw_uleb128_t
size = debug_info_data.GetU8(offset_ptr); *offset_ptr += size; } return true;
201
case DW_FORM_block2: {
dw_uleb128_t
size = debug_info_data.GetU16(offset_ptr); *offset_ptr += size; } return true;
202
case DW_FORM_block4: {
dw_uleb128_t
size = debug_info_data.GetU32(offset_ptr); *offset_ptr += size; } return true;
DWARFAbbreviationDeclaration.cpp
41
DWARFAbbreviationDeclaration::Extract(const DataExtractor& data, lldb::offset_t *offset_ptr,
dw_uleb128_t
code)
DWARFDebugLine.cpp
222
dw_uleb128_t
len = debug_line_data.GetULEB128(&offset);
278
dw_uleb128_t
addr_offset_n = debug_line_data.GetULEB128(&offset);
279
dw_uleb128_t
addr_offset = addr_offset_n * prologue.min_inst_length;
617
dw_uleb128_t
len = debug_line_data.GetULEB128(offset_ptr);
[
all
...]
DWARFDebugInfoEntry.cpp
[
all
...]
/external/lldb/include/lldb/Core/
dwarf.h
21
typedef uint32_t
dw_uleb128_t
;
typedef
Completed in 3472 milliseconds