Searched defs:bufsiz (Results 1 - 11 of 11) sorted by relevance

/external/libedit/src/
H A Dfgetln.c51 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';
84 *len = bufsiz;
85 bufsiz = nbufsiz;
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-common.c271 Int ML_(am_readlink)(HChar* path, HChar* buf, UInt bufsiz) argument
276 (UWord)path, (UWord)buf, bufsiz);
278 res = VG_(do_syscall3)(__NR_readlink, (UWord)path, (UWord)buf, bufsiz);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dxml_libxml2.c205 int bufsiz; local
213 xmlDocDumpFormatMemory(doc, &buf, &bufsiz, 0);
/external/wpa_supplicant_8/src/utils/
H A Dxml_libxml2.c205 int bufsiz; local
213 xmlDocDumpFormatMemory(doc, &buf, &bufsiz, 0);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dxml_libxml2.c205 int bufsiz; local
213 xmlDocDumpFormatMemory(doc, &buf, &bufsiz, 0);
/external/ipsec-tools/src/libipsec/
H A Dpfkey.c1791 int bufsiz = 128 * 1024; /*is 128K enough?*/ local
1802 (void)setsockopt(so, SOL_SOCKET, SO_SNDBUF, &bufsiz, sizeof(bufsiz));
1803 (void)setsockopt(so, SOL_SOCKET, SO_RCVBUF, &bufsiz, sizeof(bufsiz));
1804 bufsiz = 256 * 1024;
1805 (void)setsockopt(so, SOL_SOCKET, SO_RCVBUF, &bufsiz, sizeof(bufsiz));
1806 bufsiz = 512 * 1024;
1807 (void)setsockopt(so, SOL_SOCKET, SO_RCVBUF, &bufsiz, sizeo
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcfile.c518 Int VG_(readlink) (const HChar* path, HChar* buf, UInt bufsiz) argument
521 /* res = readlink( path, buf, bufsiz ); */
524 (UWord)path, (UWord)buf, bufsiz);
526 res = VG_(do_syscall3)(__NR_readlink, (UWord)path, (UWord)buf, bufsiz);
/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.c1379 int yaffs_readlink(const char *path, char *buf, int bufsiz) argument
1402 memset(buf,0,bufsiz);
1403 strncpy(buf,alias,bufsiz - 1);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc111 INTERCEPTOR(SSIZE_T, readlink, const char *path, char *buf, SIZE_T bufsiz) { argument
113 SSIZE_T res = REAL(readlink)(path, buf, bufsiz);
/external/openssl/ssl/
H A Dssltest.c1177 size_t bufsiz = 256; /* small buffer for testing */ local
1179 if (!BIO_new_bio_pair(&server, bufsiz, &server_io, bufsiz))
1181 if (!BIO_new_bio_pair(&client, bufsiz, &client_io, bufsiz))
/external/openssl/apps/
H A Dapps.c549 int password_callback(char *buf, int bufsiz, int verify, argument
569 if (res > bufsiz)
570 res = bufsiz;
591 PW_MIN_LENGTH,bufsiz-1);
594 buff = (char *)OPENSSL_malloc(bufsiz);
596 PW_MIN_LENGTH,bufsiz-1, buf);
607 OPENSSL_cleanse(buff,(unsigned int)bufsiz);
617 OPENSSL_cleanse(buf,(unsigned int)bufsiz);
623 OPENSSL_cleanse(buf,(unsigned int)bufsiz);

Completed in 5333 milliseconds