Searched refs:buf (Results 101 - 125 of 4797) sorted by relevance

1234567891011>>

/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Dewrite.c43 ewrite (int fd, const void *buf, size_t nbytes) argument
47 ret = net_write (fd, buf, nbytes);
/freebsd-10.1-release/lib/libc/iconv/
H A Dcitrus_aliasname_local.h35 void *buf, size_t bufsize)
39 buf, bufsize, _LOOKUP_CASE_SENSITIVE));
34 __unaliasname(const char *dbname, const char *alias, void *buf, size_t bufsize) argument
/freebsd-10.1-release/share/examples/libusb20/
H A Dutil.h14 void print_formatted(uint8_t *buf, uint32_t len);
/freebsd-10.1-release/sys/boot/zfs/
H A Ddevicename_stubs.c44 static char buf[128]; local
46 return (buf);
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/ctf/
H A Dctf_subr.c43 void *buf = kobj_alloc(size, KM_NOWAIT|KM_SCRATCH); local
45 if (buf == NULL)
48 return (buf);
52 ctf_data_free(void *buf, size_t size) argument
54 kobj_free(buf, size);
59 ctf_data_protect(void *buf, size_t size) argument
72 ctf_free(void *buf, size_t size) argument
74 kobj_free(buf, size);
/freebsd-10.1-release/tools/regression/lib/libc/stdio/
H A Dtest-print-positional.c60 char buf[1024]; local
67 snprintf(buf, sizeof buf,
90 strcmp(buf, correct) == 0 ? "" : "not ");
119 snprintf(buf, sizeof buf, "%2$.*4$s %2$.*3$s %1$s",
122 strcmp(buf, correct2) == 0 ? "" : "not ");
124 swprintf(wbuf1, sizeof buf, L"%2$.*4$s %2$.*3$s %1$s",
/freebsd-10.1-release/crypto/openssl/crypto/des/
H A Dread2pwd.c120 char buf[BUFSIZ], buff[BUFSIZ]; local
122 if ((ok = UI_UTIL_read_pw(buf, buff, BUFSIZ, prompt, verify)) == 0)
123 DES_string_to_key(buf, key);
124 OPENSSL_cleanse(buf, BUFSIZ);
133 char buf[BUFSIZ], buff[BUFSIZ]; local
135 if ((ok = UI_UTIL_read_pw(buf, buff, BUFSIZ, prompt, verify)) == 0)
136 DES_string_to_2keys(buf, key1, key2);
137 OPENSSL_cleanse(buf, BUFSIZ);
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dremote-fileio.h31 extern void remote_fileio_request (char *buf);
/freebsd-10.1-release/contrib/groff/src/libs/libgroff/
H A Dgetcwd.c28 char *getcwd(buf, size)
29 char *buf;
51 strcpy(buf, mybuf);
52 return buf;
H A Ditoa.c31 static char buf[INT_DIGITS + 2]; local
32 char *p = buf + INT_DIGITS + 1; /* points to terminating '\0' */
53 static char buf[UINT_DIGITS + 1]; local
54 char *p = buf + UINT_DIGITS; /* points to terminating '\0' */
H A Dstrerror.c41 static char buf[sizeof("Error ") + 1 + INT_DIGITS]; local
45 sprintf(buf, "Error %d", n);
46 return buf;
/freebsd-10.1-release/contrib/sendmail/libsm/
H A Dstrerror.c50 static char buf[64]; local
56 (void) sm_snprintf(buf, sizeof(buf), "Error %d", err);
57 return buf;
/freebsd-10.1-release/crypto/openssh/
H A Droaming_dummy.c39 roaming_write(int fd, const void *buf, size_t count, int *cont) argument
41 return write(fd, buf, count);
45 roaming_read(int fd, void *buf, size_t count, int *cont) argument
49 return read(fd, buf, count);
/freebsd-10.1-release/lib/libc/sys/
H A Dpread.c46 pread(fd, buf, nbyte, offset)
48 void *buf;
54 return (__sys_pread(fd, buf, nbyte, offset));
56 return (__sys_freebsd6_pread(fd, buf, nbyte, 0, offset));
H A Dpwrite.c46 pwrite(fd, buf, nbyte, offset)
48 const void *buf;
53 return (__sys_pwrite(fd, buf, nbyte, offset));
55 return (__sys_freebsd6_pwrite(fd, buf, nbyte, 0, offset));
/freebsd-10.1-release/sbin/setkey/
H A Dtest-policy.c71 int test(char *buf, int family);
77 char *buf; local
81 if ((buf = setpolicy(requests[i])) == NULL)
83 printf("\tsetlen:%d\n", PFKEY_EXTLEN(buf));
86 test(buf, PF_INET);
89 test(buf, PF_INET6);
90 free(buf);
123 char *buf = NULL; local
127 if ((buf = ipsec_dump_policy(getbuf, NULL)) == NULL)
130 printf("\t[%s]\n", buf);
141 char *buf; local
[all...]
/freebsd-10.1-release/usr.sbin/makefs/cd9660/
H A Dcd9660_debug.c225 unsigned char buf[CD9660_SECTOR_SIZE]; local
238 fread(buf, 1, CD9660_SECTOR_SIZE, fd);
239 t = (int)((unsigned char)buf[0]);
242 memcpy(&bootVD, buf, CD9660_SECTOR_SIZE);
245 memcpy(&primaryVD, buf, CD9660_SECTOR_SIZE);
248 debug_dump_to_xml_volume_descriptor(buf, sector);
267 debug_dump_to_xml_padded_hex_output(const char *element, unsigned char *buf, argument
275 t = (unsigned char)buf[i];
283 t = (unsigned char)buf[i];
290 debug_get_encoded_number(unsigned char* buf, in argument
331 debug_dump_integer(const char *element, char* buf, int mode) argument
344 debug_dump_directory_record_9_1(unsigned char* buf) argument
375 debug_dump_to_xml_volume_descriptor(unsigned char* buf, int sector) argument
[all...]
/freebsd-10.1-release/contrib/binutils/libiberty/
H A Dasprintf.c47 asprintf (char **buf, const char *fmt, ...) argument
51 VA_FIXEDARG (ap, char **, buf);
53 status = vasprintf (buf, fmt, ap);
/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dasprintf.c47 asprintf (char **buf, const char *fmt, ...) argument
51 VA_FIXEDARG (ap, char **, buf);
53 status = vasprintf (buf, fmt, ap);
/freebsd-10.1-release/contrib/ipfilter/lib/
H A Dprintbuf.c17 printbuf(buf, len, zend)
18 char *buf;
25 for (s = buf, i = len; i; i--) {
/freebsd-10.1-release/contrib/wpa/src/ap/
H A Dctrl_iface_ap.h13 char *buf, size_t buflen);
15 char *buf, size_t buflen);
17 char *buf, size_t buflen);
/freebsd-10.1-release/lib/libc/compat-43/
H A Dgetwd.c43 getwd(char *buf) argument
47 if ( (p = getcwd(buf, MAXPATHLEN)) )
49 (void)strerror_r(errno, buf, MAXPATHLEN);
/freebsd-10.1-release/lib/libc/net/
H A Drecv.c42 recv(s, buf, len, flags)
45 void *buf;
51 return (recvfrom(s, buf, len, flags, NULL, 0));
/freebsd-10.1-release/lib/libc/stdio/
H A Dsetbuf.c43 setbuf(FILE * __restrict fp, char * __restrict buf) argument
45 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
H A Dsetbuffer.c42 setbuffer(FILE *fp, char *buf, int size) argument
45 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, (size_t)size);

Completed in 275 milliseconds

1234567891011>>