/external/vixl/tools/ |
D | verify_assembler_traces.py | 434 trace_file 435 for trace_file in os.listdir(trace_dir) 436 if trace_file.startswith("assembler-") 439 for trace_file in trace_files: 441 print("Verifying \"" + trace_file + "\".") 442 with open(os.path.join(trace_dir, trace_file), "r") as f: 443 if "t32" in trace_file: 445 elif "a32" in trace_file: 448 raise Exception("Failed to recognize the ISA in \"" + trace_file + "\".")
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | util.py | 25 trace_file = result.source_name + GetTraceTimestamp() 26 WriteDataToCompressedFile(result.raw_data, trace_file) 27 z.write(trace_file) 28 os.unlink(trace_file)
|
D | chrome_startup_tracing_agent.py | 102 trace_file = self._trace_file.replace('/storage/emulated/0/', '/sdcard/') 103 host_file = os.path.join(os.path.curdir, os.path.basename(trace_file)) 104 self._device.PullFile(trace_file, host_file)
|
D | chrome_tracing_agent.py | 115 trace_file = self._trace_file.replace('/storage/emulated/0/', '/sdcard/') 116 host_file = os.path.join(os.path.curdir, os.path.basename(trace_file)) 118 self._device.PullFile(trace_file, host_file)
|
/external/perfetto/tools/ |
D | add_tp_diff_test.py | 84 trace_file = '' 98 trace_file = os.path.relpath(pb_path, chosen_folder_path) 110 trace_file = textproto_file 124 trace_file = python_file 140 pathlib.Path(trace_file).stem, 158 index_file.write('{} {} {}\n'.format(trace_file, sql_file, out_file))
|
D | load_tool | 114 with tempfile.NamedTemporaryFile() as trace_file: 125 perfetto_args, stdin=subprocess.PIPE, stdout=trace_file) 153 [tp_path, '-q', trace_query_file.name, trace_file.name])
|
D | heap_profile | 513 trace_file = os.path.join(profile_target, 'raw-trace') 514 concat_files = [trace_file] 553 trace_file = os.path.join(profile_target, 'symbolized-trace') 556 [trace_to_text_binary, 'profile', trace_file])
|
/external/blktrace/iowatcher/ |
D | main.c | 156 static void alloc_mpstat_gld(struct trace_file *tf) in alloc_mpstat_gld() 243 struct trace_file *tf; in add_trace_file() 259 struct trace_file *tf; in add_fio_trace_file() 276 struct trace_file *tf; in setup_trace_file_graphs() 321 struct trace_file *tf; in read_traces() 372 struct trace_file *tf; in pick_line_graph_color() 395 static void read_fio_events(struct trace_file *tf) in read_fio_events() 418 struct trace_file *tf; in read_trace_events() 501 struct trace_file *tf; in set_trace_label() 539 static void compare_minmax_tf(struct trace_file *tf, unsigned int *max_seconds, in compare_minmax_tf() [all …]
|
D | blkparse.h | 70 struct trace_file { struct 131 void add_io(struct trace *trace, struct trace_file *tf);
|
D | blkparse.c | 1019 static struct pid_map *get_pid_map(struct trace_file *tf, u32 pid) in get_pid_map() 1052 void add_io(struct trace *trace, struct trace_file *tf) in add_io()
|
/external/llvm-project/lldb/source/Target/ |
D | TraceSessionFileParser.cpp | 103 FileSpec trace_file(thread.trace_file); in ParseThread() local 104 NormalizePath(trace_file); in ParseThread() 107 std::make_shared<ThreadTrace>(*process_sp, tid, trace_file); in ParseThread() 200 return o && o.map("tid", thread.tid) && o.map("traceFile", thread.trace_file); in fromJSON()
|
/external/chromium-trace/catapult/tracing/tracing/trace_data/ |
D | trace_data.py | 149 def AddTraceFileFor(self, part, trace_file): argument 162 _, suffix = os.path.splitext(trace_file) 169 os.rename(trace_file, handle.name) 325 input_size = sum(os.path.getsize(trace_file) for trace_file in trace_files)
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | ThreadTrace.h | 34 ThreadTrace(Process &process, lldb::tid_t tid, const FileSpec &trace_file) in ThreadTrace() argument 35 : Thread(process, tid), m_trace_file(trace_file) {} in ThreadTrace()
|
D | TraceSessionFileParser.h | 42 std::string trace_file; member
|
/external/mesa3d/.gitlab-ci/tracie/ |
D | traceutil.py | 58 def trace_type_from_filename(trace_file): argument 60 if trace_file.endswith(ext):
|
/external/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
D | IntelPTDecoder.cpp | 169 const FileSpec &trace_file) { in CreateDecoderAndDecode() argument 171 MemoryBuffer::getFile(trace_file.GetPath()); in CreateDecoderAndDecode()
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/ |
D | vscode.py | 54 def read_packet(f, verbose=False, trace_file=None): argument 79 if trace_file: 80 trace_file.write('from adaptor:\n%s\n' % (json_str)) 94 packet = read_packet(vs_comm.recv, trace_file=vs_comm.trace_file) 104 self.trace_file = None 250 if self.trace_file: 251 self.trace_file.write('to adaptor:\n%s\n' % (json_str))
|
/external/tensorflow/tensorflow/python/profiler/ |
D | profiler_v2_test.py | 86 trace_file = os.path.join(profile_dir, run, hostname + '.trace.json.gz') 87 self.assertTrue(gfile.Exists(trace_file))
|
/external/perfetto/docs/quickstart/ |
D | android-tracing.md | 79 ./record_android_trace -o trace_file.perfetto-trace -t 10s -b 32mb sched gfx wm 86 python3 record_android_trace -o trace_file.perfetto-trace -t 10s -b 32mb sched gfx wm 94 adb shell perfetto -o /data/misc/perfetto-traces/trace_file.perfetto-trace -t 20s sched freq idle a… 172 ./record_android_trace -c config.pbtx -o trace_file.perfetto-trace
|
/external/minijail/tools/ |
D | generate_seccomp_policy.py | 174 with open(trace_filename, encoding='utf8') as trace_file: 175 for line in trace_file:
|
/external/autotest/server/ |
D | site_crashcollect.py | 89 with open(minidump_path + '.txt', 'w') as trace_file: 90 trace_file.write(trace_text)
|
/external/perfetto/docs/concepts/ |
D | config.md | 39 perfetto --txt -c config.pbtx -o trace_file.perfetto-trace 202 perfetto -c /path/to/config.pbtx --txt -o trace_file.perfetto-trace 232 perfetto -c config.bin -o trace_file.perfetto-trace
|
/external/perfetto/protos/perfetto/trace_processor/ |
D | trace_processor.proto | 139 // trace_processor_shell -D trace_file.pftrace .
|