Home
last modified time | relevance | path

Searched refs:keys (Results 1 – 25 of 53) sorted by relevance

123

/system/bt/stack/btm/
Dbtm_ble.cc1190 p_dev_rec->ble.keys.local_counter++; in btm_ble_increment_sign_ctr()
1192 p_dev_rec->ble.keys.counter++; in btm_ble_increment_sign_ctr()
1194 is_local, p_dev_rec->ble.keys.local_counter, in btm_ble_increment_sign_ctr()
1195 p_dev_rec->ble.keys.counter); in btm_ble_increment_sign_ctr()
1238 if (p_dev_rec && p_dev_rec->ble.keys.div) { in btm_get_local_div()
1240 *p_div = p_dev_rec->ble.keys.div; in btm_get_local_div()
1278 p_rec->ble.keys.pltk = p_keys->penc_key.ltk; in btm_sec_save_le_key()
1279 memcpy(p_rec->ble.keys.rand, p_keys->penc_key.rand, BT_OCTET8_LEN); in btm_sec_save_le_key()
1280 p_rec->ble.keys.sec_level = p_keys->penc_key.sec_level; in btm_sec_save_le_key()
1281 p_rec->ble.keys.ediv = p_keys->penc_key.ediv; in btm_sec_save_le_key()
[all …]
Dbtm_ble_addr.cc206 if (rpa_matches_irk(rpa, p_dev_rec->ble.keys.irk)) { in btm_ble_addr_resolvable()
230 if (rpa_matches_irk(*random_bda, p_dev_rec->ble.keys.irk)) { in btm_ble_match_random_bda()
/system/sepolicy/
DREADME46 * keys.conf
70 mac_permissions.xml to public keys found in pem files. This script takes
72 Details of the configuration file (keys.conf) can be found in the subsection
73 keys.conf. This tool is also responsible for stripping the comments and
76 keys.conf
77 The keys.conf file is used for controlling the mapping of "tags" found in
78 the mac_permissions.xml signature stanzas with actual public keys found in
89 to ones release keys.
92 organization and may need to extract the pem file for the insertkeys/keys.conf tools.
97 After extracting the pem, you can rename it, and configure keys.conf and
Dmac_permissions.mk13 $(plat_mac_perms_keys.tmp): $(call build_policy, keys.conf, $(PLAT_PRIVATE_POLICY) $(PRODUCT_PRIVAT…
47 $(product_mac_perms_keys.tmp): $(call build_policy, keys.conf, $(PRODUCT_PRIVATE_POLICY) $(REQD_MAS…
75 $(vendor_mac_perms_keys.tmp): $(call build_policy, keys.conf, $(PLAT_VENDOR_POLICY) $(BOARD_VENDOR_…
103 $(odm_mac_perms_keys.tmp): $(call build_policy, keys.conf, $(BOARD_ODM_SEPOLICY_DIRS) $(REQD_MASK_P…
/system/sepolicy/prebuilts/api/29.0/private/
Dfsverity_init.te10 # Allow to read /proc/keys for searching key id.
13 # Kernel only prints the keys that can be accessed and only kernel keyring is needed here.
/system/sepolicy/private/
Dfsverity_init.te10 # Allow to read /proc/keys for searching key id.
13 # Kernel only prints the keys that can be accessed and only kernel keyring is needed here.
/system/netd/resolv/dns_responder/
Ddns_tls_frontend.cpp158 std::vector<bssl::UniquePtr<EVP_PKEY>> keys(chain_length_); in startServer() local
160 keys[i] = make_private_key(); in startServer()
165 certs[i] = make_cert(keys[i].get(), keys[next].get()); in startServer()
173 if (SSL_CTX_use_PrivateKey(ctx_.get(), keys[0].get()) <= 0 ) { in startServer()
/system/security/keystore/tests/
Dlist_auth_bound_keys_test.sh49 if cli $USER2_ID list-apps-with-keys; then
/system/netd/resolv/
Ddns_tls_test.cpp655 keys.emplace(mark, server); in createDnsTlsSocket()
658 std::multiset<std::pair<unsigned, DnsTlsServer>> keys; member in android::net::TrackingFakeSocketFactory
673 std::vector<std::pair<unsigned, DnsTlsServer>> keys; in TEST_F() local
674 keys.emplace_back(MARK, SERVER1); in TEST_F()
675 keys.emplace_back(MARK + 1, SERVER1); in TEST_F()
676 keys.emplace_back(MARK, V4ADDR2); in TEST_F()
677 keys.emplace_back(MARK + 1, V4ADDR2); in TEST_F()
681 for (size_t i = 0; i < FakeSocketDelay::sDelay * keys.size(); ++i) { in TEST_F()
682 auto key = keys[i % keys.size()]; in TEST_F()
701 EXPECT_EQ(keys.size(), weak_factory->keys.size()); in TEST_F()
[all …]
/system/bt/audio_bluetooth_hw/
Daudio_bluetooth_hw.cc38 const char* keys) { in adev_get_parameters() argument
39 LOG(VERBOSE) << __func__ << ": keys=[" << keys << "]"; in adev_get_parameters()
Dstream_apis.cc257 const char* keys) { in out_get_parameters() argument
262 << ", keys=[" << keys << "]"; in out_get_parameters()
264 std::unordered_map<std::string, std::string> params = ParseAudioParams(keys); in out_get_parameters()
/system/core/healthd/
Dhealthd_mode_charger.cpp111 key_state keys[KEY_MAX + 1]; member
428 if (charger->keys[code].down == down) return 0; in set_key_callback()
432 if (down) charger->keys[code].timestamp = now; in set_key_callback()
433 charger->keys[code].down = down; in set_key_callback()
434 charger->keys[code].pending = true; in set_key_callback()
438 int64_t duration = now - charger->keys[code].timestamp; in set_key_callback()
461 key_state* key = &charger->keys[code]; in process_key()
/system/sepolicy/tools/
Dcheck_seapp.c710 static rule_map *rule_map_new(kvp keys[], size_t num_of_keys, int lineno, in rule_map_new() argument
736 k = &(keys[i]); in rule_map_new()
813 k = &(keys[i]); in rule_map_new()
1076 kvp keys[KVP_NUM_OF_RULES]; in parse_file() local
1107 memset(keys, 0, sizeof(kvp) * KVP_NUM_OF_RULES); in parse_file()
1116 keys[token_cnt].key = strdup(name); in parse_file()
1117 if (!keys[token_cnt].key) in parse_file()
1120 keys[token_cnt].value = strdup(value); in parse_file()
1121 if (!keys[token_cnt].value) in parse_file()
1135 rule_map *r = rule_map_new(keys, token_cnt, lineno, in_file->name, is_never_allow); in parse_file()
DREADME47 mac_permissions.xml to public keys found in pem files. This
/system/extras/libjsonpb/
DREADME.md39 defined) or the original field name as keys in the input JSON file.
58 - Whether the Protobuf file defines JSON keys clearly. The JSON keys must be
62 in the following Protobuf file, only keys `foo_bar` and `barBaz` are allowed
/system/core/init/
Dperfboot.py263 keys = [key for key in record.keys() if key[0] == tag]
264 return [record[k] for k in sorted(keys)]
/system/core/libutils/
DLruCache_test.cpp144 void assertInstanceCount(ssize_t keys, ssize_t values) { in assertInstanceCount() argument
145 if (keys != ComplexKey::instanceCount || values != ComplexValue::instanceCount) { in assertInstanceCount()
146 FAIL() << "Expected " << keys << " keys and " << values << " values " in assertInstanceCount()
/system/extras/simpleperf/scripts/
Dannotate.py366 for func_name in file_period.function_dict.keys():
374 for line in sorted(file_period.line_dict.keys()):
427 for line in file_period.line_dict.keys():
429 for func_name in file_period.function_dict.keys():
/system/update_engine/scripts/update_payload/
Dapplier.py657 part_names = set(new_part_info.keys()) # Equivalently, old_part_info.keys()
660 new_part_names = set(new_parts.keys())
665 old_part_names = set(old_parts.keys())
/system/sepolicy/tests/
Dtreble_sepolicy_tests.py55 for d in sorted(alldomains.keys()):
410 for tn in Tests.keys():
/system/core/trusty/keymaster/
DAndroid.bp25 // and ECDSA keys.
/system/extras/boottime_tools/io_analysis/
Dcheck_verity.py122 sizes = sorted(self.block_size_vs_reads_histogram.keys())
/system/security/keystore/
Dkey_config.proto39 // operation. Per operation keys must be user authenticated on each usage.
Doperation_config.proto40 // operation. Per operation keys must be user authenticated on each usage.
/system/media/camera/docs/
DACameraMetadata.mako54 // Skip check for vendor keys

123