Home
last modified time | relevance | path

Searched refs:GetHexMaxU64 (Results 1 – 10 of 10) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DLinuxProcMaps.cpp37 lldb::addr_t start_address = line_extractor.GetHexMaxU64(false, 0); in ParseMemoryRegionInfoFromProcMapsLine()
46 lldb::addr_t end_address = line_extractor.GetHexMaxU64(false, start_address); in ParseMemoryRegionInfoFromProcMapsLine()
108 line_extractor.GetHexMaxU64(false, 0); // Read the offset in ParseMemoryRegionInfoFromProcMapsLine()
109 line_extractor.GetHexMaxU64(false, 0); // Read the major device number in ParseMemoryRegionInfoFromProcMapsLine()
111 line_extractor.GetHexMaxU64(false, 0); // Read the major device number in ParseMemoryRegionInfoFromProcMapsLine()
/openbsd/gnu/llvm/lldb/tools/debugserver/source/
H A DStdStringExtractor.h78 uint64_t GetHexMaxU64(bool little_endian, uint64_t fail_value);
H A DStdStringExtractor.cpp197 uint64_t StdStringExtractor::GetHexMaxU64(bool little_endian, in GetHexMaxU64() function in StdStringExtractor
H A DRNBRemote.cpp3334 nub_addr_t size = packet.GetHexMaxU64(StdStringExtractor::BigEndian, 0); in HandlePacket_AllocateMemory()
3385 packet.GetHexMaxU64(StdStringExtractor::BigEndian, INVALID_NUB_ADDRESS); in HandlePacket_DeallocateMemory()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp2499 const lldb::addr_t read_addr = packet.GetHexMaxU64(false, 0); in Handle_memory_read()
2509 const uint64_t byte_count = packet.GetHexMaxU64(false, 0); in Handle_memory_read()
2656 const lldb::addr_t write_addr = packet.GetHexMaxU64(false, 0); in Handle_M()
2666 const uint64_t byte_count = packet.GetHexMaxU64(false, 0); in Handle_M()
2768 const lldb::addr_t read_addr = packet.GetHexMaxU64(false, 0); in Handle_qMemoryRegionInfo()
2885 const lldb::addr_t addr = packet.GetHexMaxU64(false, 0); in Handle_Z()
2971 const lldb::addr_t addr = packet.GetHexMaxU64(false, 0); in Handle_z()
3231 offset_data.GetHexMaxU64(false, std::numeric_limits<uint64_t>::max()); in Handle_qXfer()
3768 const size_t length = packet.GetHexMaxU64(/*little_endian=*/false, 0); in Handle_qMemTags()
3849 const size_t length = packet.GetHexMaxU64(/*little_endian=*/false, 0); in Handle_QMemTags()
[all …]
H A DGDBRemoteCommunicationClient.cpp407 packet_response.GetHexMaxU64(/*little_endian=*/false, UINT64_MAX); in GetRemoteQSupported()
734 response.GetHexMaxU64(false, LLDB_INVALID_PROCESS_ID); in GetCurrentProcessID()
1437 return response.GetHexMaxU64(false, LLDB_INVALID_ADDRESS); in AllocateMemory()
2929 return response.GetHexMaxU64(false, LLDB_INVALID_ADDRESS); in GetShlibInfoAddr()
3140 uint32_t retcode = response.GetHexMaxU64(false, UINT64_MAX); in GetFileSize()
3409 low = response.GetHexMaxU64(false, UINT64_MAX); in CalculateMD5()
3410 high = response.GetHexMaxU64(false, UINT64_MAX); in CalculateMD5()
H A DGDBRemoteCommunicationServerCommon.cpp578 size_t count = packet.GetHexMaxU64(false, SIZE_MAX); in Handle_vFile_pRead()
H A DProcessGDBRemote.cpp4639 load_addr = response.GetHexMaxU64(false, LLDB_INVALID_ADDRESS); in GetFileLoadAddress()
4700 uint64_t thread_id = threadIDHexExtractor.GetHexMaxU64(false, 0); in HarmonizeThreadIdsForProfileData()
/openbsd/gnu/llvm/lldb/include/lldb/Utility/
H A DStringExtractor.h85 uint64_t GetHexMaxU64(bool little_endian, uint64_t fail_value);
/openbsd/gnu/llvm/lldb/source/Utility/
H A DStringExtractor.cpp204 uint64_t StringExtractor::GetHexMaxU64(bool little_endian, in GetHexMaxU64() function in StringExtractor