Home
last modified time | relevance | path

Searched refs:group (Results 751 - 775 of 2589) sorted by relevance

1...<<31323334353637383940>>...104

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
H A Deap_eke_common.c23 static int eap_eke_dh_len(u8 group) in eap_eke_dh_len() argument
25 switch (group) { in eap_eke_dh_len()
53 static const struct dh_group * eap_eke_dh_group(u8 group) in eap_eke_dh_group() argument
55 switch (group) { in eap_eke_dh_group()
72 static int eap_eke_dh_generator(u8 group) in eap_eke_dh_generator() argument
74 switch (group) { in eap_eke_dh_generator()
159 int eap_eke_dh_init(u8 group, u8 *ret_priv, u8 *ret_pub) in eap_eke_dh_init() argument
165 generator = eap_eke_dh_generator(group); in eap_eke_dh_init()
166 dh = eap_eke_dh_group(group); in eap_eke_dh_init()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/checkboxgroup/
H A Dcheckboxgroup_pattern.h118 void SetPreGroup(const std::string& group) in SetPreGroup() argument
120 preGroup_ = group; in SetPreGroup()
158 auto group = checkBoxEventHub ? checkBoxEventHub->GetGroupName() : ""; variable
159 json->PutExtAttr("group", group.c_str(), filter);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/radio/
H A Dradio_pattern.h108 void SetPreGroup(const std::string& group) in SetPreGroup() argument
110 preGroup_ = group; in SetPreGroup()
150 auto group = radioEventHub ? radioEventHub->GetGroup() : ""; variable
152 json->PutExtAttr("group", group.c_str(), filter);
H A Dradio_model_ng.cpp23 void RadioModelNG::Create(const std::optional<std::string>& value, const std::optional<std::string>& group, in Create() argument
37 if (group.has_value()) { in Create()
38 eventHub->SetGroup(group.value()); in Create()
290 const std::string& group, int32_t indicator) in SetRadioOptions()
296 eventHub->SetGroup(group); in SetRadioOptions()
289 SetRadioOptions(FrameNode* frameNode, const std::string& value, const std::string& group, int32_t indicator) SetRadioOptions() argument
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/
H A Dp2p_monitor.h137 * @param group - group that has received invitations
139 virtual void Broadcast2SmInvitationReceived(const std::string &iface, const WifiP2pGroupInfo &group) const;
148 * @Description Broadcast group establishment success event.
154 * @Description Broadcast group setup failure event.
161 * @Description Broadcast group start event.
164 * @param group - group information
166 virtual void Broadcast2SmGroupStarted(const std::string &iface, const WifiP2pGroupInfo &group) const;
168 * @Description Broadcast group remove
[all...]
H A Dp2p_interface.cpp131 ErrCode P2pInterface::DeleteGroup(const WifiP2pGroupInfo &group) in DeleteGroup() argument
133 return p2pService.DeleteGroup(group); in DeleteGroup()
171 ErrCode P2pInterface::GetCurrentGroup(WifiP2pGroupInfo &group) in GetCurrentGroup() argument
173 return p2pService.GetCurrentGroup(group); in GetCurrentGroup()
/third_party/gn/src/gn/
H A Dsetup_unittest.cc289 group("foo") {
293 group("bar") {
296 group("zoo") {
299 group("qux") {
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DRuleParser.java59 .collect(ImmutableMap.toImmutableMap(m -> m.group(1).charAt(0), m -> m.group(2))); in parseConfig()
137 CldrDataType dtdType = CldrDataType.forXmlName(m.group(1)); in parseRule()
138 String pathPrefix = m.group(2); in parseRule()
/third_party/ltp/lib/
H A Dtst_safe_file_at.c203 const int dirfd, const char *const path, uid_t owner, gid_t group, int flags) in safe_fchownat()
207 rval = fchownat(dirfd, path, owner, group, flags); in safe_fchownat()
212 tst_decode_fd(dirfd), path, owner, group, flags); in safe_fchownat()
216 dirfd, tst_decode_fd(dirfd), path, owner, group, flags, rval); in safe_fchownat()
202 safe_fchownat(const char *const file, const int lineno, const int dirfd, const char *const path, uid_t owner, gid_t group, int flags) safe_fchownat() argument
/third_party/node/deps/v8/tools/
H A Dgdb-v8-support.py190 self.find(m.group(1), m.group(2), value)
195 self.find(m.group(1), m.group(2), value)
/third_party/mesa3d/src/intel/dev/
H A Dintel_device_info.h46 #define INTEL_PLATFORM_GROUP_START(group, new_enum) \
47 new_enum, INTEL_PLATFORM_ ## group ## _START = new_enum
48 #define INTEL_PLATFORM_GROUP_END(group, new_enum) \
49 new_enum, INTEL_PLATFORM_ ## group ## _END = new_enum
/third_party/node/deps/openssl/openssl/include/internal/
H A Dffc.h105 int nid; /* The identity of a named group */
213 int ossl_ffc_named_group_get_uid(const DH_NAMED_GROUP *group);
216 int ossl_ffc_named_group_get_keylength(const DH_NAMED_GROUP *group);
217 const BIGNUM *ossl_ffc_named_group_get_q(const DH_NAMED_GROUP *group);
218 int ossl_ffc_named_group_set(FFC_PARAMS *ffc, const DH_NAMED_GROUP *group);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/
H A DvktFaultHandlingTests.cpp239 de::MovePtr<tcu::TestCaseGroup> group(new tcu::TestCaseGroup(testCtx, "fault_handling")); in createFaultHandlingTests()
276 group->addChild(getFaultDataGroup.release()); in createFaultHandlingTests()
291 group->addChild(faultCallbackInfoGroup.release()); in createFaultHandlingTests()
294 return group.release(); in createFaultHandlingTests()
/third_party/skia/third_party/externals/angle2/src/common/serializer/
H A DJsonSerializer.cpp40 rapidjson::Value group = makeValueGroup(mGroupValueStack.top()); in endGroup() local
46 addValue(name, std::move(group)); in endGroup()
148 rapidjson::Value JsonSerializer::makeValueGroup(SortedValueGroup &group) in makeValueGroup() argument
151 for (auto &it : group) in makeValueGroup()
/third_party/openssl/include/internal/
H A Dffc.h100 int nid; /* The identity of a named group */
208 int ossl_ffc_named_group_get_uid(const DH_NAMED_GROUP *group);
211 int ossl_ffc_named_group_get_keylength(const DH_NAMED_GROUP *group);
212 const BIGNUM *ossl_ffc_named_group_get_q(const DH_NAMED_GROUP *group);
213 int ossl_ffc_named_group_set(FFC_PARAMS *ffc, const DH_NAMED_GROUP *group);
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DPipelineGL.cpp157 layout->GetBindGroupLayout(combined.textureLocation.group); in InitializeBase()
160 GLuint textureIndex = indices[combined.textureLocation.group][bindingIndex]; in InitializeBase()
171 layout->GetBindGroupLayout(combined.samplerLocation.group); in InitializeBase()
175 GLuint samplerIndex = indices[combined.samplerLocation.group][bindingIndex]; in InitializeBase()
/third_party/vixl/tools/
H A Dutil.py89 match.group(1): match.group(2)
189 compiler, version = match.group(1), match.group(2)
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/
H A DvktFaultHandlingTests.cpp238 de::MovePtr<tcu::TestCaseGroup> group(new tcu::TestCaseGroup(testCtx, "fault_handling", "Tests verifying Vulkan SC fault handling")); in createFaultHandlingTests()
275 group->addChild(getFaultDataGroup.release()); in createFaultHandlingTests()
290 group->addChild(faultCallbackInfoGroup.release()); in createFaultHandlingTests()
293 return group.release(); in createFaultHandlingTests()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_kernel_sysfs.c92 struct mali_group *group; in group_enabled_read() local
94 group = (struct mali_group *)filp->private_data; in group_enabled_read()
95 MALI_DEBUG_ASSERT_POINTER(group); in group_enabled_read()
98 mali_executor_group_is_disabled(group) ? 0 : 1); in group_enabled_read()
108 struct mali_group *group; in group_enabled_write() local
110 group = (struct mali_group *)filp->private_data; in group_enabled_write()
111 MALI_DEBUG_ASSERT_POINTER(group); in group_enabled_write()
129 mali_executor_group_enable(group); in group_enabled_write()
132 mali_executor_group_disable(group); in group_enabled_write()
1225 struct mali_group *group in mali_sysfs_register() local
1252 struct mali_group *group = mali_group_get_glob_group(i); mali_sysfs_register() local
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/
H A Dmali_kernel_sysfs.c92 struct mali_group *group; in group_enabled_read() local
94 group = (struct mali_group *)filp->private_data; in group_enabled_read()
95 MALI_DEBUG_ASSERT_POINTER(group); in group_enabled_read()
97 r = snprintf(buffer, 64, "%u\n", mali_executor_group_is_disabled(group) ? 0 : 1); in group_enabled_read()
107 struct mali_group *group; in group_enabled_write() local
109 group = (struct mali_group *)filp->private_data; in group_enabled_write()
110 MALI_DEBUG_ASSERT_POINTER(group); in group_enabled_write()
128 mali_executor_group_enable(group); in group_enabled_write()
131 mali_executor_group_disable(group); in group_enabled_write()
1230 struct mali_group *group in mali_sysfs_register() local
1257 struct mali_group *group = mali_group_get_glob_group(i); mali_sysfs_register() local
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p_sa/
H A Dwifi_p2p_service_impl.cpp506 ErrCode WifiP2pServiceImpl::DeleteGroup(const WifiP2pGroupInfo &group) in DeleteGroup() argument
508 WIFI_LOGI("DeleteGroup, group name [%{public}s]", group.GetGroupName().c_str()); in DeleteGroup()
533 return pService->DeleteGroup(group); in DeleteGroup()
639 WIFI_LOGI("QueryP2pLinkedInfo group owner address:%{private}s, pid: %{public}d, uid: %{public}d", in QueryP2pLinkedInfo()
668 ErrCode WifiP2pServiceImpl::GetCurrentGroup(WifiP2pGroupInfo &group) in GetCurrentGroup() argument
699 ErrCode errCode = pService->GetCurrentGroup(group); in GetCurrentGroup()
704 WifiP2pDevice owner = group.GetOwner(); in GetCurrentGroup()
713 group.SetOwner(owner); in GetCurrentGroup()
715 std::vector<WifiP2pDevice> vecClientDevice = group in GetCurrentGroup()
[all...]
/third_party/vulkan-loader/tests/framework/layer/
H A Dtest_layer.cpp580 // Now, if a device has been removed, and it was the only group, we need to remove the group as well.
582 for (uint32_t group = 0; group < icd_group_count; ++group) {
583 for (uint32_t grp_dev = 0; grp_dev < tmp_vector[group].physicalDeviceCount; ++grp_dev) {
584 if (tmp_vector[group].physicalDevices[grp_dev] == layer.removed_physical_devices[rem_dev]) {
585 for (uint32_t cp_item = grp_dev + 1; cp_item < tmp_vector[group].physicalDeviceCount; ++cp_item) {
586 tmp_vector[group].physicalDevices[grp_dev] = tmp_vector[group]
[all...]
/third_party/icu/tools/unicode/py/
H A Dpreparseucd.py375 fields = match.group(1).split(";")
384 line = match.group(1)
398 start = int(match.group(1), 16)
399 end = int(match.group(2), 16)
404 c = int(match.group(1), 16)
466 _ucd_version = match.group(1)
781 start = int(match.group(1), 16)
782 end = int(match.group(3), 16)
783 comment = match.group(2).replace(u"\xa0", " ")
788 pending_h2 = match.group(
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Ddpp.c358 static void dpp_debug_print_point(const char *title, const EC_GROUP *group, in dpp_debug_print_point() argument
372 EC_POINT_get_affine_coordinates_GFp(group, point, x, y, ctx) != 1) in dpp_debug_print_point()
515 static EVP_PKEY * dpp_set_pubkey_point_group(const EC_GROUP *group, in dpp_set_pubkey_point_group() argument
531 point = EC_POINT_new(group); in dpp_set_pubkey_point_group()
539 if (!EC_POINT_set_affine_coordinates_GFp(group, point, x, y, ctx)) { in dpp_set_pubkey_point_group()
546 if (!EC_POINT_is_on_curve(group, point, ctx) || in dpp_set_pubkey_point_group()
547 EC_POINT_is_at_infinity(group, point)) { in dpp_set_pubkey_point_group()
551 dpp_debug_print_point("DPP: dpp_set_pubkey_point_group", group, point); in dpp_set_pubkey_point_group()
555 EC_KEY_set_group(eckey, group) != 1 || in dpp_set_pubkey_point_group()
588 const EC_GROUP *group; in dpp_set_pubkey_point() local
1177 const EC_GROUP *group; dpp_debug_print_key() local
1305 const EC_GROUP *group; dpp_set_keypair() local
1368 const EC_GROUP *group; dpp_bootstrap_key_der() local
2696 const EC_GROUP *group; dpp_auth_derive_l_responder() local
2763 const EC_GROUP *group; dpp_auth_derive_l_initiator() local
5233 EC_GROUP *group; dpp_parse_jwk() local
5572 const EC_GROUP *group; dpp_process_signed_connector() local
6617 EC_GROUP *group; dpp_pkex_get_role_elem() local
6674 const EC_GROUP *group = NULL; dpp_pkex_derive_Qi() local
6758 const EC_GROUP *group = NULL; dpp_pkex_derive_Qr() local
6835 EC_GROUP *group; dpp_test_gen_invalid_key() local
6900 EC_GROUP *group = NULL; dpp_pkex_build_exchange_req() local
7267 EC_GROUP *group = NULL; dpp_pkex_rx_exchange_req() local
7601 EC_GROUP *group = NULL; dpp_pkex_rx_exchange_resp() local
[all...]
/foundation/distributeddatamgr/kv_store/interfaces/innerkits/distributeddata/include/
H A Dtypes.h522 return group.groupDir; in GetDatabaseDir()
524 return !group.groupDir.empty() ? "" : baseDir; in GetDatabaseDir()
531 if ((baseDir.empty() && group.groupDir.empty()) || (!baseDir.empty() && !group.groupDir.empty())) { in IsPathValid()
536 Group group; member

Completed in 23 milliseconds

1...<<31323334353637383940>>...104