/foundation/communication/dsoftbus/core/authentication/interface/ |
H A D | auth_interface.h | 141 void (*onGroupCreated)(const char *groupId, int32_t groupType); 142 void (*onGroupDeleted)(const char *groupId, int32_t groupType);
|
/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/udp_negotiation/ |
H A D | trans_udp_negotiation_exchange_test.cpp | 76 res = strcpy_s(appInfo->groupId, sizeof(appInfo->groupId), g_groupid); in GenerateAppInfo()
|
/foundation/distributedhardware/device_manager/test/commonunittest/ |
H A D | UTTest_dm_auth_manager_second.cpp | 99 std::string groupId; in HWTEST_F() local 101 authManager_->OnGroupCreated(requestId, groupId); in HWTEST_F() 108 std::string groupId; in HWTEST_F() local 110 authManager_->OnGroupCreated(requestId, groupId); in HWTEST_F() 117 std::string groupId = "{}"; in HWTEST_F() local 118 authManager_->OnGroupCreated(requestId, groupId); in HWTEST_F() 125 std::string groupId = "groupId"; in HWTEST_F() local 127 authManager_->OnGroupCreated(requestId, groupId); in HWTEST_F() 134 std::string groupId in HWTEST_F() local [all...] |
/foundation/ability/ability_runtime/frameworks/native/ability/ability_runtime/ |
H A D | ability_context_impl.cpp | 76 int32_t AbilityContextImpl::GetSystemDatabaseDir(const std::string &groupId, bool checkExist, std::string &databaseDir) in GetSystemDatabaseDir() argument 79 stageContext_->GetSystemDatabaseDir(groupId, checkExist, databaseDir) : ERR_INVALID_VALUE; in GetSystemDatabaseDir() 87 int AbilityContextImpl::GetSystemPreferencesDir(const std::string &groupId, bool checkExist, in GetSystemPreferencesDir() argument 91 stageContext_->GetSystemPreferencesDir(groupId, checkExist, preferencesDir) : ERR_INVALID_VALUE; in GetSystemPreferencesDir() 94 std::string AbilityContextImpl::GetGroupDir(std::string groupId) in GetGroupDir() argument 96 return stageContext_ ? stageContext_->GetGroupDir(groupId) : ""; in GetGroupDir()
|
/foundation/communication/dsoftbus/tests/sdk/transmission/session/ |
H A D | client_trans_session_manager_test.cpp | 127 ret = strcpy_s(session->info.groupId, GROUP_ID_SIZE_MAX, param->groupId); in GenerateSession() 151 sessionParam->groupId = g_groupid; in GenerateCommParam() 414 char groupId[] = {"TEST_GROUP_ID1"}; in HWTEST_F() local 423 newSessionParam->groupId = groupId; in HWTEST_F() 802 char groupId[] = {"TEST_GROUP_ID1"}; in HWTEST_F() local 804 sessionParam->groupId = groupId; in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_list.h | 141 void ExpandGroup(const std::string& groupId, bool expand = true);
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | screen_manager.h | 81 * @brief Get the screen group object by groupId.
83 * @param groupId Screen group id.
86 sptr<ScreenGroup> GetScreenGroup(ScreenId groupId);
|
/foundation/communication/dsoftbus/interfaces/kits/transport/ |
H A D | session.h | 517 * @param groupId Indicates the pointer to the group ID. This parameter can be left empty in automatic networking. 529 const char *groupId, const SessionAttribute* attr);
|
/foundation/deviceprofile/device_info_manager/old/services/core/src/authority/ |
H A D | trust_group_manager.cpp | 42 jsonObject.at(FIELD_GROUP_ID).get_to(groupInfo.groupId); in from_json()
|
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/data/ |
H A D | unified_data.cpp | 46 return this->runtime_->key.groupId; in GetGroupId()
|
/foundation/multimedia/audio_framework/frameworks/native/audiopolicy/test/unittest/policy_test/src/ |
H A D | audio_policy_ext_unit_test.cpp | 168 * @tc.desc : Test GetNetworkIdByGroupId interface. Get networkId by groupId and return ret. 177 int32_t groupId = infos[0]->volumeGroupId_; in HWTEST() local 178 ret = AudioPolicyManager::GetInstance().GetNetworkIdByGroupId(groupId, networkId); in HWTEST() 185 * @tc.desc : Test GetNetworkIdByGroupId interface. Get networkId by groupId and return ret. 194 int32_t groupId = -1; in HWTEST() local 195 ret = AudioPolicyManager::GetInstance().GetNetworkIdByGroupId(groupId, networkId); in HWTEST()
|
/foundation/multimedia/audio_framework/services/audio_policy/test/example/ |
H A D | audio_policy_test.cpp | 250 int32_t groupId = groups[0]->volumeGroupId_; in HandleVolume() local 251 std::shared_ptr<AudioGroupManager> groupManager = audioSystemMgr->GetGroupManager(groupId); in HandleVolume() 261 int32_t groupId = groups[0]->volumeGroupId_; in HandleVolume() local 262 std::shared_ptr<AudioGroupManager> groupManager = audioSystemMgr->GetGroupManager(groupId); in HandleVolume()
|
/foundation/multimedia/audio_framework/services/audio_service/test/unittest/ |
H A D | audio_service_unit_test.cpp | 172 int32_t groupId = 0; in HWTEST() local 173 std::string condition = "EVENT_TYPE=1;VOLUME_GROUP_ID=" + std::to_string(groupId) + ";AUDIO_VOLUME_TYPE=" in HWTEST() 227 int32_t groupId = 0; in HWTEST() local 228 std::string condition = "EVENT_TYPE=1;VOLUME_GROUP_ID=" + std::to_string(groupId) + ";AUDIO_VOLUME_TYPE=" in HWTEST()
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/common/src/ |
H A D | client_trans_udp_manager.c | 187 info.groupId = channel.info.groupId; in OnUdpChannelOpened() 216 strcpy_s(newChannel->info.groupId, GROUP_ID_SIZE_MAX, channel->groupId) != EOK || in ConvertChannelInfoToUdpChannel()
|
/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/ |
H A D | trans_tcp_direct_message_static_test.cpp | 783 (void)strcpy_s(conn.appInfo.groupId, sizeof(conn.appInfo.groupId), "1"); in HWTEST_F() 804 EXPECT_EQ(info.groupId, conn.appInfo.groupId); in HWTEST_F()
|
H A D | trans_core_tcp_direct_test.cpp | 196 char groupId[TEST_GROUP_ID_LEN] = "123"; in HWTEST_F() local 209 .groupId = groupId, in HWTEST_F()
|
/foundation/communication/dsoftbus/tests/sdk/transmission/ipc/ |
H A D | trans_ipc_test.cpp | 191 param->groupId = nullptr; in HWTEST_F() 208 param->groupId = g_groupId; in HWTEST_F() 473 param->groupId = nullptr; in HWTEST_F() 499 param->groupId = g_groupId; in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | text_style.h | 233 int32_t groupId = 0; member 241 groupId == value.groupId; in operator ==()
|
/foundation/communication/dsoftbus/core/transmission/trans_channel/common/src/ |
H A D | trans_lane_pending_ctl.c | 114 SOFTBUS_MALLOC_ERR, TRANS_INIT, "SoftBusCalloc groupId failed"); in TransFreeLanePendingInit() 132 if (param->groupId != NULL) { in DestroyAsyncReqItemParam() 133 SoftBusFree((void *)(param->groupId)); in DestroyAsyncReqItemParam() 134 param->groupId = NULL; in DestroyAsyncReqItemParam() 312 char *groupId = (char *)SoftBusCalloc(sizeof(char) * GROUP_ID_SIZE_MAX); in CopyAsyncReqItemSessionParamIds() local 313 TRANS_CHECK_AND_RETURN_RET_LOGE(groupId != NULL, SOFTBUS_MALLOC_ERR, TRANS_SVC, "SoftBusCalloc groupId failed"); in CopyAsyncReqItemSessionParamIds() 314 if (source->groupId != NULL && strcpy_s(groupId, GROUP_ID_SIZE_MAX, source->groupId) ! in CopyAsyncReqItemSessionParamIds() [all...] |
/foundation/communication/dsoftbus/tests/core/frame/fuzztest/softbusserverstub_fuzzer/ |
H A D | softbusserverstub_fuzzer.cpp | 186 char groupId[NETWORKID_SIZE_MAX] = { 0 }; in OpenSessionFuzzTest() local 201 if (memcpy_s(groupId, NETWORKID_SIZE_MAX, reinterpret_cast<const char *>(data + offset), NETWORKID_SIZE_MAX - 1) != in OpenSessionFuzzTest() 213 datas.WriteCString(groupId); in OpenSessionFuzzTest() 1166 char groupId[GROUP_ID_SIZE_MAX] = "com.test.trans.session.sendfile"; in CheckOpenSessionPermissionFuzzTest() local 1174 if (memcpy_s(groupId, GROUP_ID_SIZE_MAX, reinterpret_cast<const char *>(data + DEVICE_ID_SIZE_MAX), in CheckOpenSessionPermissionFuzzTest() 1178 groupId[GROUP_ID_SIZE_MAX - 1] = '\0'; in CheckOpenSessionPermissionFuzzTest() 1186 .groupId = groupId, in CheckOpenSessionPermissionFuzzTest()
|
/foundation/distributedhardware/device_manager/services/implementation/src/authentication/ |
H A D | dm_auth_manager.cpp | 587 void DmAuthManager::OnGroupCreated(int64_t requestId, const std::string &groupId) in OnGroupCreated() argument 597 LOGI("DmAuthManager::OnGroupCreated start group id %{public}s", GetAnonyString(groupId).c_str()); in OnGroupCreated() 598 if (groupId == "{}") { in OnGroupCreated() 617 LOGI("DmAuthManager::OnGroupCreated start group id %{public}s", GetAnonyString(groupId).c_str()); in OnGroupCreated() 618 authResponseContext_->groupId = groupId; in OnGroupCreated() 1136 LOGI("DmAuthManager::AddMember start group id %{public}s", GetAnonyString(authResponseContext_->groupId).c_str()); in AddMember() 1139 jsonObject[TAG_GROUP_ID] = authResponseContext_->groupId; in AddMember() 1637 if ((*it) == Crypto::GetGroupIdHash(groupInfo.groupId)) { in IsIdenticalAccount() 1663 jsonAccountObj.push_back(Crypto::GetGroupIdHash(groupInfo.groupId)); in GetAccountGroupIdHash() 2226 std::string groupId = ""; DeleteGroup() local [all...] |
/foundation/multimedia/audio_framework/frameworks/cj/src/ |
H A D | multimedia_audio_ffi.cpp | 395 int64_t FfiMMAAVMGetVolumeGroupManager(int64_t id, int32_t groupId, int32_t *errorCode) in FfiMMAAVMGetVolumeGroupManager() argument 404 return mgr->GetVolumeGroupManager(groupId, errorCode); in FfiMMAAVMGetVolumeGroupManager()
|
/foundation/multimedia/media_foundation/src/filter/ |
H A D | filter.cpp | 47 void Filter::LinkPipeLine(const std::string& groupId) in LinkPipeLine() argument 49 groupId_ = groupId; in LinkPipeLine()
|
/foundation/communication/dsoftbus/tests/core/transmission/common/softbus_message_open_channel_test/ |
H A D | softbus_message_open_channel_test.cpp | 184 int32_t res = strcpy_s(appInfo->groupId, sizeof(appInfo->groupId), g_groupid); in HWTEST_F()
|
/foundation/communication/dsoftbus/sdk/transmission/session/cpp/src/ |
H A D | session_service_impl.cpp | 82 const std::string &peerSessionName, const std::string &peerNetworkId, const std::string &groupId, int32_t flags) in OpenSession() 89 OpenSessionInner(mySessionName.c_str(), peerSessionName.c_str(), peerNetworkId.c_str(), groupId.c_str(), flags); in OpenSession() 81 OpenSession(const std::string &mySessionName, const std::string &peerSessionName, const std::string &peerNetworkId, const std::string &groupId, int32_t flags) OpenSession() argument
|