Home
last modified time | relevance | path

Searched refs:keys (Results 3501 - 3525 of 3668) sorted by relevance

1...<<141142143144145146147

/third_party/python/Lib/test/
H A Dtest_xmlrpc.py59 # datetime objects for the 'datetime[123]' keys as well
1255 expected_keys = sorted(self.standard_headers + list(additional.keys()))
1256 self.assertListEqual(sorted(headers.keys()), expected_keys)
H A Dtest_ast.py1207 malformed = ast.Dict(keys=[ast.Constant(1), ast.Constant(2)], values=[ast.Constant(3)])
1209 malformed = ast.Dict(keys=[ast.Constant(1)], values=[ast.Constant(2), ast.Constant(3)])
1539 self.expr(d, "same number of keys as values")
2234 self._check_content(s2, c2.keys[1], 'f ()')
H A Dtest_itertools.py792 keys = [k for k, g in groupby(s, testR)]
794 self.assertEqual(set(keys), expectedkeys)
795 self.assertEqual(len(keys), len(expectedkeys))
/third_party/python/Modules/
H A Dposixmodule.c5733 PyObject *keys=NULL, *vals=NULL; in parse_envlist() local
5746 keys = PyMapping_Keys(env); in parse_envlist()
5747 if (!keys) in parse_envlist()
5752 if (!PyList_Check(keys) || !PyList_Check(vals)) { in parse_envlist()
5754 "env.keys() or env.values() is not a list"); in parse_envlist()
5759 key = PyList_GetItem(keys, pos); in parse_envlist()
5813 Py_DECREF(keys); in parse_envlist()
5820 Py_XDECREF(keys); in parse_envlist()
/foundation/arkui/napi/native_engine/impl/ark/
H A Dark_native_engine.cpp921 Local<panda::JSValueRef> *keys, in NapiCreateObjectWithProperties()
965 keys[i] = panda::StringRef::NewFromUtf8(vm, utf8name); in NapiCreateObjectWithProperties()
967 Local<panda::ObjectRef> object = panda::ObjectRef::NewWithProperties(vm, propertyCount, keys, attrs); in NapiCreateObjectWithProperties()
919 NapiCreateObjectWithProperties(napi_env env, size_t propertyCount, const napi_property_descriptor *properties, Local<panda::JSValueRef> *keys, PropertyAttribute *attrs) NapiCreateObjectWithProperties() argument
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_render_service_connection_proxy.cpp1624 ScreenId id, std::vector<ScreenHDRMetadataKey>& keys) in GetScreenSupportedMetaDataKeys()
1643 keys.clear(); in GetScreenSupportedMetaDataKeys()
1647 keys.push_back(static_cast<ScreenHDRMetadataKey>(i)); in GetScreenSupportedMetaDataKeys()
1623 GetScreenSupportedMetaDataKeys( ScreenId id, std::vector<ScreenHDRMetadataKey>& keys) GetScreenSupportedMetaDataKeys() argument
/foundation/multimodalinput/input/service/connect_manager/src/
H A Dmultimodal_input_connect_proxy.cpp806 int32_t MultimodalInputConnectProxy::SupportKeys(int32_t deviceId, std::vector<int32_t> &keys, in SupportKeys() argument
816 WRITEINT32(data, static_cast<int32_t>(keys.size())); in SupportKeys()
817 for (const auto &item : keys) { in SupportKeys()
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
H A Dice_common.c3425 * @keys: pointer to key info struct
3431 struct ice_aqc_get_set_rss_keys *keys) in ice_aq_set_rss_key()
3433 if (!ice_is_vsi_valid(hw, vsi_handle) || !keys) in ice_aq_set_rss_key()
3437 keys, true); in ice_aq_set_rss_key()
3430 ice_aq_set_rss_key(struct ice_hw *hw, u16 vsi_handle, struct ice_aqc_get_set_rss_keys *keys) ice_aq_set_rss_key() argument
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/
H A Dice_common.c4090 * @keys: pointer to key info struct
4096 struct ice_aqc_get_set_rss_keys *keys) in ice_aq_set_rss_key()
4098 if (!ice_is_vsi_valid(hw, vsi_handle) || !keys) in ice_aq_set_rss_key()
4102 keys, true); in ice_aq_set_rss_key()
4095 ice_aq_set_rss_key(struct ice_hw *hw, u16 vsi_handle, struct ice_aqc_get_set_rss_keys *keys) ice_aq_set_rss_key() argument
/kernel/linux/linux-6.6/drivers/md/
H A Ddm-crypt.c40 #include <keys/user-type.h>
41 #include <keys/encrypted-type.h>
42 #include <keys/trusted-type.h>
209 unsigned int key_extra_size; /* additional keys length */
228 u8 *authenc_key; /* space for keys in authenc() format (if used) */
296 * (it uses 65 keys, last key is used as IV seed)
2451 /* Ignore extra keys (which are used for IV etc) */ in crypt_setkey()
2702 /* Wipe IV private keys */ in crypt_wipe_key()
2860 * All keys (including IV seed) are always the same size. in crypt_ctr_ivmode()
3119 /* Initialize IV (set keys fo in crypt_ctr_cipher()
[all...]
/kernel/linux/linux-6.6/tools/net/ynl/
H A Dynl-gen-c.py897 attr_set_queue = list(self.root_sets.keys())
898 attr_set_seen = set(self.root_sets.keys())
936 pns_key_list = list(self.pure_nested_structs.keys())
/third_party/node/deps/v8/src/diagnostics/
H A Dobjects-printer.cc739 if (enum_cache().keys().length() == 0) { in DescriptorArrayPrint()
742 os << enum_cache().keys().length(); in DescriptorArrayPrint()
743 os << "\n - keys: " << Brief(enum_cache().keys()); in DescriptorArrayPrint()
/third_party/python/Lib/tkinter/
H A D__init__.py128 keys. If conv is specified, it is used to convert values.
285 keys = ('send_event',
291 ''.join(' %s=%s' % (k, attrs[k]) for k in keys if k in attrs)
1700 the allowed keyword arguments call the method keys.
1715 def keys(self): member in Misc
2671 # TBD: a hack needed because some keys
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
H A Dhtt_rx.c2504 for (i = 0; i < ARRAY_SIZE(peer->keys); i++) { in ath10k_htt_rx_proc_rx_ind_hl()
2505 if (peer->keys[i] && in ath10k_htt_rx_proc_rx_ind_hl()
2506 peer->keys[i]->flags & IEEE80211_KEY_FLAG_PAIRWISE) in ath10k_htt_rx_proc_rx_ind_hl()
2507 keyidx = peer->keys[i]->keyidx; in ath10k_htt_rx_proc_rx_ind_hl()
/kernel/linux/linux-6.6/fs/btrfs/
H A Dctree.c760 * Compare two keys, on little-endian the disk order is same as CPU order and
774 * compare two keys in a memcmp fashion
1208 * So, pull some keys from the left. in balance_level()
2166 * level 1 so we can update keys in btrfs_search_slot()
2469 * Search the tree again to find a leaf with smaller keys.
2471 * Returns 1 if there are no smaller keys.
3421 /* Key greater than all keys in the leaf, right neighbor has in push_leaf_right()
4310 * Before anything else, update keys in the parent and other ancestors in setup_items_for_insert()
4315 btrfs_cpu_key_to_disk(&disk_key, &batch->keys[0]); in setup_items_for_insert()
4367 btrfs_cpu_key_to_disk(&disk_key, &batch->keys[ in setup_items_for_insert()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath10k/
H A Dhtt_rx.c2619 for (i = 0; i < ARRAY_SIZE(peer->keys); i++) { in ath10k_htt_rx_proc_rx_ind_hl()
2620 if (peer->keys[i] && in ath10k_htt_rx_proc_rx_ind_hl()
2621 peer->keys[i]->flags & IEEE80211_KEY_FLAG_PAIRWISE) in ath10k_htt_rx_proc_rx_ind_hl()
2622 keyidx = peer->keys[i]->keyidx; in ath10k_htt_rx_proc_rx_ind_hl()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDateFormatTest.java3482 Set keys = acit.getAllAttributeKeys(); in TestFormatToCharacterIterator()
3483 if (keys.contains(ChineseDateFormat.Field.IS_LEAP_MONTH)) { in TestFormatToCharacterIterator()
3488 keys = acit.getAllAttributeKeys(); in TestFormatToCharacterIterator()
3489 if (keys.contains(ChineseDateFormat.Field.IS_LEAP_MONTH)) { in TestFormatToCharacterIterator()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateFormatTest.java3579 Set keys = acit.getAllAttributeKeys(); in TestFormatToCharacterIterator()
3580 if (keys.contains(ChineseDateFormat.Field.IS_LEAP_MONTH)) { in TestFormatToCharacterIterator()
3585 keys = acit.getAllAttributeKeys(); in TestFormatToCharacterIterator()
3586 if (keys.contains(ChineseDateFormat.Field.IS_LEAP_MONTH)) { in TestFormatToCharacterIterator()
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath11k/
H A Dmac.c2470 for (i = 0; i < ARRAY_SIZE(peer->keys); i++) { in ath11k_clear_peer_keys()
2471 if (!peer->keys[i]) in ath11k_clear_peer_keys()
2475 ret = ath11k_install_key(arvif, peer->keys[i], in ath11k_clear_peer_keys()
2485 peer->keys[i] = NULL; in ath11k_clear_peer_keys()
2576 peer->keys[key->keyidx] = key; in ath11k_mac_op_set_key()
2585 peer->keys[key->keyidx] = NULL; in ath11k_mac_op_set_key()
2782 ath11k_warn(ar->ab, "failed to clear all peer keys for vdev %i: %d\n", in ath11k_station_disassoc()
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath12k/
H A Dmac.c3130 for (i = 0; i < ARRAY_SIZE(peer->keys); i++) { in ath12k_clear_peer_keys()
3131 if (!peer->keys[i]) in ath12k_clear_peer_keys()
3135 ret = ath12k_install_key(arvif, peer->keys[i], in ath12k_clear_peer_keys()
3145 peer->keys[i] = NULL; in ath12k_clear_peer_keys()
3230 peer->keys[key->keyidx] = key; in ath12k_mac_op_set_key()
3239 peer->keys[key->keyidx] = NULL; in ath12k_mac_op_set_key()
3436 ath12k_warn(ar->ab, "failed to clear all peer keys for vdev %i: %d\n", in ath12k_station_disassoc()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsXNode.js224 Array.from(this.updateFuncByElmtId.keys()).sort((a, b) => {
234 Array.from(this.updateFuncByElmtId.keys()).sort((a, b) => {
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/image_source_test/
H A Dimage_source_test.cpp2002 const std::set<std::string> keys; in HWTEST_F() local
2008 uint32_t ret = imageSource->RemoveImageProperties(index, keys, data, size); in HWTEST_F()
/foundation/multimedia/media_library/frameworks/services/media_thumbnail/src/
H A Dthumbnail_utils.cpp1847 vector<string> keys = { key }; in IsImageExist() local
1848 auto syncStatus = MediaLibrarySyncOperation::SyncPullKvstore(kvStore, keys, networkId); in IsImageExist()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_storage_executor.cpp1386 int SQLiteSingleVerStorageExecutor::GetAllMetaKeys(std::vector<Key> &keys) const in GetAllMetaKeys()
1396 errCode = SqliteMetaExecutor::GetAllKeys(statement, isMemDb_, keys); in GetAllMetaKeys()
/kernel/linux/linux-5.10/net/ieee802154/
H A Dnl802154.c1519 list_for_each_entry(key, &table->keys, list) { in nl802154_dump_llsec_key()
1881 list_for_each_entry(kpos, &dpos->keys, list) { in nl802154_dump_llsec_devkey()

Completed in 133 milliseconds

1...<<141142143144145146147