Home
last modified time | relevance | path

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

/system/extras/cppreopts/
Dcppreopts.sh22 source_file=$1
27 if ! cp ${source_file} ${temp_dest_name} ; then
28 log -p w -t cppreopts "Unable to copy file ${source_file} to ${temp_dest_name}!"
30 log -p i -t cppreopts "Copied file from ${source_file} to ${temp_dest_name}"
/system/extras/simpleperf/scripts/
Dreport_html.py472 source_file = self.path_to_source_files.get(file_path)
473 if source_file is None:
474 source_file = SourceFile(len(self.path_to_source_files), file_path)
475 self.path_to_source_files[file_path] = source_file
476 return source_file
480 for source_file in self.path_to_source_files.values():
481 real_path = file_searcher.get_real_path(source_file.abstract_path)
483 source_file.add_source_code(real_path)
708 source_file = self.source_files.get_source_file(start_file_path)
709 source_file.request_lines(start_line, end_line)
[all …]
Dbinary_cache_builder.py132 def _need_to_copy(self, source_file, target_file, expected_build_id): argument
137 return self._get_file_stripped_level(source_file) < self._get_file_stripped_level(
Dpprof_proto_generator.py522 source_file, source_line, function_name = source
529 location.lines.append(self.add_line(source_file, source_line, function_id))
539 source_file, source_line, _ = sources[0]
540 function.source_filename_id = self.get_string_id(source_file)
543 def add_line(self, source_file, source_line, function_id): argument
546 function.source_filename_id = self.get_string_id(source_file)
Dtest.py1527 source_file = os.path.join(symfs_dir, filename)
1535 self.run_cmd([strip, '--strip-all', '-o', source_file, origin_file])
1537 self.assertTrue(filecmp.cmp(target_file, source_file))
1540 self.run_cmd([strip, '--strip-debug', '-o', source_file, origin_file])
1542 self.assertTrue(filecmp.cmp(target_file, source_file))
1545 shutil.copy(origin_file, source_file)
1547 self.assertTrue(filecmp.cmp(target_file, source_file))
1553 source_file = os.path.join(symfs_dir, 'elf')
1556 self.assertTrue(filecmp.cmp(target_file, source_file))
1558 self.assertTrue(filecmp.cmp(target_file, source_file))
Dannotate.py71 for (source_file, source_line, function_name) in source:
72 source_file_path = self.source_searcher.get_real_path(source_file)
74 source_file_path = source_file
/system/bt/test/
Dgen_coverage.py181 source_file = os.path.join(os.path.join(WORKING_DIR, tests[0]['test_name']), "style.css")
183 shutil.copy2(source_file, dest_file)