Searched refs:bytesSoFar (Results 1 – 3 of 3) sorted by relevance
90 int char32, bytesExpected, bytesSoFar; in decodeLoop() local98 bytesSoFar = 1; in decodeLoop()103 bytesSoFar = toULength; in decodeLoop()111 if (bytesSoFar < bytesExpected) { in decodeLoop()117 toULength = bytesSoFar; in decodeLoop()121 … if (((ch = toUBytesArray[bytesSoFar] = sourceArray[sourceIndex++]) & 0xc0) != 0x80) { in decodeLoop()124 toULength = bytesSoFar; in decodeLoop()125 cr = CoderResult.malformedForLength(bytesSoFar); in decodeLoop()129 bytesSoFar++; in decodeLoop()130 …} else if (bytesSoFar == bytesExpected && UTF8_MIN_CHAR32[bytesExpected] <= char32 && char32 <= 0x… in decodeLoop()[all …]
204 XmlRpcSocket::nbWrite(int fd, std::string& s, int *bytesSoFar) in nbWrite() argument206 int nToWrite = int(s.length()) - *bytesSoFar; in nbWrite()207 char *sp = const_cast<char*>(s.c_str()) + *bytesSoFar; in nbWrite()220 *bytesSoFar += n; in nbWrite()
34 static bool nbWrite(int socket, std::string& s, int *bytesSoFar);