Home
last modified time | relevance | path

Searched refs:to_string (Results 1 – 8 of 8) sorted by relevance

/tools/security/gdb/heap_print/test/
Dtest_heap_print_script.py51 n_str = gdb.execute("print n", to_string=True)
54 "print_ptr malloc_ptr", to_string=True)
63 new_n = gdb.execute("print new_n", to_string=True)
65 malloc_ptr_str = gdb.execute("print_ptr malloc_ptr", to_string=True)
79 new_n = gdb.execute("print new_n", to_string=True)
82 "print_ptr malloc_ptr + {}".format(offset), to_string=True)
90 malloc_ptr_str = gdb.execute("print_ptr malloc_ptr", to_string=True)
98 n_str = gdb.execute("print n", to_string=True)
100 new_ptr_array_str = gdb.execute("print_ptr new_ptr", to_string=True)
107 new_ptr_array_str = gdb.execute("print_ptr new_ptr", to_string=True)
/tools/security/gdb/heap_print/
Dheap_print_script.py6 'p/d {}'.format(address), to_string=True)
119 func_args_string = gdb.execute('info args', to_string=True)
137 func_args_string = gdb.execute('info args', to_string=True)
156 func_args_string = gdb.execute('info args', to_string=True)
203 'p/x {}'.format(value), to_string=True)
228 'x/1bx {}'.format(address), to_string=True)
/tools/security/gdb/
Dparameters_extract.py101 gdb.execute('r > init.log 2>&1',from_tty=True, to_string=True)
198 to_string=True).split(' = ')[1].strip()
201 to_string=True).strip().split(" ")[0], 16)
211 args = gdb.execute('info args -q', to_string=True).strip()
/tools/carrier_settings/python/
Dupdate_apn.py46 def to_string(cid): function
71 name = to_string(cid)
94 ret[to_string(cid)] = carriermap.canonical_name
Dupdate_carrier_data.py111 def to_string(cid): function
176 ret[to_string(cid)] = carriermap.canonical_name
330 carrier_id_str_of_mccmnc = to_string(carrier_id)
/tools/security/fuzzing/system_fuzzers/libwatchdog_perf_service/
Dlibwatchdog_perf_service_fuzzer.cpp48 uidIoStatsSnapshot += (((count % 11) == 0 ? "" : " ") + std::to_string(val)); in LLVMFuzzerTestOneInput()
73 procStatsSnapshot += " " + std::to_string(val); in LLVMFuzzerTestOneInput()
/tools/security/gdb/gdb_json_printer/test/
Dgdb_json_printer_test.py46 variable = gdb.execute("p {}".format(variable_name), to_string=True)
/tools/security/gdb/gdb_json_printer/gdb_json_printer/
Dprinters.py106 def to_string(self): member in JsonPrinter