/system/keymaster/km_openssl/ |
D | hmac_operation.cpp | 100 const EVP_MD* md = nullptr; in HmacOperation() local 107 md = EVP_sha1(); in HmacOperation() 110 md = EVP_sha224(); in HmacOperation() 113 md = EVP_sha256(); in HmacOperation() 116 md = EVP_sha384(); in HmacOperation() 119 md = EVP_sha512(); in HmacOperation() 123 if (md == nullptr) { in HmacOperation() 129 if (mac_length > EVP_MD_size(md) || mac_length < kMinHmacLengthBits / 8) { in HmacOperation() 140 HMAC_Init_ex(&ctx_, blob.key_material, blob.key_material_size, md, nullptr /* engine */); in HmacOperation()
|
/system/chre/ |
D | navbar.md | 1 * [Home](/README.md) 2 * [Framework Docs](/doc/framework_overview.md) 3 * [Nanoapp Docs](/doc/nanoapp_overview.md)
|
D | README.md | 25 * [Framework Overview](/doc/framework_overview.md) 26 * [Porting Guide](/doc/porting_guide.md) 27 * [Build System](/doc/framework_build.md) 28 * [Debugging](/doc/framework_debugging.md) 29 * [Testing](/doc/framework_testing.md) 30 * [Vendor Extensions](/doc/vendor_extensions.md) 32 * [Nanoapp Overview](/doc/nanoapp_overview.md) 33 * [Developer Guide](/doc/nanoapp_developer_guide.md) 34 * [Interacting with Nanoapps](/doc/nanoapp_clients.md) 36 * [Compatibility Design](/doc/compatibility.md) [all …]
|
/system/bpf/libbpf_android/ |
D | Loader.cpp | 735 vector<struct bpf_map_def> md; in createMaps() local 751 md.resize(mapCount); in createMaps() 755 for (auto& m : md) { in createMaps() 781 if (md[i].zero != 0) abort(); in createMaps() 783 if (BPFLOADER_VERSION < md[i].bpfloader_min_ver) { in createMaps() 785 md[i].bpfloader_min_ver); in createMaps() 790 if (BPFLOADER_VERSION >= md[i].bpfloader_max_ver) { in createMaps() 792 md[i].bpfloader_max_ver); in createMaps() 797 if (kvers < md[i].min_kver) { in createMaps() 799 mapNames[i].c_str(), kvers, md[i].min_kver); in createMaps() [all …]
|
/system/incremental_delivery/incfs/incfsdump/ |
D | dump.cpp | 355 auto& md = mdBuf.md_header; in dumpMd() local 356 md = readAt<incfs_md_header>(offset); in dumpMd() 357 out() << "metadata: " << mdType(md.h_md_entry_type) << "(" << int(md.h_md_entry_type) in dumpMd() 361 out() << "record size: " << md.h_record_size; in dumpMd() 362 out() << "next md offset: " << hex(md.h_next_md_offset); in dumpMd() 365 switch (md.h_md_entry_type) { in dumpMd() 408 prevMd = md; in dumpMd() 409 offset = md.h_next_md_offset; in dumpMd()
|
/system/security/keystore2/src/crypto/ |
D | certificate_utils.cpp | 480 const EVP_MD* md = nullptr; in buildRsaPssParameter() local 486 md = EVP_sha224(); in buildRsaPssParameter() 489 md = EVP_sha256(); in buildRsaPssParameter() 492 md = EVP_sha384(); in buildRsaPssParameter() 495 md = EVP_sha512(); in buildRsaPssParameter() 501 if (md != nullptr) { in buildRsaPssParameter() 502 if (auto error = setSaltLength(pss.get(), EVP_MD_size(md))) { in buildRsaPssParameter() 505 if (auto error = setRsaDigestAlgorField(&pss->hashAlgorithm, md)) { in buildRsaPssParameter() 508 if (auto error = setPssMaskGeneratorField(&pss->maskGenAlgorithm, md)) { in buildRsaPssParameter()
|
/system/extras/simpleperf/doc/ |
D | README.md | 14 … [here](https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md). 81 …ipts used for recording and reporting. Details are in [scripts_reference.md](scripts_reference.md). 86 See [android_application_profiling.md](./android_application_profiling.md). 91 See [android_platform_profiling.md](./android_platform_profiling.md). 96 See [executable_commands_reference.md](./executable_commands_reference.md). 101 See [scripts_reference.md](./scripts_reference.md). 105 See [view_the_profile.md](./view_the_profile.md). 264 …oglesource.com/platform/system/extras/+/master/simpleperf/doc/scripts_reference.md#report_html_py). 269 …ource.com/platform/system/extras/+/master/simpleperf/doc/scripts_reference.md#pprof_proto_generato…
|
D | android_application_profiling.md | 4 …[Here](https://android.googlesource.com/platform/system/extras/+/master/simpleperf/demo/README.md). 124 We can use [app-profiler.py](scripts_reference.md#app_profilerpy) to profile Android applications. 157 [report.py](scripts_reference.md#reportpy) reports profiling data in stdio interface. If there 158 are a lot of unknown symbols in the report, check [here](README.md#how-to-solve-missing-symbols-in-… 169 [report_html.py](scripts_reference.md#report_htmlpy) generates report in report.html, and pops up 174 We can record and report [call graphs](executable_commands_reference.md#record-call-graphs) as belo… 202 We can use [report_html.py](scripts_reference.md#report_htmlpy) to show profiling results in a web … 214 We can also use [inferno](scripts_reference.md#inferno) to show flamegraphs directly. 254 We can [record both on CPU time and off CPU time](executable_commands_reference.md#record-both-on-c… 276 We can [profile from launch of an application](scripts_reference.md#profile-from-launch-of-an-appli… [all …]
|
D | jit_symbols.md | 11 [android_application_profiling.md](./android_application_profiling.md#prepare-an-android-applicatio…
|
D | scripts_reference.md | 69 [Here](./android_application_profiling.md#control-recording-in-application-code) are the details. 118 external UIs. For recommended UIs, see [view_the_profile.md](view_the_profile.md). 175 The third tab is "Flamegraph". It shows the graphs generated by [`inferno`](./inferno.md). 189 [`inferno`](./inferno.md) is a tool used to generate flamegraph in a html file. 202 [`purgatorio`](../scripts/purgatorio/README.md) is a visualization tool to show samples in time ord… 224 …at](https://github.com/firefox-devtools/profiler/blob/main/docs-developer/gecko-profile-format.md), 258 …rofiler](https://github.com/firefox-devtools/profiler/blob/main/docs-user/guide-perf-profiling.md),
|
/system/extras/simpleperf/scripts/ |
D | CONTRIBUTING.md | 11 New scripts should have documentation in `../doc/scripts_reference.md`.
|
/system/chre/chpp/ |
D | QUICKSTART.md | 3 …d platform. For implementation details please refer to the included README.md instead. The minimum… 35 …sting. For details on crafting a loopback datagram, please refer to README.md and the transport la… 55 …d testing. CHPP allows for custom services as well, as described in README.md. The standard servic…
|
/system/keymaster/key_blob_utils/ |
D | integrity_assured_key_blob.cpp | 57 const EVP_MD* md = EVP_sha256(); in ComputeHmac() local 58 if (!HMAC_Init_ex(&ctx, HMAC_KEY, sizeof(HMAC_KEY), md, nullptr /* engine */)) in ComputeHmac()
|
/system/core/rootdir/etc/ |
D | public.libraries.wear.txt | 1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
|
D | public.libraries.iot.txt | 1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
|
D | public.libraries.android.txt | 1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
|
/system/linkerconfig/testdata/root/system/etc/ |
D | public.libraries.txt | 1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
|
/system/security/keystore2/ |
D | keystore2.rc | 7 # See system/core/init/README.md for information on the init.rc language.
|
/system/extras/simpleperf/demo/JavaApi/app/ |
D | build.gradle | 8 …oid.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#prepare-an-android-a…
|
/system/extras/simpleperf/demo/CppApi/app/ |
D | build.gradle | 8 …oid.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#why-we-suggest-profi…
|
/system/extras/verity/include/verity/ |
D | hash_tree_builder.h | 36 HashTreeBuilder(size_t block_size, const EVP_MD* md);
|
/system/linkerconfig/ |
D | README.md | 67 [ld.config.format.md](https://android.googlesource.com/platform/bionic/+/master/linker/ld.config.fo…
|
/system/sepolicy/prebuilts/api/33.0/private/ |
D | untrusted_app_27.te | 19 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|
/system/sepolicy/prebuilts/api/30.0/private/ |
D | untrusted_app_27.te | 19 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|
/system/chre/doc/ |
D | framework_overview.md | 3 [Porting Guide](/doc/porting_guide.md) | 4 [Build System](/doc/framework_build.md) | 5 [Debugging](/doc/framework_debugging.md) | 6 [Testing](/doc/framework_testing.md) | 7 [Vendor Extensions](/doc/vendor_extensions.md)
|