Searched refs:hex_str (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | gdbremote.py | 372 def get_value_from_hex_string(self, hex_str): argument 376 packet = Packet(hex_str) 533 hex_str = self.str[0:n] 535 return hex_str 539 hex_str = self.get_hex_chars(n) 540 if hex_str is None: 542 return int(hex_str, 16)
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | Args.cpp | 521 char hex_str[3] = {*p, '\0', '\0'}; in EncodeEscapeSequences() local 524 hex_str[1] = *p; in EncodeEscapeSequences() 527 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in EncodeEscapeSequences()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 2138 char hex_str[3] = {0, 0, 0}; in ParseInternal() local 2139 hex_str[0] = format[0]; in ParseInternal() 2144 hex_str[1] = format[0]; in ParseInternal() 2148 unsigned long hex_value = strtoul(hex_str, nullptr, 16); in ParseInternal()
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | RNBRemote.cpp | 2545 std::string hex_str; in cstring_to_asciihex_string() local 2546 hex_str.reserve (strlen (str) * 2); in cstring_to_asciihex_string() 2551 hex_str += hexbuf; in cstring_to_asciihex_string() 2553 return hex_str; in cstring_to_asciihex_string()
|