/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/keymaster/km_openssl/ |
D | hmac_operation.cpp | 98 const EVP_MD* md = nullptr; in HmacOperation() local 105 md = EVP_sha1(); in HmacOperation() 108 md = EVP_sha224(); in HmacOperation() 111 md = EVP_sha256(); in HmacOperation() 114 md = EVP_sha384(); in HmacOperation() 117 md = EVP_sha512(); in HmacOperation() 121 if (md == nullptr) { in HmacOperation() 127 if (mac_length > EVP_MD_size(md) || mac_length < kMinHmacLengthBits / 8) { in HmacOperation() 138 HMAC_Init_ex(&ctx_, blob.key_material, blob.key_material_size, md, nullptr /* engine */); in HmacOperation()
|
/system/bt/gd/ |
D | README.md | 9 * [Architecture](./docs/architecture/architecture.md) 10 * [Style Guide](./docs/architecture/style_guide.md) 21 * [GTest Unit Test](./docs/testing/gtest.md) 24 write a unit test as this not a good use of your time. Write a [cert test](./cert_test.md) instead 27 * [GD Certification Tests](./docs/testing/cert_test.md)
|
/system/incremental_delivery/incfs/incfsdump/ |
D | dump.cpp | 313 auto& md = mdBuf.md_header; in dumpMd() local 314 md = readAt<incfs_md_header>(offset); in dumpMd() 315 out() << "metadata: " << mdType(md.h_md_entry_type) << "(" << int(md.h_md_entry_type) in dumpMd() 319 out() << "record size: " << md.h_record_size; in dumpMd() 320 out() << "record crc: " << hex(md.h_record_crc); in dumpMd() 321 out() << "next md offset: " << hex(md.h_next_md_offset); in dumpMd() 322 out() << "prev md offset: " << hex(md.h_prev_md_offset); in dumpMd() 325 switch (md.h_md_entry_type) { in dumpMd() 363 prevMd = md; in dumpMd() 364 offset = md.h_next_md_offset; in dumpMd()
|
/system/bpf/libbpf_android/ |
D | Loader.cpp | 472 vector<struct bpf_map_def> md; in createMaps() local 487 md.resize(mapCount); in createMaps() 491 for (auto& m : md) { in createMaps() 509 if (BPFLOADER_VERSION < md[i].bpfloader_min_ver) { in createMaps() 511 md[i].bpfloader_min_ver); in createMaps() 516 if (BPFLOADER_VERSION >= md[i].bpfloader_max_ver) { in createMaps() 518 md[i].bpfloader_max_ver); in createMaps() 523 if (kvers < md[i].min_kver) { in createMaps() 525 mapNames[i].c_str(), kvers, md[i].min_kver); in createMaps() 530 if (kvers >= md[i].max_kver) { in createMaps() [all …]
|
/system/security/keystore2/src/crypto/ |
D | certificate_utils.cpp | 479 const EVP_MD* md = nullptr; in buildRsaPssParameter() local 485 md = EVP_sha224(); in buildRsaPssParameter() 488 md = EVP_sha256(); in buildRsaPssParameter() 491 md = EVP_sha384(); in buildRsaPssParameter() 494 md = EVP_sha512(); in buildRsaPssParameter() 500 if (md != nullptr) { in buildRsaPssParameter() 501 if (auto error = setSaltLength(pss.get(), EVP_MD_size(md))) { in buildRsaPssParameter() 504 if (auto error = setRsaDigestAlgorField(&pss->hashAlgorithm, md)) { in buildRsaPssParameter() 507 if (auto error = setPssMaskGeneratorField(&pss->maskGenAlgorithm, md)) { in buildRsaPssParameter()
|
/system/extras/simpleperf/doc/ |
D | README.md | 10 … [here](https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md). 92 …ipts used for recording and reporting. Details are in [scripts_reference.md](scripts_reference.md). 97 See [android_application_profiling.md](./android_application_profiling.md). 102 See [android_platform_profiling.md](./android_platform_profiling.md). 107 See [executable_commands_reference.md](./executable_commands_reference.md). 112 See [scripts_reference.md](./scripts_reference.md). 234 …oglesource.com/platform/system/extras/+/master/simpleperf/doc/scripts_reference.md#report_html_py). 240 …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). 139 We can use [app-profiler.py](scripts_reference.md#app_profilerpy) to profile Android applications. 173 [report.py](scripts_reference.md#reportpy) reports profiling data in stdio interface. If there 174 are a lot of unknown symbols in the report, check [here](README.md#how-to-solve-missing-symbols-in-… 185 [report_html.py](scripts_reference.md#report_htmlpy) generates report in report.html, and pops up 190 We can record and report [call graphs](executable_commands_reference.md#record-call-graphs) as belo… 218 We can use [report_html.py](scripts_reference.md#report_htmlpy) to show profiling results in a web … 230 We can also use [inferno](scripts_reference.md#inferno) to show flamegraphs directly. 260 We can [record both on CPU time and off CPU time](executable_commands_reference.md#record-both-on-c… 282 We can [profile from launch of an application](scripts_reference.md#profile-from-launch-of-an-appli… [all …]
|
D | jit_symbols.md | 17 [android_application_profiling.md](./android_application_profiling.md#prepare-an-android-applicatio…
|
/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/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/security/keystore2/ |
D | keystore2.rc | 7 # See system/core/init/README.md for information on the init.rc language.
|
/system/chre/chpp/ |
D | QUICKSTART.md | 3 …d platform. For implementation details please refer to the included README.md instead. The minimum… 46 …sting. For details on crafting a loopback datagram, please refer to README.md and the transport la… 66 …d testing. CHPP allows for custom services as well, as described in README.md. The standard servic…
|
/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/bpf/progs/include/ |
D | bpf_helpers.h | 105 #define DEFINE_BPF_MAP_UGM(the_map, TYPE, TypeOfKey, TypeOfValue, num_entries, usr, grp, md) \ argument 114 .mode = (md), \
|
/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/extras/simpleperf/ |
D | README.md | 4 There is also [user documentation](doc/README.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/30.0/private/ |
D | untrusted_app_27.te | 19 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|
/system/sepolicy/private/ |
D | untrusted_app_27.te | 19 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|