Searched refs:output_filename (Results 1 – 7 of 7) sorted by relevance
/art/tools/checker/ |
D | checker.py | 52 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/ |
D | gen_mterp.py | 55 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/ |
D | gen_setup.py | 67 def generate(output_filename): argument 88 with open(output_filename, 'w') as output_file:
|
/art/tools/create_minidebuginfo/ |
D | create_minidebuginfo.cc | 147 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/ |
D | profile_saver.cc | 1017 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 …]
|
D | profile_saver.h | 38 const std::string& output_filename, 96 void AddTrackedLocations(const std::string& output_filename,
|
/art/runtime/hprof/ |
D | hprof.cc | 437 Hprof(const char* output_filename, int fd, bool direct_to_ddms) in Hprof() argument 438 : filename_(output_filename), in Hprof()
|