Home
last modified time | relevance | path

Searched refs:libpath (Results 1 – 5 of 5) sorted by relevance

/system/apex/tests/testdata/sharedlibs/build/
Dshared_libs_repack.py270 libpath = lib_full_path[len(payload_dir):].lstrip('/').split('/')
271 return libpath[0]
302 libpath = _extract_lib_or_lib64(payload_dir, lib_path_hash[0])
303 assert libpath in ('lib', 'lib64')
304 pb.requireSharedApexLibs.append(os.path.join(libpath, basename) + ':'
308 libpath, basename, lib_path_hash[1],
355 source_lib_paths = [os.path.join('/', libpath, lib)
356 for libpath in ['lib', 'lib64']
373 libpath = _extract_lib_or_lib64(payload_dir, lib_path_hash[0])
374 tmp_lib = os.path.join(payload_dir, libpath, basename + '.bak')
[all …]
/system/sepolicy/tests/
Dsearchpolicy.py46 if not args.libpath:
52 pol = policy.Policy(args.policy, None, args.libpath)
Dsepolicy_tests.py304 def do_main(libpath): argument
333 pol = policy.Policy(options.policy, options.file_contexts, libpath)
381 libpath = os.path.join(temp_dir, libname) variable
382 with open(libpath, "wb") as f:
387 do_main(libpath)
/system/sepolicy/tools/
Dsepolicy_generate_compat.py358 libpath = os.path.join(
360 if not os.path.exists(libpath):
398 base_policy = policy.Policy(base_policy_path, None, libpath)
399 old_policy = policy.Policy(old_policy_path, None, libpath)
/system/apex/tests/native/
Dapex_shared_libraries_test.cpp199 auto libpath = fs::path(dl_info.dli_fname); in TEST() local
200 if (libpath == dest) { in TEST()