Home
last modified time | relevance | path

Searched refs:extractor (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp64 DataExtractor extractor(objc_class_buf.GetBytes(), objc_class_size, in Read() local
70 m_isa = extractor.GetAddress_unchecked(&cursor); // uintptr_t isa; in Read()
71 m_superclass = extractor.GetAddress_unchecked(&cursor); // Class superclass; in Read()
72 m_cache_ptr = extractor.GetAddress_unchecked(&cursor); // void *cache; in Read()
73 m_vtable_ptr = extractor.GetAddress_unchecked(&cursor); // IMP *vtable; in Read()
75 extractor.GetAddress_unchecked(&cursor); // uintptr_t data_NEVER_USE; in Read()
109 DataExtractor extractor(buffer.GetBytes(), size, process->GetByteOrder(), in Read() local
114 m_flags = extractor.GetU32_unchecked(&cursor); in Read()
115 m_version = extractor.GetU32_unchecked(&cursor); in Read()
116 m_ro_ptr = extractor.GetAddress_unchecked(&cursor); in Read()
[all …]
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatterSection.cpp92 [&](llvm::DataExtractor extractor, llvm::StringRef type_name) { in LoadTypeSummariesForModule() argument
103 uint64_t summary_size = extractor.getULEB128(cursor); in LoadTypeSummariesForModule()
105 extractor.getBytes(cursor, summary_size); in LoadTypeSummariesForModule()
134 [&](llvm::DataExtractor extractor, llvm::StringRef type_name) { in LoadFormattersForModule() argument
142 uint64_t flags = extractor.getULEB128(cursor); in LoadFormattersForModule()
143 while (cursor && cursor.tell() < extractor.size()) { in LoadFormattersForModule()
144 uint8_t signature = extractor.getU8(cursor); in LoadFormattersForModule()
145 uint64_t size = extractor.getULEB128(cursor); in LoadFormattersForModule()
146 llvm::StringRef bytecode = extractor.getBytes(cursor, size); in LoadFormattersForModule()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp752 DataExtractor extractor(buf.GetBytes(), buf.GetByteSize(), GetByteOrder(), in ReadScalarFromMemory() local
763 scalar = extractor.GetU8(&offset); in ReadScalarFromMemory()
766 scalar = extractor.GetU16(&offset); in ReadScalarFromMemory()
769 scalar = extractor.GetU32(&offset); in ReadScalarFromMemory()
772 scalar = extractor.GetU64(&offset); in ReadScalarFromMemory()
795 void IRMemoryMap::GetMemoryData(DataExtractor &extractor, in GetMemoryData() argument
837 extractor = DataExtractor(allocation.m_data.GetBytes() + offset, size, in GetMemoryData()
849 extractor = DataExtractor(allocation.m_data.GetBytes() + offset, size, in GetMemoryData()
H A DIRExecutionUnit.cpp189 DataExtractor extractor(buffer_sp, process->GetByteOrder(), in DisassembleFunction() local
194 extractor.PutToLog(log, 0, extractor.GetByteSize(), func_remote_addr, 16, in DisassembleFunction()
198 disassembler_sp->DecodeInstructions(Address(func_remote_addr), extractor, 0, in DisassembleFunction()
H A DMaterializer.cpp712 DataExtractor extractor(data.GetBytes(), data.GetByteSize(), in DumpToLog() local
720 ptr = extractor.GetAddress(&offset); in DumpToLog()
1144 DataExtractor extractor(data.GetBytes(), data.GetByteSize(), in DumpToLog() local
1152 ptr = extractor.GetAddress(&offset); in DumpToLog()
/freebsd/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp136 DataExtractor extractor(data.GetBytes(), data.GetByteSize(), in ReadJITEntry() local
139 entry->next_entry = extractor.GetAddress(&offset); in ReadJITEntry()
140 entry->prev_entry = extractor.GetAddress(&offset); in ReadJITEntry()
141 entry->symfile_addr = extractor.GetAddress(&offset); in ReadJITEntry()
143 entry->symfile_size = extractor.GetU64(&offset); in ReadJITEntry()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanTracer.cpp156 DataExtractor extractor(buffer, sizeof(buffer), m_process.GetByteOrder(), in Log() local
161 disassembler->DecodeInstructions(pc_addr, extractor, 0, 1, false, in Log()
164 disassembler->DecodeInstructions(Address(pc), extractor, 0, 1, false, in Log()
H A DTargetProperties.td75 def DynamicClassInfoHelper: Property<"objc-dynamic-class-extractor", "Enum">,
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp125 DataExtractor extractor(buffer, byte_order, address_size, byte_size); in MakeLocationExpressionInternal() local
126 DWARFExpression result(extractor); in MakeLocationExpressionInternal()
255 DataExtractor extractor(buffer, lldb::eByteOrderLittle, address_size); in MakeConstantLocationExpression() local
256 DWARFExpression result(extractor); in MakeConstantLocationExpression()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1268 StringExtractor extractor(value); in GetHostInfo() local
1269 extractor.GetHexByteString(triple); in GetHostInfo()
1272 StringExtractor extractor(value); in GetHostInfo() local
1273 extractor.GetHexByteString(m_host_distribution_id); in GetHostInfo()
1276 StringExtractor extractor(value); in GetHostInfo() local
1277 extractor.GetHexByteString(m_os_build); in GetHostInfo()
1280 StringExtractor extractor(value); in GetHostInfo() local
1281 extractor.GetHexByteString(m_hostname); in GetHostInfo()
1284 StringExtractor extractor(value); in GetHostInfo() local
1285 extractor.GetHexByteString(m_os_kernel); in GetHostInfo()
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp347 StringExtractor extractor(value); in Handle_qfProcessInfo() local
349 extractor.GetHexByteString(file); in Handle_qfProcessInfo()
H A DProcessGDBRemote.cpp3798 StringExtractor extractor(desc_str); in AsyncThread() local
3799 extractor.GetHexByteString(desc_string); in AsyncThread()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCxxStringTypes.cpp236 DataExtractor extractor; in StringBufferSummaryProvider() local
237 const size_t bytes_read = location_sp->GetPointeeData(extractor, 0, size); in StringBufferSummaryProvider()
241 options.SetData(std::move(extractor)); in StringBufferSummaryProvider()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp177 DataExtractor extractor(buffer, byte_order, address_size, byte_size); in ConvertPDBLocationToDWARFExpression() local
178 DWARFExpression result(extractor); in ConvertPDBLocationToDWARFExpression()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h77 void GetMemoryData(DataExtractor &extractor, lldb::addr_t process_address,
/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptParser.td268 class ValueExtractor<code extractor> { code ValueExtractor = extractor; }
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp856 lldb_private::DataExtractor extractor(buffer, byte_order, address_size, in CreateDWARFExpression() local
858 DWARFExpression result(extractor); in CreateDWARFExpression()
/freebsd/contrib/file/magic/Magdir/
H A Dandroid43 # android-backup-extractor/perl/backupencrypt.pl
H A Dmsdos974 # TELVOX Teleinformatica CODEC self-extractor for OS/2:
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp1397 DataExtractorSP extractor(*data); in CreateValueFromData() local
1401 new_value_sp = ValueObject::CreateValueObjectFromData(name, *extractor, in CreateValueFromData()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp5299 DataExtractor extractor(ObjectFile::getData(), true, 0); in ReadULEB128s() local
5303 while (uint64_t delta = extractor.getULEB128(&offset)) { in ReadULEB128s()
/freebsd/sys/contrib/zlib/
H A DChangeLog1381 A very simple tar.gz file extractor using zlib
/freebsd/share/dict/
H A Dweb2a5310 benzol extractor
13754 copper extractor
18018 drill extractor
18575 dust extractor
25917 grease extractor
28941 honey extractor
37919 oil extractor
60702 stump extractor
62433 tap extractor
74807 wool extractor
H A Dweb267386 extractor