Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/
H A DTestPlatformClient.py10 def hexlify(string): function
11 return binascii.hexlify(string.encode()).decode()
27 name = hexlify("/a/test_process")
28 args = "-".join(map(hexlify,
39 name = hexlify("/b/another_test_process")
41 args = "X".join(map(hexlify,
78 return hexlify("/foo/bar")
H A DTestGDBRemoteClient.py55 return "E42;" + binascii.hexlify(error_msg.encode()).decode()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/support/
H A Dseven.py50 def hexlify(data): function
52 return bitcast_to_string(binascii.hexlify(bitcast_to_bytes(data)))
/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/
H A DTestGdbRemoteFork.py331 seven.hexlify(
H A DTestLldbGdbServer.py1038 hex_encoded_message = seven.hexlify(TEST_MESSAGE)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
H A Dvscode.py19 hex_string = binascii.hexlify(data)