Searched refs:bytes_to_str (Results 1 – 6 of 6) sorted by relevance
/system/extras/simpleperf/scripts/ |
D | simpleperf_report_lib.py | 29 from simpleperf_utils import bytes_to_str, get_host_binary_path, is_windows, str_to_bytes 43 return bytes_to_str(char_pt) 110 while length < max_len and bytes_to_str(data[offset + length]) != '\x00': 112 return bytes_to_str(data[offset: offset + length]) 118 while length < self.elem_count and bytes_to_str(data[self.offset + length]) != '\x00': 120 return bytes_to_str(data[self.offset: self.offset + length]) 392 c = bytes_to_str(char_p[j]) 411 c = bytes_to_str(char_p[i]) 433 c = bytes_to_str(data[i])
|
D | simpleperf_utils.py | 103 def bytes_to_str(bytes_value: Optional[bytes]) -> str: function 336 stdout_data = bytes_to_str(stdout_data) 337 stderr_data = bytes_to_str(stderr_data) 471 items = bytes_to_str(line).strip().split('=') 631 stdoutdata = bytes_to_str(stdoutdata) 840 stdoutdata = bytes_to_str(stdoutdata) 878 output = bytes_to_str(output) 896 output = bytes_to_str(output) 922 output = bytes_to_str(output)
|
D | app_profiler.py | 33 AdbHelper, bytes_to_str, extant_dir, get_script_dir, get_target_binary_path, log_debug, 143 line = bytes_to_str(line).strip()
|
D | report.py | 306 stdoutdata = bytes_to_str(stdoutdata)
|
/system/extras/simpleperf/scripts/test/ |
D | test_utils.py | 31 from simpleperf_utils import remove, get_script_dir, AdbHelper, is_windows, bytes_to_str 98 output = bytes_to_str(output) 173 output_data = bytes_to_str(stdout_data)
|
D | app_profiler_test.py | 20 from simpleperf_utils import str_to_bytes, bytes_to_str, remove 106 self.assertEqual(bytes_to_str(fh.read()),
|