Home
last modified time | relevance | path

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

/ohos5.0/base/security/device_auth/services/legacy/group_manager/src/channel_manager/
H A Dchannel_manager.c49 const char *connectParams = GetStringFromJson(jsonParams, FIELD_CONNECT_PARAMS); in GetChannelType() local
50 if (connectParams != NULL) { in GetChannelType()
70 const char *connectParams = GetStringFromJson(jsonParams, FIELD_CONNECT_PARAMS); in OpenChannel() local
71 if (connectParams == NULL) { in OpenChannel()
76 int32_t result = GetSoftBusInstance()->openChannel(connectParams, requestId, &channelId); in OpenChannel()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H A Dobex_client.cpp305 ObexConnectParams connectParams; in Connect() local
306 return Connect(connectParams); in Connect()
310 int ObexClient::Connect(ObexConnectParams &connectParams) in Connect() argument
322 if (connectParams.appParams_ != nullptr) { in Connect()
323 header->AppendItemAppParams(*connectParams.appParams_); in Connect()
325 if (connectParams.authChallenges_ != nullptr) { in Connect()
326 header->AppendItemAuthChallenges(*connectParams.authChallenges_); in Connect()
328 if (connectParams.authResponses_ != nullptr) { in Connect()
329 header->AppendItemAuthResponse(*connectParams.authResponses_); in Connect()
331 if (connectParams.count != nullptr) { in Connect()
[all …]
H A Dobex_client.h143 int Connect(ObexConnectParams &connectParams);
/ohos5.0/base/security/device_auth/test/fuzztest/device_auth_service/devauthservaddmembertogroup_fuzzer/
H A 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()
/ohos5.0/base/security/device_auth/services/legacy/group_manager/src/channel_manager/soft_bus_channel/
H A Dsoft_bus_channel.c174 static int32_t OpenSoftBusChannel(const char *connectParams, int64_t requestId, int64_t *returnChan… in OpenSoftBusChannel() argument
176 if ((connectParams == NULL) || (returnChannelId == NULL)) { in OpenSoftBusChannel()
181 … int64_t channelId = (int64_t)OpenAuthSession(GROUP_MANAGER_PACKAGE_NAME, NULL, 0, connectParams); in OpenSoftBusChannel()
/ohos5.0/base/security/device_auth/services/legacy/group_manager/inc/channel_manager/soft_bus_channel/
H A Dsoft_bus_channel.h27 int32_t (*openChannel)(const char *connectParams, int64_t requestId, int64_t *returnChannelId);