HomeSort by relevance Sort by last modified time
    Searched refs:trace_file (Results 26 - 43 of 43) sorted by null

12

  /art/runtime/
trace.cc 342 std::unique_ptr<File> trace_file; local
345 trace_file.reset(OS::CreateEmptyFileWriteOnly(trace_filename));
347 trace_file.reset(new File(trace_fd, "tracefile"));
348 trace_file->DisableAutoClose();
350 if (trace_file.get() == nullptr) {
375 the_trace_ = new Trace(trace_file.release(), trace_filename, buffer_size, flags, output_mode,
598 Trace::Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
600 : trace_file_(trace_file),
    [all...]
trace.h 215 Trace(File* trace_file, const char* trace_name, size_t buffer_size, int flags,
runtime.cc 192 std::string trace_file; member in struct:art::TraceConfig
841 if (trace_config_.get() != nullptr && trace_config_->trace_file != "") {
843 Trace::Start(trace_config_->trace_file.c_str(),
    [all...]
  /external/autotest/server/
site_crashcollect.py 89 with open(minidump_path + '.txt', 'w') as trace_file:
90 trace_file.write(trace_text)
  /test/vts/utils/python/profiling/
profiling_utils.py 193 def _ParseTraceData(self, trace_file):
194 """Parses the data stored in trace_file, calculates the avg/max/min
198 trace_file: file that stores the trace data.
215 (trace_processor_lib, trace_processor_binary, trace_file)
  /external/fio/t/
btrace2fio.c 43 struct trace_file { struct
78 struct trace_file *files;
277 struct trace_file *f;
778 p->files = malloc(sizeof(struct trace_file));
1034 static int trace_needs_swap(const char *trace_file, int *swap)
1041 fd = open(trace_file, O_RDONLY);
  /external/trappy/trappy/
ftrace.py 72 trace_file = self.trace_path
73 cache_dir = '.' + os.path.basename(trace_file) + '.cache'
74 tracefile_dir = os.path.dirname(os.path.abspath(trace_file))
359 def __parse_trace_file(self, trace_file):
376 with open(trace_file) as fin:
382 trace_file, str(e)))
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_framework.cc 584 FILE* trace_file = fopen(filename.c_str(), "r"); local
585 if (!trace_file) {
589 while (!feof(trace_file)) {
592 if (fgets(line, kMaxLineLength, trace_file)) {
607 fclose(trace_file);
  /external/lisa/libs/utils/android/
system.py 45 def systrace_start(target, trace_file, time=None,
92 trace_file, " ".join(events), buffsize)
  /external/lisa/tools/analysis/
runnable.py 32 parser.add_argument('--trace', dest='trace_file', action='store', required=True,
55 path_to_html = args.trace_file
runtime.py 39 parser.add_argument('--trace', dest='trace_file', action='store', required=True,
62 path_to_html = args.trace_file
  /system/extras/boottime_tools/bootanalyze/
bootanalyze.py 809 trace_file = systrace_file_name + "_trace.txt"
810 with open(trace_file, 'w') as f:
812 run_adb_shell_cmd_as_root("cat /d/tracing/trace >> " + trace_file)
814 subprocess.call("./external/chromium-trace/systrace.py --from-file=" + trace_file + " -o " +\
  /external/lisa/libs/utils/
executor.py 704 trace_file = experiment.out_dir + '/trace.dat'
705 self.te.ftrace.get_trace(trace_file)
708 trace_file.replace(self.te.res_dir, '<res_dir>'))
  /external/v8/src/
deoptimizer.h 308 FILE* trace_file);
316 FILE* trace_file);
322 FILE* trace_file);
    [all...]
d8.cc 2880 std::ofstream trace_file; local
    [all...]
  /external/v8/tools/
ll_prof.py 590 self.trace_file = open(trace_name, "r")
591 self.trace = mmap.mmap(self.trace_file.fileno(), 0, mmap.MAP_PRIVATE)
653 self.trace_file.close()
    [all...]
  /frameworks/native/cmds/atrace/
atrace.cpp 1111 static const std::string trace_file = "trace_marker"; local
    [all...]
  /test/vts-testcase/hal/script/configure/
test_case_creator.py 453 trace_file=trace)
573 TEST_TRACE_TEMPLATE = 'test/vts-testcase/hal-trace/{hal_path}/{hal_version}/{trace_file}'

Completed in 374 milliseconds

12