Searched refs:maxBufferSize (Results 1 - 8 of 8) sorted by relevance
/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/src/ |
H A D | tag_nci_adapter_rw.cpp | 780 const uint32_t maxBufferSize = 1024;
in Reselect() local 781 uint8_t buffer[maxBufferSize] = {0};
in Reselect() 797 NDEF_MsgInit(buffer, maxBufferSize, &curDataSize);
in Reselect() 798 NDEF_MsgAddRec(buffer, maxBufferSize, &curDataSize, NDEF_TNF_EMPTY, NULL, 0, NULL, 0, NULL, 0);
in Reselect()
|
H A D | tag_nci_adapter.cpp | 1008 const uint32_t maxBufferSize = 1024; in WriteNdef() local 1009 uint8_t buffer[maxBufferSize] = {0}; in WriteNdef() 1025 NDEF_MsgInit(buffer, maxBufferSize, &curDataSize); in WriteNdef() 1026 NDEF_MsgAddRec(buffer, maxBufferSize, &curDataSize, NDEF_TNF_EMPTY, NULL, 0, NULL, 0, NULL, 0); in WriteNdef()
|
/foundation/communication/netstack/test/unittest/tls_test/server/ |
H A D | tls_socket_server_branch_test.cpp | 103 int maxBufferSize = 0; in HWTEST_F() local 104 auto value = connection->Recv(buffer, maxBufferSize); in HWTEST_F() 211 int maxBufferSize = 0; in HWTEST_F() local 212 auto value = connection->Recv(buffer, maxBufferSize); in HWTEST_F()
|
/foundation/communication/netstack/test/unittest/tlssocket/server/ |
H A D | tls_socket_server_branch_test.cpp | 103 int maxBufferSize = 0; in HWTEST_F() local 104 auto value = connection->Recv(buffer, maxBufferSize); in HWTEST_F() 211 int maxBufferSize = 0; in HWTEST_F() local 212 auto value = connection->Recv(buffer, maxBufferSize); in HWTEST_F()
|
/foundation/communication/netstack/interfaces/innerkits/tls_socket/include/ |
H A D | tls_socket_server.h | 265 * @param maxBufferSize the size of the data received from the server 268 int Recv(char *buffer, int maxBufferSize);
|
H A D | tls_socket.h | 472 * @param maxBufferSize the size of the data received from the server 475 int Recv(char *buffer, int maxBufferSize);
|
/foundation/communication/netstack/frameworks/js/napi/tls/src/ |
H A D | tls_socket.cpp | 1311 int TLSSocket::TLSSocketInternal::Recv(char *buffer, int maxBufferSize) in Recv() argument 1319 int ret = SSL_read(ssl_, buffer, maxBufferSize); in Recv()
|
H A D | tls_socket_server.cpp | 807 int TLSSocketServer::Connection::Recv(char *buffer, int maxBufferSize)
in Recv() argument 813 return SSL_read(ssl_, buffer, maxBufferSize);
in Recv()
|
Completed in 19 milliseconds