Home
last modified time | relevance | path

Searched refs:run_command (Results 1 – 3 of 3) sorted by relevance

/xnu-11215/tools/lldbmacros/tests/lldb_tests/
H A Dtest_scripted_process.py55 res = self.run_command(f'x/s {RAWMOCK_ADDR:#x}')
72 res = self.run_command(f'x/s {RAWMOCK_ADDR:#x}')
90 res = self.run_command(f'x/s {addr}')
114 res = self.run_command(f'p/x *((uint32_t *){UINT_ADDR:#x})')
228 res = self.run_command(f'p/x ((proc_t){ARRAY_ADDR:#x})[1].p_comm')
335 res = self.run_command(f'p/x ((proc_t){PROC_ADDR:#x})->p_comm')
343 res = self.run_command(f'p/x ((proc_t){PROC_ADDR:#x})->p_comm')
H A Dtest_examples.py119 res = self.run_command(f'p/x ((proc_t){PROC_ADDR:#x})->p_comm')
/xnu-11215/tools/lldbmacros/tests/lldbtest/
H A Dtestcase.py102 def run_command(self, command: str) -> lldb.SBCommandReturnObject: member in LLDBTestCase