Home
last modified time | relevance | path

Searched refs:md (Results 1 – 25 of 40) sorted by relevance

12

/system/keymaster/km_openssl/
Dhmac_operation.cpp95 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/
DREADME.md9 * [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/
Ddump.cpp313 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/
DLoader.cpp413 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/
DREADME.md10 … [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…
Dandroid_application_profiling.md4 …[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/
Dpublic.libraries.wear.txt1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
Dpublic.libraries.android.txt1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
Dpublic.libraries.iot.txt1 # See https://android.googlesource.com/platform/ndk/+/master/docs/PlatformApis.md
/system/keymaster/key_blob_utils/
Dintegrity_assured_key_blob.cpp60 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/
Dbpf_helpers.h65 #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/
Dbuild.gradle8 …oid.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#prepare-an-android-a…
/system/extras/simpleperf/demo/CppApi/app/
Dbuild.gradle8 …oid.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#why-we-suggest-profi…
/system/extras/verity/include/verity/
Dhash_tree_builder.h35 HashTreeBuilder(size_t block_size, const EVP_MD* md);
/system/extras/simpleperf/
DREADME.md4 There is also [user documentation](doc/README.md).
/system/sepolicy/private/
Duntrusted_app_27.te19 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
Duntrusted_app_25.te30 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
/system/sepolicy/prebuilts/api/30.0/private/
Duntrusted_app_27.te19 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
Duntrusted_app_25.te30 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
/system/extras/verity/
Dhash_tree_builder.cpp49 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/
Dmetadata_helpers.py827 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/
Dfec_verity.cpp125 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/
Duntrusted_app_27.te31 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
Duntrusted_app_25.te46 # https://android.googlesource.com/platform/bionic/+/master/android-changes-for-ndk-developers.md#t…
/system/extras/simpleperf/demo/
DREADME.md16 … [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-…

12