Searched refs:GetBytesLeft (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | StringExtractorTest.cpp | 18 ASSERT_EQ(0u, ex.GetBytesLeft()); in TEST_F() 42 ASSERT_EQ(0u, ex.GetBytesLeft()); in TEST_F() 52 ASSERT_EQ(1u, ex.GetBytesLeft()); in TEST_F() 63 ASSERT_EQ(2u, ex.GetBytesLeft()); in TEST_F() 74 ASSERT_EQ(2u, ex.GetBytesLeft()); in TEST_F() 85 ASSERT_EQ(0u, ex.GetBytesLeft()); in TEST_F() 96 ASSERT_EQ(2u, ex.GetBytesLeft()); in TEST_F() 108 ASSERT_EQ(0u, ex.GetBytesLeft()); in TEST_F() 119 ASSERT_EQ(0u, ex.GetBytesLeft()); in TEST_F() 130 ASSERT_EQ(0u, ex.GetBytesLeft()); in TEST_F() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 2244 if (packet.GetBytesLeft() < 1) in Handle_P() 2488 if (packet.GetBytesLeft() < 1) in Handle_memory_read() 2501 if (packet.GetBytesLeft() < 1) in Handle_memory_read() 2568 if (packet.GetBytesLeft() < 1) in Handle__M() 2617 if (packet.GetBytesLeft() < 1) in Handle__m() 2645 if (packet.GetBytesLeft() < 1) in Handle_M() 2658 if (packet.GetBytesLeft() < 1) in Handle_M() 3538 if (packet.GetBytesLeft()) { in Handle_D() 3777 packet.GetBytesLeft()) { in Handle_qMemTags() 3877 if (packet.GetBytesLeft()) { in Handle_QMemTags() [all …]
|
| H A D | GDBRemoteCommunicationServerCommon.cpp | 980 const uint32_t bytes_left = packet.GetBytesLeft(); in Handle_QEnvironment() 992 const uint32_t bytes_left = packet.GetBytesLeft(); in Handle_QEnvironmentHexEncoded() 1006 const uint32_t bytes_left = packet.GetBytesLeft(); in Handle_QLaunchArch() 1029 while (success && packet.GetBytesLeft() > 0) { in Handle_A() 1059 if (packet.GetBytesLeft()) { in Handle_A()
|
| H A D | ProcessGDBRemote.cpp | 2228 const size_t byte_size = bytes.GetBytesLeft() / 2; in SetThreadStopInfo() 2553 size_t data_received_size = response.GetBytesLeft(); in DoReadMemory() 3556 if (response.GetBytesLeft() > 0 && response.GetChar('-') == ';') { in AsyncThread()
|
| H A D | GDBRemoteCommunicationClient.cpp | 645 size_t expected_bytes = response.GetBytesLeft() / 2; in ReadMemoryTags() 650 if (response.GetBytesLeft() || (expected_bytes != got_bytes)) { in ReadMemoryTags()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | LinuxProcMaps.cpp | 39 if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != '-')) in ParseMemoryRegionInfoFromProcMapsLine() 48 if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != ' ')) in ParseMemoryRegionInfoFromProcMapsLine() 61 if (line_extractor.GetBytesLeft() < 4) in ParseMemoryRegionInfoFromProcMapsLine()
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | StdStringExtractor.cpp | 53 if (GetBytesLeft() < 2) { in DecodeHexU8() 252 while (bytes_extracted < dst_len && GetBytesLeft()) { in GetHexBytes() 285 str.reserve(GetBytesLeft() / 2); in GetHexByteString()
|
| H A D | StdStringExtractor.h | 45 size_t GetBytesLeft() { in GetBytesLeft() function
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | StringExtractor.cpp | 60 if (GetBytesLeft() < 2) { in DecodeHexU8() 267 while (!dest.empty() && GetBytesLeft() > 0) { in GetHexBytes() 300 str.reserve(GetBytesLeft() / 2); in GetHexByteString()
|
| H A D | StringExtractorGDBRemote.cpp | 520 const size_t bytes_left = GetBytesLeft(); in GetEscapedBinaryData()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | StringExtractor.h | 52 size_t GetBytesLeft() { in GetBytesLeft() function
|