Searched refs:bufsiz (Results 1 - 17 of 17) 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 Dpriv_aspacemgr.h111 extern Int ML_(am_readlink) ( HChar* path, HChar* buf, UInt bufsiz );
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/yaffs2/yaffs2/direct/
H A Dyaffsfs.h204 int yaffs_readlink(const char *path, char *buf, int bufsiz);
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/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/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/openssl/apps/
H A Dapps.h227 int password_callback(char *buf, int bufsiz, int verify,
/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/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h795 #define __sanitizer_syscall_pre_readlink(path, buf, bufsiz) \
797 (long)(bufsiz))
798 #define __sanitizer_syscall_post_readlink(res, path, buf, bufsiz) \
800 (long)(bufsiz))
1652 #define __sanitizer_syscall_pre_readlinkat(dfd, path, buf, bufsiz) \
1654 (long)(buf), (long)(bufsiz))
1655 #define __sanitizer_syscall_post_readlinkat(res, dfd, path, buf, bufsiz) \
1657 (long)(buf), (long)(bufsiz))
2445 void __sanitizer_syscall_pre_impl_readlink(long path, long buf, long bufsiz);
2447 long bufsiz);
[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/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/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-generic.c3890 const char *, path, char *, buf, int, bufsiz);
H A Dsyswrap-linux.c4540 int, dfd, const char *, path, char *, buf, int, bufsiz);
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar.stderr.exp950 Syscall param readlink(bufsiz) contains uninitialised byte(s)

Completed in 814 milliseconds