Home
last modified time | relevance | path

Searched refs:output_filename (Results 1 – 7 of 7) sorted by relevance

/art/tools/checker/
Dchecker.py52 def list_passes(output_filename): argument
53 c1_file = parse_c1_visualizer_stream(output_filename, open(output_filename, "r"))
58 def dump_pass(output_filename, pass_name): argument
59 c1_file = parse_c1_visualizer_stream(output_filename, open(output_filename, "r"))
93 def run_tests(check_prefix, check_path, output_filename, target_arch, debuggable_mode, print_cfg): argument
94 c1_file = parse_c1_visualizer_stream(output_filename, open(output_filename, "r"))
/art/runtime/interpreter/mterp/
Dgen_mterp.py55 def generate_script(output_filename, input_filenames): argument
82 script.write("generate('''" + output_filename + "''')\n")
91 output_filename = sys.argv[1] variable
93 script_filename = output_filename + ".py"
94 script = generate_script(output_filename, input_filenames)
/art/runtime/interpreter/mterp/common/
Dgen_setup.py67 def generate(output_filename): argument
88 with open(output_filename, 'w') as output_file:
/art/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc147 const char* output_filename = argv[2]; in Main() local
164 std::unique_ptr<File> output_file(OS::CreateEmptyFile(output_filename)); in Main()
166 LOG(FATAL) << "Failed to write " << output_filename; in Main()
/art/runtime/jit/
Dprofile_saver.cc1017 const std::string& output_filename, in Start() argument
1024 DCHECK(!output_filename.empty()); in Start()
1073 instance_->AddTrackedLocations(output_filename, code_paths_to_profile, ref_profile_filename); in Start()
1077 VLOG(profiler) << "Starting profile saver using output file: " << output_filename in Start()
1082 instance_->AddTrackedLocations(output_filename, code_paths_to_profile, ref_profile_filename); in Start()
1150 static void AddTrackedLocationsToMap(const std::string& output_filename, in AddTrackedLocationsToMap() argument
1178 auto it = map->find(output_filename); in AddTrackedLocationsToMap()
1181 output_filename, in AddTrackedLocationsToMap()
1188 void ProfileSaver::AddTrackedLocations(const std::string& output_filename, in AddTrackedLocations() argument
1192 auto it = tracked_profiles_.find(output_filename); in AddTrackedLocations()
[all …]
Dprofile_saver.h38 const std::string& output_filename,
96 void AddTrackedLocations(const std::string& output_filename,
/art/runtime/hprof/
Dhprof.cc437 Hprof(const char* output_filename, int fd, bool direct_to_ddms) in Hprof() argument
438 : filename_(output_filename), in Hprof()