Searched refs:apex_file_path (Results 1 – 3 of 3) sorted by relevance
/system/apex/apexer/ |
D | apexer_test.py | 210 def _get_container_files(self, apex_file_path): argument 213 with ZipFile(apex_file_path, 'r') as zip_obj: 249 def _extract_payload(self, apex_file_path): argument 253 "extract", apex_file_path, dir_name] 369 apex_file_path = os.path.join(get_current_dir(), apex_name + ".apex") 373 shutil.copyfile(apex_file_path, fn) 375 container_files = self._get_container_files(apex_file_path) 376 payload_dir = self._extract_payload(apex_file_path) 379 self.assertEqual(get_sha1sum(apex_file_path), get_sha1sum(resigned_apex_file_path)) 391 apex_file_path = os.path.join(get_current_dir(), TEST_APEX + ".apex") [all …]
|
/system/apex/tools/ |
D | apex_compression_test.py | 163 def _get_container_files(self, apex_file_path): argument 167 with ZipFile(apex_file_path, 'r') as zip_obj: 242 def _get_type(self, apex_file_path): argument 243 cmd = ['deapexer', 'info', '--print-type', apex_file_path]
|
/system/apex/tests/testdata/sharedlibs/build/ |
D | shared_libs_repack.py | 134 def get_container_files(apex_file_path, tmpdir): argument 136 with ZipFile(apex_file_path, 'r') as zip_obj: 276 apex_file_path = args.input 278 container_files = get_container_files(apex_file_path, args.tmpdir)
|