Home
last modified time | relevance | path

Searched refs:connectParams (Results 1 – 4 of 4) sorted by relevance

/base/security/device_auth/services/group_manager/src/channel_manager/
Dchannel_manager.c49 const char *connectParams = GetStringFromJson(jsonParams, FIELD_CONNECT_PARAMS); in GetChannelType() local
50 if (connectParams != NULL) { in GetChannelType()
66 const char *connectParams = GetStringFromJson(jsonParams, FIELD_CONNECT_PARAMS); in OpenChannel() local
67 if (connectParams == NULL) { in OpenChannel()
72 int32_t result = GetSoftBusInstance()->openChannel(connectParams, requestId, &channelId); in OpenChannel()
/base/security/device_auth/services/group_manager/inc/channel_manager/soft_bus_channel/
Dsoft_bus_channel.h27 int32_t (*openChannel)(const char *connectParams, int64_t requestId, int64_t *returnChannelId);
/base/security/device_auth/test/fuzztest/device_auth_service/devauthservaddmembertogroup_fuzzer/
Ddevauthservaddmembertogroup_fuzzer.cpp74 const char *connectParams = "{\"ip\": \"192.168.1.100\", \"port\": \"10001\"}"; in GenerateAddMemberParamsJson() local
75 AddStringToJson(json, FIELD_CONNECT_PARAMS, connectParams); in GenerateAddMemberParamsJson()
/base/security/device_auth/services/group_manager/src/channel_manager/soft_bus_channel/
Dsoft_bus_channel.c213 static int32_t OpenSoftBusChannel(const char *connectParams, int64_t requestId, int64_t *returnChan… in OpenSoftBusChannel() argument
215 if ((connectParams == NULL) || (returnChannelId == NULL)) { in OpenSoftBusChannel()
220 … int64_t channelId = (int64_t)OpenAuthSession(GROUP_MANAGER_PACKAGE_NAME, NULL, 0, connectParams); in OpenSoftBusChannel()