Home
last modified time | relevance | path

Searched refs:apex_file_path (Results 1 – 4 of 4) sorted by relevance

/system/apex/apexer/
Dapexer_test.py215 def _get_container_files(self, apex_file_path): argument
218 with ZipFile(apex_file_path, 'r') as zip_obj:
254 def _extract_payload(self, apex_file_path): argument
259 apex_file_path, dir_name]
377 apex_file_path = self._extract_resource(apex_name + ".apex")
381 shutil.copyfile(apex_file_path, fn)
383 container_files = self._get_container_files(apex_file_path)
384 payload_dir = self._extract_payload(apex_file_path)
387 self.assertEqual(get_sha1sum(apex_file_path), get_sha1sum(resigned_apex_file_path))
399 apex_file_path = self._extract_resource(TEST_APEX + ".apex")
[all …]
/system/apex/tools/
Dapex_compression_test.py172 def _get_container_files(self, apex_file_path): argument
176 with ZipFile(apex_file_path, 'r') as zip_obj:
252 def _get_type(self, apex_file_path): argument
253 cmd = ['deapexer', 'info', '--print-type', apex_file_path]
/system/apex/tests/testdata/sharedlibs/build/
Dshared_libs_repack.py134 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)
/system/apex/apexd/
Dapexd.cpp1270 std::string& apex_file_path = (*scan)[0]; in ScanApexFilesInSessionDirs() local
1271 apex_file_paths.push_back(std::move(apex_file_path)); in ScanApexFilesInSessionDirs()