/external/llvm-project/lldb/unittests/Utility/ |
D | DataExtractorTest.cpp | 70 TEST(DataExtractorTest, GetCStr) { in TEST() argument 75 EXPECT_STREQ("foo", E.GetCStr(&offset)); in TEST() 84 EXPECT_STREQ("", E.GetCStr(&offset)); in TEST() 93 EXPECT_EQ(nullptr, E.GetCStr(&offset)); in TEST() 102 EXPECT_EQ(nullptr, E.GetCStr(&offset)); in TEST() 111 EXPECT_STREQ("foo", E.GetCStr(&offset)); in TEST()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugMacro.cpp | 76 macro_str = debug_macro_data.GetCStr(offset); in ReadMacroEntries() 91 macro_str = debug_str_data.GetCStr(&str_offset); in ReadMacroEntries()
|
D | DWARFFormValue.cpp | 71 m_value.value.cstr = data.GetCStr(offset_ptr); in ExtractValue() 239 debug_info_data.GetCStr(offset_ptr); in SkipValue()
|
D | DWARFDebugInfoEntry.cpp | 100 data.GetCStr(&offset); in Extract()
|
/external/llvm-project/lldb/source/Host/openbsd/ |
D | Host.cpp | 72 cstr = data.GetCStr(&offset); in GetOpenBSDProcessArgs() 93 cstr = data.GetCStr(&offset); in GetOpenBSDProcessArgs()
|
/external/llvm-project/lldb/source/Host/freebsd/ |
D | Host.cpp | 67 cstr = data.GetCStr(&offset); in GetFreeBSDProcessArgs() 97 cstr = data.GetCStr(&offset); in GetFreeBSDProcessArgs()
|
/external/llvm-project/lldb/source/Host/netbsd/ |
D | HostNetBSD.cpp | 69 cstr = data.GetCStr(&offset); in GetNetBSDProcessArgs() 93 cstr = data.GetCStr(&offset); in GetNetBSDProcessArgs()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | DataExtractor.h | 280 const char *GetCStr(lldb::offset_t *offset_ptr) const; 303 const char *GetCStr(lldb::offset_t *offset_ptr, lldb::offset_t len) const;
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | DNBDataRef.h | 98 const char *GetCStr(offset_t *offset_ptr, uint32_t fixed_length = 0) const;
|
D | DNBDataRef.cpp | 150 const char *DNBDataRef::GetCStr(offset_t *offset_ptr, in GetCStr() function in DNBDataRef
|
D | RNBRemote.cpp | 6411 cstr = data.GetCStr(&offset); in HandlePacket_qProcessInfo() 6422 data.GetCStr(&offset); in HandlePacket_qProcessInfo() 6426 while ((cstr = data.GetCStr(&offset))) { in HandlePacket_qProcessInfo()
|
/external/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/ |
D | SystemRuntimeMacOSX.cpp | 925 const char *queue_label = extractor.GetCStr(&offset); in PopulateQueuesUsingLibBTR() 971 item.enqueuing_thread_label = extractor.GetCStr(&offset); in ExtractItemInfoFromBuffer() 972 item.enqueuing_queue_label = extractor.GetCStr(&offset); in ExtractItemInfoFromBuffer() 973 item.target_queue_label = extractor.GetCStr(&offset); in ExtractItemInfoFromBuffer()
|
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | CommunicationKDP.cpp | 849 const char *path = packet.GetCStr(&offset); in DumpPacket() 899 reply_port, exc_port, packet.GetCStr(&offset)); in DumpPacket() 1009 const char *path = packet.GetCStr(&offset); in DumpPacket()
|
/external/llvm-project/lldb/source/Utility/ |
D | DataExtractor.cpp | 787 const char *DataExtractor::GetCStr(offset_t *offset_ptr) const { in GetCStr() function in DataExtractor 817 const char *DataExtractor::GetCStr(offset_t *offset_ptr, offset_t len) const { in GetCStr() function in DataExtractor
|
/external/llvm-project/lldb/source/Plugins/Process/elf-core/ |
D | ProcessElfCore.cpp | 552 thread_data.name = note.data.GetCStr(&offset, 20); in parseFreeBSDNotes() 837 const char *path = note.data.GetCStr(&offset); in parseLinuxNotes()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
D | ObjectFileELF.cpp | 235 const char *cstr = data.GetCStr(offset, llvm::alignTo(n_namesz, 4)); in Parse() 1207 cstr = data.GetCStr(&offset); in RefineModuleDetailsFromNote() 1246 llvm::StringRef VendorName = data.GetCStr(&Offset); in ParseARMAttributes() 1271 data.GetCStr(&Offset); in ParseARMAttributes() 1277 data.GetCStr(&Offset); in ParseARMAttributes() 1490 gnu_debuglink_file = data.GetCStr(&gnu_debuglink_offset); in GetSectionHeaderInfo()
|
/external/llvm-project/lldb/source/Core/ |
D | DumpDataExtractor.cpp | 418 const char *cstr = DE.GetCStr(&offset); in DumpDataExtractor()
|
/external/llvm-project/lldb/source/Host/macosx/objcxx/ |
D | Host.mm | 509 const char *cstr = data.GetCStr(&offset); 528 cstr = data.GetCStr(&offset); 534 while ((cstr = data.GetCStr(&offset))) {
|
/external/llvm-project/lldb/source/API/ |
D | SBData.cpp | 320 value = m_opaque_sp->GetCStr(&offset); in GetString()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/ |
D | ObjectFilePECOFF.cpp | 588 if (const char *name = m_data.GetCStr(&string_file_offset)) in GetSectionName()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 1985 import_name = data.GetCStr(&offset); in ParseTrieEntries() 2040 const char *cstr = data.GetCStr(&children_offset); in ParseTrieEntries()
|