Home
last modified time | relevance | path

Searched refs:output_filename (Results 1 – 8 of 8) 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
83 script.write("generate('''" + output_filename + "''')\n")
92 output_filename = sys.argv[1] variable
94 script_filename = output_filename + ".py"
95 script = generate_script(output_filename, input_filenames)
/art/runtime/interpreter/mterp/common/
Dgen_setup.py69 def generate(output_filename): argument
89 with open(output_filename, 'w') as output_file:
/art/runtime/jit/
Dprofile_saver.cc984 const std::string& output_filename, in Start() argument
991 DCHECK(!output_filename.empty()); in Start()
1040 instance_->AddTrackedLocations(output_filename, code_paths_to_profile, ref_profile_filename); in Start()
1044 VLOG(profiler) << "Starting profile saver using output file: " << output_filename in Start()
1049 instance_->AddTrackedLocations(output_filename, code_paths_to_profile, ref_profile_filename); in Start()
1117 static void AddTrackedLocationsToMap(const std::string& output_filename, in AddTrackedLocationsToMap() argument
1145 auto it = map->find(output_filename); in AddTrackedLocationsToMap()
1148 output_filename, in AddTrackedLocationsToMap()
1155 void ProfileSaver::AddTrackedLocations(const std::string& output_filename, in AddTrackedLocations() argument
1159 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/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc145 const char* output_filename = argv[2]; in Main() local
162 std::unique_ptr<File> output_file(OS::CreateEmptyFile(output_filename)); in Main()
164 LOG(FATAL) << "Failed to write " << output_filename; in Main()
/art/imgdiag/
Dcreate_dirty_image_objects.py172 with open(args.output_filename, 'w') as f:
/art/runtime/hprof/
Dhprof.cc432 Hprof(const char* output_filename, int fd, bool direct_to_ddms) in Hprof() argument
433 : filename_(output_filename), in Hprof()