• Home
  • Raw
  • Download

Lines Matching full:path

29 TEST_PRIVATE_KEY = os.path.join('testdata', 'com.android.example.apex.pem')
81 if os.path.isdir(i):
99 extract_dir = os.path.join(apex_dir, 'payload_extract')
105 lost_and_found = os.path.join(extract_dir, 'lost+found')
106 etc_dir = os.path.join(extract_dir, 'etc')
107 os.remove(os.path.join(extract_dir, 'apex_manifest.pb'))
108 if os.path.isdir(lost_and_found):
110 if os.path.isdir(etc_dir):
124 apexer_wrapper = os.path.join(host_tools_dir, 'apexer_with_DCLA_preprocessing')
127 key_file = os.path.join(host_tools_dir, 'key.pem')
132 self.apexer_tool_path = os.path.join(host_tools_dir, 'bin')
135 self.deapexer = os.path.join(host_tools_dir, 'bin/deapexer')
136 self.debugfs_static = os.path.join(host_tools_dir, 'bin/debugfs_static')
137 self.fsck_erofs = os.path.join(host_tools_dir, 'bin/fsck.erofs')
138 self.android_jar = os.path.join(host_tools_dir, 'bin/android.jar')
139 self.apexer = os.path.join(host_tools_dir, 'bin/apexer')
144 file_path = os.path.join(host_tools_dir, 'bin', i)
145 if os.path.exists(file_path):
153 apex_file = os.path.join(tmp_dir, TEST_APEX + '.apex')
159 canned_fs_config_file = os.path.join(apex_dir, 'canned_fs_config')
162 lib_dir = os.path.join(apex_dir, 'payload_extract', 'lib')
164 foo_file = os.path.join(lib_dir, 'foo.so')
174 lib_dir = os.path.join(apex_dir, 'payload_extract', 'lib64')
176 bar_file = os.path.join(lib_dir, 'bar.so')
189 manifest_file = os.path.join(apex_dir, 'apex_manifest.pb')
190 build_info_file = os.path.join(apex_dir, 'apex_build_info.pb')
191 apex_out = os.path.join(apex_dir, 'DCLA_preprocessed_output.apex')
195 os.path.join(apex_dir, 'payload_extract'),
209 updated_canned_fs_config = os.path.join(apex_dir, 'updated_canned_fs_config')
211 os.path.isfile(updated_canned_fs_config),
217 replaced_foo = os.path.join(
219 replaced_bar = os.path.join(
222 os.path.isfile(replaced_foo),
225 os.path.isfile(replaced_bar),