Home
last modified time | relevance | path

Searched refs:shim (Results 1 – 7 of 7) sorted by relevance

/system/apex/shim/
DREADME.md5 A shim apex is an apex that doesn't provide any functionality as it's sole
8 A cts shim apex has following restrictions:
10 * Its name is equal to `com.android.apex.cts.shim`
12 * First version (i.e. `com.android.apex.cts.shim.apex`) should be
14 * `apex_payload.img` of the pre-installed shim apexcontains a single text
15 file called `hash.txt` with a whitelist of SHA512 hashes of versions shim
21 ## Building shim apexes
23 Modules to build shim apexes are defined in the
24 system/apex/shim/build/Android.bp blueprint file.
26 To build shim apexes simply run
[all …]
DAndroid.bp19 name: "com.android.apex.cts.shim.v1_prebuilt",
20 src: "com.android.apex.cts.shim.v1.apex",
21 filename: "com.android.apex.cts.shim.apex",
27 name: "com.android.apex.cts.shim.v2_prebuilt",
28 src: "com.android.apex.cts.shim.v2.apex",
29 filename: "com.android.apex.cts.shim.v2.apex",
34 name: "com.android.apex.cts.shim.v2_wrong_sha_prebuilt",
35 src: "com.android.apex.cts.shim.v2_wrong_sha.apex",
36 filename: "com.android.apex.cts.shim.v2_wrong_sha.apex",
41 name: "com.android.apex.cts.shim.v2_additional_file_prebuilt",
[all …]
/system/apex/shim/build/
DAndroid.bp15 // Build rules to build shim apexes.
18 name: "com.android.apex.cts.shim.pem",
19 out: ["com.android.apex.cts.shim.pem"],
24 name: "com.android.apex.cts.shim.pubkey",
25 srcs: [":com.android.apex.cts.shim.pem"],
26 out: ["com.android.apex.cts.shim.pubkey"],
32 name: "com.android.apex.cts.shim.key",
33 private_key: ":com.android.apex.cts.shim.pem",
34 public_key: ":com.android.apex.cts.shim.pubkey",
52 name: "com.android.apex.cts.shim.v3",
[all …]
/system/apex/apexd/
DAndroid.bp307 ":com.android.apex.cts.shim.v1_prebuilt",
308 ":com.android.apex.cts.shim.v2_prebuilt",
309 ":com.android.apex.cts.shim.v2_wrong_sha_prebuilt",
310 ":com.android.apex.cts.shim.v2_additional_file_prebuilt",
311 ":com.android.apex.cts.shim.v2_additional_folder_prebuilt",
312 ":com.android.apex.cts.shim.v2_with_pre_install_hook_prebuilt",
313 ":com.android.apex.cts.shim.v2_with_post_install_hook_prebuilt",
Dapex_shim.h27 namespace shim {
Dapex_shim.cpp36 namespace shim { namespace
Dapexd.cpp390 if (shim::IsShimApex(apex)) { in VerifyMountedImage()
391 return shim::ValidateShimApex(mount_point, apex); in VerifyMountedImage()
701 StringPrintf("%s/%s", kApexPackageSystemDir, shim::kSystemShimApexName)); in ValidateStagingShimApex()
706 return shim::ValidateUpdate(system_apex_path, to.GetPath()); in ValidateStagingShimApex()
723 if (shim::IsShimApex(apex_file)) { in VerifyPackageBoot()