Searched refs:output_filename (Results 1 – 5 of 5) sorted by relevance
/art/runtime/jit/ |
D | profile_saver.h | 31 static void Start(const std::string& output_filename, 64 ProfileSaver(const std::string& output_filename, 89 void AddTrackedLocations(const std::string& output_filename,
|
D | profile_saver.cc | 51 ProfileSaver::ProfileSaver(const std::string& output_filename, in ProfileSaver() argument 76 AddTrackedLocations(output_filename, app_data_dir, code_paths); in ProfileSaver() 388 void ProfileSaver::Start(const std::string& output_filename, in Start() argument 394 DCHECK(!output_filename.empty()); in Start() 416 instance_->AddTrackedLocations(output_filename, app_data_dir, code_paths_to_profile); in Start() 420 VLOG(profiler) << "Starting profile saver using output file: " << output_filename in Start() 423 instance_ = new ProfileSaver(output_filename, in Start() 486 void ProfileSaver::AddTrackedLocations(const std::string& output_filename, in AddTrackedLocations() argument 489 auto it = tracked_dex_base_locations_.find(output_filename); in AddTrackedLocations() 491 tracked_dex_base_locations_.Put(output_filename, in AddTrackedLocations()
|
/art/runtime/ |
D | profiler.h | 170 static bool Start(const std::string& output_filename, const ProfilerOptions& options) 192 const std::string& output_filename, const ProfilerOptions& options);
|
D | profiler.cc | 329 const std::string& output_filename, const ProfilerOptions& options) { in Start() argument 334 CHECK(!output_filename.empty()); in Start() 345 LOG(INFO) << "Starting profiler using output file: " << output_filename in Start() 349 profiler_ = new BackgroundMethodSamplingProfiler(output_filename, options); in Start() 392 const std::string& output_filename, const ProfilerOptions& options) in BackgroundMethodSamplingProfiler() argument 393 : output_filename_(output_filename), in BackgroundMethodSamplingProfiler()
|
/art/runtime/hprof/ |
D | hprof.cc | 419 Hprof(const char* output_filename, int fd, bool direct_to_ddms) in Hprof() argument 420 : filename_(output_filename), in Hprof()
|