Searched refs:hex_str (Results 1 – 3 of 3) sorted by relevance
/external/lldb/examples/python/ |
D | gdbremote.py | 292 def get_value_from_hex_string(self, hex_str): argument 296 packet = Packet(hex_str) 415 hex_str = self.str[0:n] 417 return hex_str 421 hex_str = self.get_hex_chars(n) 422 if hex_str == None: 424 return int(hex_str, 16)
|
/external/lldb/source/Interpreter/ |
D | Args.cpp | 1721 char hex_str[3] = { *p, '\0', '\0' }; in EncodeEscapeSequences() local 1725 hex_str[1] = *p; in EncodeEscapeSequences() 1728 unsigned long hex_value = strtoul (hex_str, NULL, 16); in EncodeEscapeSequences()
|
/external/lldb/source/Core/ |
D | Debugger.cpp | 2566 char hex_str[3] = { 0,0,0 }; in FormatPromptRecurse() local 2567 hex_str[0] = *p; in FormatPromptRecurse() 2571 hex_str[1] = *p; in FormatPromptRecurse() 2574 unsigned long hex_value = strtoul (hex_str, NULL, 16); in FormatPromptRecurse()
|