Searched refs:sendLength (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_socket_outputstream.cpp | 52 int32_t sendLength = static_cast<int32_t>(length) + SOCKET_PACKET_HEAD_LENGTH; in Write() local 53 if (availableLength < static_cast<unsigned long>(sendLength)) { in Write() 55 availableLength, sendLength); in Write()
|
/ohos5.0/foundation/communication/netstack/test/fuzztest/websocketcapi_fuzzer/ |
H A D | websocket_capi_fuzzer.cpp | 123 int32_t sendLength = std::strlen(senddata); in SetSendDataTest() local 124 OH_WebSocketClient_Send(client, const_cast<char *>(senddata), sendLength); in SetSendDataTest() 135 int32_t sendLength = size; in SetSendDataLengthTest() local 136 OH_WebSocketClient_Send(client, const_cast<char *>(senddata), sendLength); in SetSendDataLengthTest()
|
/ohos5.0/foundation/communication/netstack/test/unittest/websocket_capi_unittest/ |
H A D | websocket_capi_unittest.cpp | 91 int sendLength = std::strlen(senddata); variable 92 ret = OH_WebSocketClient_Send(client, const_cast<char *>(senddata), sendLength);
|
/ohos5.0/foundation/communication/netstack/test/fuzztest/websocketinnerapi_fuzzer/ |
H A D | websocket_inner_fuzzer.cpp | 126 int32_t sendLength = std::strlen(data1); in SetSendDataTest() local 127 client->Send(const_cast<char *>(data1), sendLength); in SetSendDataTest()
|
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/websocket/websocket_exec/src/ |
H A D | websocket_exec.cpp | 401 …int sendLength = lws_write(wsi, reinterpret_cast<unsigned char *>(sendData.data) + LWS_SEND_BUFFER… in LwsCallbackClientWritable() local 404 NETSTACK_LOGD("lws send data length is %{public}d", sendLength); in LwsCallbackClientWritable()
|