Home
last modified time | relevance | path

Searched refs:trace_file (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dtrace.cc345 UniquePtr<File> trace_file; in Start() local
348 trace_file.reset(OS::CreateEmptyFile(trace_filename)); in Start()
350 trace_file.reset(new File(trace_fd, "tracefile")); in Start()
351 trace_file->DisableAutoClose(); in Start()
353 if (trace_file.get() == NULL) { in Start()
368 the_trace_ = new Trace(trace_file.release(), buffer_size, flags, sampling_enabled); in Start()
446 Trace::Trace(File* trace_file, int buffer_size, int flags, bool sampling_enabled) in Trace() argument
447 : trace_file_(trace_file), buf_(new uint8_t[buffer_size]()), flags_(flags), in Trace()
Dtrace.h98 explicit Trace(File* trace_file, int buffer_size, int flags, bool sampling_enabled);