HomeSort by relevance Sort by last modified time
    Searched defs:BUFSIZE (Results 76 - 100 of 108) sorted by null

1 2 34 5

  /prebuilts/gdb/linux-x86/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/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/clang/test/Analysis/
taint-tester.c 5 #define BUFSIZE 10
6 int Buffer[BUFSIZE];
  /external/toybox/toys/pending/
telnetd.c 53 #define BUFSIZE 4*1024
60 char buff1[BUFSIZE], buff2[BUFSIZE];
349 if (tm->pty_fd > 0 && tm->buff1_avail < BUFSIZE) FD_SET(tm->pty_fd, &rd);
350 if (tm->new_fd >= 0 && tm->buff2_avail < BUFSIZE) FD_SET(tm->new_fd, &rd);
386 BUFSIZE-tm->buff1_avail)) <= 0) break;
394 BUFSIZE-tm->buff2_avail)) <= 0) break;
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 48 private static final int BUFSIZE = 4096;
110 b = new BufferedOutputStream(f, BUFSIZE);
136 b = new BufferedInputStream(f, BUFSIZE);
  /system/extras/ioshark/
ioshark_bench_subr.c 356 #define BUFSIZE 8192
383 char dev_name[BUFSIZE];
392 if (fgets(dev_name, BUFSIZE, cmd) == NULL) {
421 char line[BUFSIZE], dev_name[BUFSIZE];
430 char blockdev_name[BUFSIZE];
479 char line[BUFSIZE], cpu[BUFSIZE];
  /toolchain/binutils/binutils-2.25/gprof/
corefile.c 489 const int BUFSIZE = 1024;
490 char * buf = (char *) xmalloc (BUFSIZE);
491 char * address = (char *) xmalloc (BUFSIZE);
493 char * name = (char *) xmalloc (BUFSIZE);
496 while (!feof (f) && fgets (buf, BUFSIZE - 1, f))
515 const int BUFSIZE = 1024;
516 char * buf = (char *) xmalloc (BUFSIZE);
517 char * address = (char *) xmalloc (BUFSIZE);
519 char * name = (char *) xmalloc (BUFSIZE);
551 while (!feof (f) && fgets (buf, BUFSIZE - 1, f)
    [all...]
  /external/libjpeg-turbo/
jchuff.c 431 #define BUFSIZE (DCTSIZE2 * 4)
434 if (state->free_in_buffer < BUFSIZE) { \
466 JOCTET _buffer[BUFSIZE], *buffer;
492 JOCTET _buffer[BUFSIZE], *buffer;
512 JOCTET _buffer[BUFSIZE], *buffer;
    [all...]
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 216 const int bufsize = 4*1024; local
223 char* buf = (char*)malloc(bufsize);
251 while ((amt = read(fd, buf, bufsize)) != 0 && bytesLeft > 0) {
266 memset(buf, 0, bufsize);
268 amt = bytesLeft < bufsize ? bytesLeft : bufsize;
313 const int bufsize = 4*1024; local
316 char* buf = (char*)malloc(bufsize);
321 while ((amt = read(fd, buf, bufsize)) != 0) {
552 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/ltp/utils/ffsb-6.0-rc2/
parser.c 31 #define BUFSIZE 1024
48 static char buf[BUFSIZE];
52 ret = fgets(buf, BUFSIZE, f);
81 len = strnlen(buf, BUFSIZE);
200 char temp[BUFSIZE];
203 len = strnlen(string, BUFSIZE);
204 sprintf(search_str, "%s=%%%ds\\n", string, BUFSIZE - len - 1);
299 char temp[BUFSIZE];
302 len = strnlen(string, BUFSIZE);
303 sprintf(search_str, "%s%%%ds\\n", string, BUFSIZE - len - 1)
    [all...]
  /external/openssh/regress/
netcat.c 88 #define BUFSIZE 16384
773 unsigned char netinbuf[BUFSIZE];
775 unsigned char stdinbuf[BUFSIZE];
874 if (pfd[POLL_STDIN].revents & POLLIN && stdinbufpos < BUFSIZE) {
884 if (stdinbufpos == BUFSIZE)
897 if (stdinbufpos < BUFSIZE)
901 if (pfd[POLL_NETIN].revents & POLLIN && netinbufpos < BUFSIZE) {
915 if (netinbufpos == BUFSIZE)
932 if (netinbufpos < BUFSIZE)
973 size_t num = BUFSIZE - *bufpos
    [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...]
  /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...]
  /system/core/adb/
commandline.cpp 364 const size_t BUFSIZE = 32 * 1024;
365 char* buf = (char*) malloc(BUFSIZE);
378 len = unix_read(inFd, buf, BUFSIZE);
380 len = adb_read(inFd, buf, BUFSIZE);
    [all...]
  /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...]
  /external/curl/lib/
urldata.h 202 #undef BUFSIZE
203 #define BUFSIZE CURL_MAX_WRITE_SIZE
    [all...]
  /external/guice/lib/build/
felix-2.0.5.jar 
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 

Completed in 712 milliseconds

1 2 34 5