HomeSort by relevance Sort by last modified time
    Searched defs:packetsize (Results 1 - 2 of 2) sorted by null

  /device/google/cuttlefish_common/host/libs/vadb/
usb_cmd_data_transfer.cpp 70 auto packetsize = fd->Read(&data_[got], len - got); local
71 got += packetsize;
77 } else if (packetsize == 0) {
  /external/curl/lib/
socks.c 226 int packetsize = 9 + local
237 if(packetsize + hostnamelen <= SOCKS4REQLEN)
238 strcpy((char *)socksreq + packetsize, hostname);
245 packetsize + hostnamelen,
247 if(code || (written != packetsize + hostnamelen)) {
262 packetsize = 8; /* receive data size */
265 result = Curl_blockread_all(conn, sock, (char *)socksreq, packetsize,
267 if(result || (actualread != packetsize)) {

Completed in 166 milliseconds