/system/keymaster/km_openssl/ |
D | hmac_operation.cpp | 95 const EVP_MD* md = nullptr; in HmacOperation() local 102 md = EVP_sha1(); in HmacOperation() 105 md = EVP_sha224(); in HmacOperation() 108 md = EVP_sha256(); in HmacOperation() 111 md = EVP_sha384(); in HmacOperation() 114 md = EVP_sha512(); in HmacOperation() 118 if (md == nullptr) { in HmacOperation() 124 if (mac_length > EVP_MD_size(md) || mac_length < kMinHmacLengthBits / 8) { in HmacOperation() 135 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 | 413 vector<struct bpf_map_def> md; in createMaps() local 420 md.resize(mdData.size() / sizeof(struct bpf_map_def)); in createMaps() 421 memcpy(md.data(), mdData.data(), mdData.size()); in createMaps() 438 … fd.reset(bpf_create_map(md[i].type, mapNames[i].c_str(), md[i].key_size, md[i].value_size, in createMaps() 439 md[i].max_entries, md[i].map_flags)); in createMaps() 449 ret = chown(mapPinLoc.c_str(), (uid_t)md[i].uid, (gid_t)md[i].gid); in createMaps() 451 ret = chmod(mapPinLoc.c_str(), md[i].mode); in createMaps()
|
/system/extras/simpleperf/doc/ |
D | README.md | 10 … [here](https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md). 96 See [android_application_profiling.md](./android_application_profiling.md). 101 See [android_platform_profiling.md](./android_platform_profiling.md). 106 See [executable_commands_reference.md](./executable_commands_reference.md). 111 See [scripts_reference.md](./scripts_reference.md). 221 …oglesource.com/platform/system/extras/+/master/simpleperf/doc/scripts_reference.md#report_html_py). 227 …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 …]
|
/system/core/rootdir/etc/ |
D | public.libraries.wear.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
|
D | public.libraries.iot.txt | 1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
|
/system/keymaster/key_blob_utils/ |
D | integrity_assured_key_blob.cpp | 60 const EVP_MD* md = EVP_sha256(); in ComputeHmac() local 61 if (!HMAC_Init_ex(&ctx, HMAC_KEY, sizeof(HMAC_KEY), md, nullptr /* engine */)) in ComputeHmac()
|
/system/bpf/progs/include/ |
D | bpf_helpers.h | 65 #define DEFINE_BPF_MAP_UGM(the_map, TYPE, TypeOfKey, TypeOfValue, num_entries, usr, grp, md) \ argument 73 .mode = (md), \
|
/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 | 35 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/sepolicy/private/ |
D | untrusted_app_27.te | 19 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|
D | untrusted_app_25.te | 30 # 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…
|
D | untrusted_app_25.te | 30 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|
/system/extras/verity/ |
D | hash_tree_builder.cpp | 49 HashTreeBuilder::HashTreeBuilder(size_t block_size, const EVP_MD* md) in HashTreeBuilder() argument 50 : block_size_(block_size), data_size_(0), md_(md) { in HashTreeBuilder()
|
/system/media/camera/docs/ |
D | metadata_helpers.py | 827 javatext = md(text, JAVADOC_IMAGE_SRC_METADATA) 914 ndktext = md(text, NDKDOC_IMAGE_SRC_METADATA, False) 1013 hidltext = md(text, NDKDOC_IMAGE_SRC_METADATA, False) 1094 def md(text, img_src_prefix="", table_ext=True): function
|
/system/extras/libfec/ |
D | fec_verity.cpp | 125 auto md = EVP_get_digestbynid(nid_); in get_hash() local 126 check(md) in get_hash() 130 EVP_DigestInit_ex(mdctx, md, nullptr); in get_hash()
|
/system/sepolicy/prebuilts/api/29.0/private/ |
D | untrusted_app_27.te | 31 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|
D | untrusted_app_25.te | 46 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
|
/system/extras/simpleperf/demo/ |
D | README.md | 16 … [here](https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md). 17 …oid.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#Android-application-…
|