Searched refs:max_bytes (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxx.cpp | 793 const llvm::Optional<uint64_t> max_bytes = in ExtractLibcxxStringInfo() local 796 if (!max_bytes || size > *max_bytes || !location_sp) in ExtractLibcxxStringInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | CommunicationKDP.cpp | 844 const uint32_t max_bytes = packet.GetU32(&offset); in DumpPacket() local 845 s.Printf(" (max_bytes = 0x%8.8x (%u))", max_bytes, max_bytes); in DumpPacket()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ValueObject.cpp | 746 auto max_bytes = in GetPointeeData() local 748 if (max_bytes && *max_bytes > offset) { in GetPointeeData() 749 size_t bytes_read = std::min<uint64_t>(*max_bytes - offset, bytes); in GetPointeeData()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Target.cpp | 1947 size_t max_bytes, Status &error, in ReadStringFromMemory() argument 1949 if (!dst || !max_bytes || !type_width || max_bytes < type_width) in ReadStringFromMemory() 1956 memset(dst, 0, max_bytes); in ReadStringFromMemory() 1957 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | Target.h | 1073 size_t ReadStringFromMemory(const Address &addr, char *dst, size_t max_bytes,
|