Searched refs:bytesRead (Results 1 - 17 of 17) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/MacOS/GetHTTPS.src/
H A DGetHTTPS.cpp150 int bytesRead; local
155 bytesRead = SSL_read(ssl,tempString,sizeof(tempString) - 1);
157 if (bytesRead == 0 && MacSocket_RemoteEndIsClosing(theSocket))
162 else if (bytesRead < 0)
164 SetErrorMessageAndLongIntAndBail("OpenSSL: Error reading data via ssl, SSL_read() = ",bytesRead);
168 tempString[bytesRead] = '\0';
H A DMacSocket.cpp1197 int bytesRead; local
1205 bytesRead = theOTResult;
1208 printf("MacSocket_recv: read %d bytes in part\n",bytesRead);
1214 bytesRead = 0;
1223 totalBytesRead += bytesRead;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/MacOS/GetHTTPS.src/
H A DGetHTTPS.cpp150 int bytesRead; local
155 bytesRead = SSL_read(ssl,tempString,sizeof(tempString) - 1);
157 if (bytesRead == 0 && MacSocket_RemoteEndIsClosing(theSocket))
162 else if (bytesRead < 0)
164 SetErrorMessageAndLongIntAndBail("OpenSSL: Error reading data via ssl, SSL_read() = ",bytesRead);
168 tempString[bytesRead] = '\0';
H A DMacSocket.cpp1197 int bytesRead; local
1205 bytesRead = theOTResult;
1208 printf("MacSocket_recv: read %d bytes in part\n",bytesRead);
1214 bytesRead = 0;
1223 totalBytesRead += bytesRead;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/MacOS/GetHTTPS.src/
H A DGetHTTPS.cpp150 int bytesRead; local
155 bytesRead = SSL_read(ssl,tempString,sizeof(tempString) - 1);
157 if (bytesRead == 0 && MacSocket_RemoteEndIsClosing(theSocket))
162 else if (bytesRead < 0)
164 SetErrorMessageAndLongIntAndBail("OpenSSL: Error reading data via ssl, SSL_read() = ",bytesRead);
168 tempString[bytesRead] = '\0';
H A DMacSocket.cpp1197 int bytesRead; local
1205 bytesRead = theOTResult;
1208 printf("MacSocket_recv: read %d bytes in part\n",bytesRead);
1214 bytesRead = 0;
1223 totalBytesRead += bytesRead;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/mtools-4.0.10/
H A Dfloppyd_installtest.c78 int bytesRead; local
95 bytesRead = read_dword(sock);
97 if (bytesRead != 4 && bytesRead != 12) {
109 if(bytesRead == 8) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DFileFunctions.cpp197 while (int bytesRead = gzread(inputFile, buffer, sizeof(buffer))) {
198 if (bytesRead > 0) {
199 // AddDebugLogLineN(logFileIO, CFormat(wxT("Read %u bytes")) % bytesRead);
200 target.Write(buffer, bytesRead);
201 } else if (bytesRead < 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/wince/
H A Dfilefnwce.cpp144 DWORD bytesRead = 0; local
146 if (ReadFile((HANDLE) fd, buf, (DWORD) count, &bytesRead, NULL))
147 return bytesRead;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libcsc-0.82.3/src/
H A Dcsc_io.c667 int bytesRead = 0; local
681 count = read (fd, &bufPtr[ bytesRead ], readCount);
685 bytesRead += count;
689 bytesRead = count;
692 while ((count > 0) && (bytesRead < (int)size));
694 return (bytesRead);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/vt6656/
H A Dusbpipe.c556 unsigned long bytesRead; local
563 bytesRead = urb->actual_length;
581 pDevice->ulBulkInBytesRead += bytesRead;
591 if (RXbBulkInProcessData(pDevice, pRCB, bytesRead) == TRUE)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/
H A Dbuffer_iocp.c252 DWORD bytesRead; local
290 if (WSARecv(buf_o->fd, buf_o->buffers, nvecs, &bytesRead, &flags,
H A Dbuffer.c2108 DWORD bytesRead; local
2110 if (WSARecv(fd, vecs, nvecs, &bytesRead, &flags, NULL, NULL)) {
2118 n = bytesRead;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dutilsexc.cpp419 DWORD bytesRead; local
420 if ( !::ReadFile(m_hInput, buffer, len, &bytesRead, NULL) )
427 // bytesRead is set to 0, as desired, if an error occurred
428 return bytesRead;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dnwlib.c75 size_t *bytesRead,
66 _NonAppStart( void *NLMHandle, void *errorScreen, const char *cmdLine, const char *loadDirPath, size_t uninitializedDataLength, void *NLMFileHandle, int (*readRoutineP)( int conn, void *fileHandle, size_t offset, size_t nbytes, size_t *bytesRead, void *buffer ), size_t customDataOffset, size_t customDataSize, int messageCount, const char **messages ) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/vtls/
H A Dcurl_darwinssl.c128 size_t bytesRead; local
135 bytesRead = 0;
164 bytesRead = rrtn;
166 bytesToGo -= bytesRead;
167 currData += bytesRead;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/lib/
H A Djcommon-1.0.16.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/keypoint/ org/ org/jfree/ org/jfree/base/ org/ ...

Completed in 292 milliseconds