Home
last modified time | relevance | path

Searched refs:GetHexMaxU32 (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
DStringExtractor.h83 uint32_t GetHexMaxU32(bool little_endian, uint32_t fail_value);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerCommon.cpp508 auto flags = File::OpenOptions(packet.GetHexMaxU32(false, 0)); in Handle_vFile_Open()
510 mode_t mode = packet.GetHexMaxU32(false, 0600); in Handle_vFile_Open()
791 mode_t mode = packet.GetHexMaxU32(false, UINT32_MAX); in Handle_qPlatform_mkdir()
811 static_cast<llvm::sys::fs::perms>(packet.GetHexMaxU32(false, UINT32_MAX)); in Handle_qPlatform_chmod()
DGDBRemoteCommunicationServerLLGS.cpp1451 packet.GetHexMaxU32(false, std::numeric_limits<uint32_t>::max()); in Handle_C()
1609 thread_action.signal = packet.GetHexMaxU32(false, 0); in Handle_vCont()
1621 thread_action.signal = packet.GetHexMaxU32(false, 0); in Handle_vCont()
1754 packet.GetHexMaxU32(false, std::numeric_limits<uint32_t>::max()); in Handle_qRegisterInfo()
1938 packet.GetHexMaxU32(false, std::numeric_limits<uint32_t>::max()); in Handle_p()
2018 packet.GetHexMaxU32(false, std::numeric_limits<uint32_t>::max()); in Handle_P()
2659 packet.GetHexMaxU32(false, std::numeric_limits<uint32_t>::max()); in Handle_Z()
DGDBRemoteCommunicationServerPlatform.cpp418 const bool only_dir = (packet.GetHexMaxU32(false, 0) == 1); in Handle_qPathComplete()
DGDBRemoteCommunicationClient.cpp2924 uint32_t exitcode = response.GetHexMaxU32(false, UINT32_MAX); in RunShellCommand()
2931 uint32_t signo = response.GetHexMaxU32(false, UINT32_MAX); in RunShellCommand()
3129 uint32_t retcode = response.GetHexMaxU32(false, UINT32_MAX); in ReadFile()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DStringExtractor.cpp155 uint32_t StringExtractor::GetHexMaxU32(bool little_endian, in GetHexMaxU32() function in StringExtractor