Lines Matching refs:path

29 TEST_PRIVATE_KEY = os.path.join('testdata', 'com.android.example.apex.pem')
81 if os.path.isdir(i):
99 payload_img = os.path.join(apex_dir, 'apex_payload.img')
100 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.debugfs_static = os.path.join(host_tools_dir, 'bin/debugfs_static')
136 self.android_jar = os.path.join(host_tools_dir, 'bin/android.jar')
137 self.apexer = os.path.join(host_tools_dir, 'bin/apexer')
142 file_path = os.path.join(host_tools_dir, 'bin', i)
143 if os.path.exists(file_path):
153 canned_fs_config_file = os.path.join(apex_dir, 'canned_fs_config')
156 lib_dir = os.path.join(apex_dir, 'payload_extract', 'lib')
158 foo_file = os.path.join(lib_dir, 'foo.so')
168 lib_dir = os.path.join(apex_dir, 'payload_extract', 'lib64')
170 bar_file = os.path.join(lib_dir, 'bar.so')
183 manifest_file = os.path.join(apex_dir, 'apex_manifest.pb')
184 build_info_file = os.path.join(apex_dir, 'apex_build_info.pb')
185 apex_out = os.path.join(apex_dir, 'DCLA_preprocessed_output.apex')
189 os.path.join(apex_dir, 'payload_extract'),
203 updated_canned_fs_config = os.path.join(apex_dir, 'updated_canned_fs_config')
205 os.path.isfile(updated_canned_fs_config),
211 replaced_foo = os.path.join(
213 replaced_bar = os.path.join(
216 os.path.isfile(replaced_foo),
219 os.path.isfile(replaced_bar),