HomeSort by relevance Sort by last modified time
    Searched refs:BUFSIZE (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 66 BUFSIZE = 8*1024
332 n = self.sock.send(s[:BUFSIZE])
351 s = self.sock.recv(BUFSIZE)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 66 BUFSIZE = 8*1024
332 n = self.sock.send(s[:BUFSIZE])
351 s = self.sock.recv(BUFSIZE)
  /external/curl/lib/
krb5.c 197 input_buffer.length = snprintf(input_buffer.value, BUFSIZE, "%s@%s",
urldata.h 202 #undef BUFSIZE
203 #define BUFSIZE CURL_MAX_WRITE_SIZE
    [all...]
telnet.c     [all...]
transfer.c 406 data->set.buffer_size : BUFSIZE;
674 /* The 'excess' amount below can't be more than BUFSIZE which
890 result = Curl_fillreadbuffer(conn, BUFSIZE, &fillcount);
922 data->state.scratch = malloc(2 * BUFSIZE);
    [all...]
smb.c 605 int nread = smbc->upload_size > BUFSIZE ? BUFSIZE :
  /external/libjpeg-turbo/
jchuff.c 424 #define BUFSIZE (DCTSIZE2 * 4)
427 if (state->free_in_buffer < BUFSIZE) { \
459 JOCTET _buffer[BUFSIZE], *buffer;
488 JOCTET _buffer[BUFSIZE], *buffer;
    [all...]
jdhuff.c 752 #define BUFSIZE (DCTSIZE2 * 8)
768 if (cinfo->src->bytes_in_buffer < BUFSIZE * (size_t)cinfo->blocks_in_MCU
  /external/tcpdump/
addrtoname.c 476 char buf[BUFSIZE];
483 char buf2[BUFSIZE];
508 snprintf(cp, BUFSIZE - (2 + 5*3), " (oui %s)",
523 char buf[BUFSIZE];
print-ahcp.c 107 char buf[BUFSIZE];
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 539 public static final int BUFSIZE = 8192;
571 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE);
577 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE);
771 byte[] buf = new byte[HTTPSession.BUFSIZE];
776 this.inputStream.mark(HTTPSession.BUFSIZE);
778 read = this.inputStream.read(buf, 0, HTTPSession.BUFSIZE);
796 read = this.inputStream.read(buf, this.rlen, HTTPSession.BUFSIZE - this.rlen);
    [all...]
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 217 const int bufsize = 4*1024; local
224 char* buf = (char*)malloc(bufsize);
252 while ((amt = read(fd, buf, bufsize)) != 0 && bytesLeft > 0) {
267 memset(buf, 0, bufsize);
269 amt = bytesLeft < bufsize ? bytesLeft : bufsize;
314 const int bufsize = 4*1024; local
317 char* buf = (char*)malloc(bufsize);
322 while ((amt = read(fd, buf, bufsize)) != 0) {
551 const size_t BUFSIZE = 32 * 1024
    [all...]
  /external/elfutils/libcpu/
i386_disasm.c 266 size_t bufsize; member in struct:output_data
292 if (unlikely (bufcnt == bufsize)) \
308 if (unlikely (bufcnt + _len > bufsize)) \
322 #define BUFSIZE 512
323 char initbuf[BUFSIZE];
326 size_t bufsize = BUFSIZE; local
334 .bufsize = bufsize,
459 buf = malloc (2 * bufsize);
    [all...]
  /external/webrtc/webrtc/base/
proxydetect.cc 246 const size_t BUFSIZE = 256;
247 char buffer[BUFSIZE];
269 if (len >= BUFSIZE)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cucdtst.c     [all...]
cnumtst.c     [all...]
  /system/core/adb/
commandline.cpp 407 const size_t BUFSIZE = 32 * 1024;
408 char* buf = (char*) malloc(BUFSIZE);
421 len = unix_read(inFd, buf, BUFSIZE);
423 len = adb_read(inFd, buf, BUFSIZE);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xlibint.h 366 #ifndef BUFSIZE
367 #define BUFSIZE 2048 /* X output buffer size. */
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xlibint.h 358 #ifndef BUFSIZE
359 #define BUFSIZE 2048 /* X output buffer size. */
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mhlib.py 613 BUFSIZE = 16*1024
617 buf = txt.read(BUFSIZE)
    [all...]
tarfile.py 269 BUFSIZE = 16 * 1024
270 blocks, remainder = divmod(length, BUFSIZE)
272 buf = src.read(BUFSIZE)
273 if len(buf) < BUFSIZE:
398 def __init__(self, name, mode, comptype, fileobj, bufsize):
416 self.bufsize = bufsize
478 while len(self.buf) > self.bufsize:
479 self.fileobj.write(self.buf[:self.bufsize])
480 self.buf = self.buf[self.bufsize:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mhlib.py 613 BUFSIZE = 16*1024
617 buf = txt.read(BUFSIZE)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mhlib.py 613 BUFSIZE = 16*1024
617 buf = txt.read(BUFSIZE)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mhlib.py 613 BUFSIZE = 16*1024
617 buf = txt.read(BUFSIZE)
    [all...]

Completed in 2602 milliseconds

1 23 4 5