Searched refs:bytes_to_str (Results 1 – 6 of 6) sorted by relevance
/system/extras/simpleperf/scripts/ |
D | simpleperf_report_lib.py | 30 from simpleperf_utils import (bytes_to_str, get_host_binary_path, is_windows, log_exit, 45 return bytes_to_str(char_pt) 116 while length < max_len and bytes_to_str(data[offset + length]) != '\x00': 118 return bytes_to_str(data[offset: offset + length]) 124 while length < self.elem_count and bytes_to_str(data[self.offset + length]) != '\x00': 126 return bytes_to_str(data[self.offset: self.offset + length]) 493 c = bytes_to_str(char_p[j]) 512 c = bytes_to_str(char_p[i]) 534 c = bytes_to_str(data[i])
|
D | simpleperf_utils.py | 66 def bytes_to_str(bytes_value: Optional[bytes]) -> str: function 296 stdout_data = bytes_to_str(stdout_data) 297 stderr_data = bytes_to_str(stderr_data) 436 items = bytes_to_str(line).strip().split('=') 615 stdoutdata = bytes_to_str(stdoutdata) 851 stdoutdata = bytes_to_str(stdoutdata) 961 output = bytes_to_str(output) 981 output = bytes_to_str(output) 1017 output = bytes_to_str(output)
|
D | app_profiler.py | 34 AdbHelper, BaseArgumentParser, bytes_to_str, extant_dir, get_script_dir, get_target_binary_path, 146 line = bytes_to_str(line).strip()
|
D | report.py | 307 stdoutdata = bytes_to_str(stdoutdata)
|
/system/extras/simpleperf/scripts/test/ |
D | test_utils.py | 32 from simpleperf_utils import remove, get_script_dir, AdbHelper, is_windows, bytes_to_str 99 output = bytes_to_str(output) 184 output_data = bytes_to_str(stdout_data)
|
D | app_profiler_test.py | 22 from simpleperf_utils import str_to_bytes, bytes_to_str, remove 115 self.assertEqual(bytes_to_str(fh.read()),
|