HomeSort by relevance Sort by last modified time
    Searched full:bufsiz (Results 1 - 25 of 255) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/libedit/src/
fgetln.c 51 static size_t bufsiz = 0; local
56 bufsiz = BUFSIZ;
57 if ((buf = malloc(bufsiz)) == NULL)
61 if (fgets(buf, bufsiz, fp) == NULL)
66 size_t nbufsiz = bufsiz + BUFSIZ;
78 if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL) {
79 buf[bufsiz] = '\0'
    [all...]
  /external/dhcpcd-6.8.2/compat/
getline.c 37 #undef BUFSIZ
38 #define BUFSIZ 128
58 if (*buf == NULL || bytes != 0 || *buflen < BUFSIZ) {
59 newlen = *buflen + BUFSIZ;
67 memset(p, 0, BUFSIZ);
68 if (fgets(p, BUFSIZ, fp) == NULL)
  /libcore/luni/src/main/native/
JniException.cpp 17 #include <stdio.h> // For BUFSIZ
23 char buf[BUFSIZ];
  /bionic/tests/
libc_logging_test.cpp 26 char buf[BUFSIZ];
114 char buf[BUFSIZ];
124 char buf[BUFSIZ];
134 char buf[BUFSIZ];
148 char buf[BUFSIZ];
162 char buf[BUFSIZ];
172 char buf[BUFSIZ];
182 char buf[BUFSIZ];
mntent_test.cpp 30 char buf[BUFSIZ];
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
hm11.cxx 53 char buffer[BUFSIZ];
59 memset(buffer, 0, BUFSIZ);
61 ble->readData(buffer, BUFSIZ - 1);
74 char buffer[BUFSIZ];
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
macostools.py 23 BUFSIZ=0x80000 # Copy in 0.5Mb chunks
99 d = ifp.read(BUFSIZ)
102 d = ifp.read(BUFSIZ)
108 d = ifp.read(BUFSIZ)
111 d = ifp.read(BUFSIZ)
Audio_mac.py 115 BUFSIZ = 10000
117 data = af.readframes(BUFSIZ)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macostools.py 23 BUFSIZ=0x80000 # Copy in 0.5Mb chunks
99 d = ifp.read(BUFSIZ)
102 d = ifp.read(BUFSIZ)
108 d = ifp.read(BUFSIZ)
111 d = ifp.read(BUFSIZ)
Audio_mac.py 115 BUFSIZ = 10000
117 data = af.readframes(BUFSIZ)
  /external/harfbuzz_ng/src/
test-buffer-serialize.cc 103 char line[BUFSIZ], out[BUFSIZ];
  /external/libpcap/Win32/Src/
getnetent.c 28 static char line[BUFSIZ+1];
66 p = fgets(line, BUFSIZ, netf);
getservent.c 52 static char line[BUFSIZ+1];
87 if ((p = fgets(line, BUFSIZ, servf)) == NULL)
  /external/e2fsprogs/lib/et/
vfprintf.c 33 char localbuf[BUFSIZ];
  /external/expat/examples/
elements.c 46 char buf[BUFSIZ];
  /external/libxml2/win32/wince/
wincecompat.h 28 #define BUFSIZ 4096
  /external/selinux/libsepol/src/
genbools.c 35 char name1[BUFSIZ];
39 strncpy(name1, tok, BUFSIZ - 1);
72 char localbools[BUFSIZ];
73 char name[BUFSIZ];
  /external/valgrind/memcheck/tests/solaris/
name_service_door.stdout.exp 7 bufsiz=16384
  /bionic/libc/dns/net/
getnameinfo.c 395 ip6_sa2str(const struct sockaddr_in6 *sa6, char *buf, size_t bufsiz, int flags)
409 n = snprintf(buf, bufsiz, "%u", sa6->sin6_scope_id);
410 if (n < 0 || n >= bufsiz)
419 bufsiz >= IF_NAMESIZE) {
427 n = snprintf(buf, bufsiz, "%u", sa6->sin6_scope_id);
428 if (n < 0 || (size_t) n >= bufsiz)
  /external/selinux/libselinux/src/
booleans.c 352 char name1[BUFSIZ];
356 strncpy(name1, tok, BUFSIZ - 1);
385 char outbuf[BUFSIZ];
416 char boolname[BUFSIZ];
525 char localbools[BUFSIZ];
528 char name[BUFSIZ];
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
makebuf.c 86 *bufsize = BUFSIZ;
93 *bufsize = BUFSIZ;
setbuf.c 40 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
ungetc.c 56 if ((p = malloc((size_t)BUFSIZ)) == NULL)
59 _UB(fp)._size = BUFSIZ;
60 p += BUFSIZ - sizeof(fp->_ubuf);
  /hardware/bsp/intel/peripheral/libupm/examples/java/
HM11Sample.java 28 private static final int BUFSIZ = 1024;
50 byte[] buffer = new byte[BUFSIZ];
  /prebuilts/misc/windows/sdl2/test/
testiconv.c 45 char buffer[BUFSIZ];

Completed in 2839 milliseconds

1 2 3 4 5 6 7 8 91011