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

/barrelfish-master/lib/openssl-1.0.0d/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;

Completed in 82 milliseconds