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

12 3 4 5

  /external/curl/lib/
file.c 363 result = Curl_fillreadbuffer(conn, BUFSIZE, &readcount);
495 snprintf(buf, BUFSIZE-1,
562 (expected_size < CURL_OFF_T_C(BUFSIZE) - CURL_OFF_T_C(1)) ?
563 curlx_sotouz(expected_size) : BUFSIZE - 1;
566 bytestoread = BUFSIZE-1;
http_proxy.c 267 while((nread<BUFSIZE) && (keepon && !error)) {
286 DEBUGASSERT(ptr+BUFSIZE-nread <= data->state.buffer+BUFSIZE+1);
287 result = Curl_read(conn, tunnelsocket, ptr, BUFSIZE-nread,
  /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;
  /external/selinux/policycoreutils/run_init/
open_init_pty.c 47 #define BUFSIZE 2048 /* The ring buffer size */
218 char inbuf_mem[BUFSIZE];
219 char outbuf_mem[BUFSIZE];
  /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);
Storage.java 50 private static final int BUFSIZE = 4096;
  /libcore/ojluni/src/main/native/
java_util_zip_ZipFile.c 314 #define BUFSIZE 8192
316 jbyte buf[BUFSIZE];
318 if (len > BUFSIZE) {
319 len = BUFSIZE;
  /external/clang/test/Analysis/
taint-generic.c 32 #define BUFSIZE 10
34 int Buffer[BUFSIZE];
  /external/fonttools/Lib/fontTools/misc/
xmlReader.py 11 BUFSIZE = 0x4000
42 chunk = file.read(BUFSIZE)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimetools.py 246 BUFSIZE = 8192
248 line = input.read(BUFSIZE)
filecmp.py 19 BUFSIZE=8*1024
65 bufsize = BUFSIZE
68 b1 = fp1.read(bufsize)
69 b2 = fp2.read(bufsize)
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimetools.py 246 BUFSIZE = 8192
248 line = input.read(BUFSIZE)
filecmp.py 19 BUFSIZE=8*1024
65 bufsize = BUFSIZE
68 b1 = fp1.read(bufsize)
69 b2 = fp2.read(bufsize)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 246 BUFSIZE = 8192
248 line = input.read(BUFSIZE)
filecmp.py 19 BUFSIZE=8*1024
65 bufsize = BUFSIZE
68 b1 = fp1.read(bufsize)
69 b2 = fp2.read(bufsize)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 246 BUFSIZE = 8192
248 line = input.read(BUFSIZE)
filecmp.py 19 BUFSIZE=8*1024
65 bufsize = BUFSIZE
68 b1 = fp1.read(bufsize)
69 b2 = fp2.read(bufsize)
  /system/extras/tests/net_test/
netlink.py 60 BUFSIZE = 65536
148 data = self.sock.recv(self.BUFSIZE)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeDecompressor.java 37 * final static int BUFSIZE = 512;
38 * char [] charBuffer = new char [ BUFSIZE ];
48 * charBuffer, 0, BUFSIZE);
89 private final static int BUFSIZE = 3;
92 private byte [] fBuffer = new byte [BUFSIZE];
191 if(fBufferLength != BUFSIZE) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeDecompressor.java 36 * final static int BUFSIZE = 512;
37 * char [] charBuffer = new char [ BUFSIZE ];
47 * charBuffer, 0, BUFSIZE);
88 private final static int BUFSIZE = 3;
91 private byte [] fBuffer = new byte [BUFSIZE];
194 if(fBufferLength != BUFSIZE) {
  /packages/apps/TV/usbtuner/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeDecompressor.java 36 * final static int BUFSIZE = 512;
37 * char [] charBuffer = new char [ BUFSIZE ];
47 * charBuffer, 0, BUFSIZE);
88 private final static int BUFSIZE = 3;
91 private byte [] fBuffer = new byte [BUFSIZE];
194 if(fBufferLength != BUFSIZE) {
  /toolchain/binutils/binutils-2.25/binutils/
ar.c 983 char *cbuf = (char *) xmalloc (BUFSIZE);
1001 if (tocopy > BUFSIZE)
1002 tocopy = BUFSIZE;
1034 char *cbuf = (char *) xmalloc (BUFSIZE);
1078 if (tocopy > BUFSIZE)
1079 tocopy = BUFSIZE;
    [all...]
  /external/avahi/avahi-daemon/
static-services.c 617 #define BUFSIZE (10*1024)
619 if (!(buffer = XML_GetBuffer(parser, BUFSIZE))) {
624 if ((n = read(fd, buffer, BUFSIZE)) < 0) {
  /prebuilts/gdb/darwin-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/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)

Completed in 777 milliseconds

12 3 4 5