HomeSort by relevance Sort by last modified time
    Searched full:debug_info_data (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 26 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local
29 if (debug_info_data.isValidOffset(offset)) {
30 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
102 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local
103 uint64_t abbrCode = debug_info_data.getULEB128(offset_ptr);
137 form_size = debug_info_data.getULEB128(&offset);
140 form_size = debug_info_data.getU8(&offset);
143 form_size = debug_info_data.getU16(&offset);
146 form_size = debug_info_data.getU32(&offset);
151 debug_info_data.getCStr(&offset)
230 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local
394 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local
    [all...]
DWARFFormValue.h 71 bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
73 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
DWARFCompileUnit.cpp 53 DWARFCompileUnit::extract(uint32_t offset, DataExtractor debug_info_data,
59 if (debug_info_data.isValidOffset(offset)) {
60 Length = debug_info_data.getU32(&offset);
61 Version = debug_info_data.getU16(&offset);
62 bool abbrevsOK = debug_info_data.getU32(&offset) == abbrevs->getOffset();
64 AddrSize = debug_info_data.getU8(&offset);
70 debug_info_data.isValidOffset(offset))
DWARFFormValue.cpp 209 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr,
211 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu);
215 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data,
225 uint64_t size = debug_info_data.getULEB128(offset_ptr);
230 uint8_t size = debug_info_data.getU8(offset_ptr);
235 uint16_t size = debug_info_data.getU16(offset_ptr);
240 uint32_t size = debug_info_data.getU32(offset_ptr);
247 debug_info_data.getCStr(offset_ptr);
294 debug_info_data.getULEB128(offset_ptr);
299 form = debug_info_data.getULEB128(offset_ptr)
    [all...]
DWARFCompileUnit.h 62 uint32_t extract(uint32_t offset, DataExtractor debug_info_data,

Completed in 517 milliseconds