Searched refs:buflen (Results 101 - 125 of 511) sorted by relevance

1234567891011>>

/freebsd-9.3-release/lib/libcrypt/
H A Dcrypt.h43 extern void b64_from_24bit(uint8_t B2, uint8_t B1, uint8_t B0, int n, int *buflen, char **cp);
/freebsd-9.3-release/tools/regression/bpf/bpf_filter/tests/
H A Dtest0045.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0051.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0054.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0056.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0057.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0059.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0060.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0062.h24 u_int buflen = 0; variable
H A Dtest0065.h24 u_int buflen = 0; variable
H A Dtest0068.h24 u_int buflen = 0; variable
H A Dtest0071.h24 u_int buflen = 0; variable
H A Dtest0076.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0078.h24 u_int buflen = sizeof(pkt); variable
H A Dtest0082.h24 u_int buflen = sizeof(pkt); variable
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dlwres_noop.c120 size_t buflen; local
131 buflen = LWRES_LWPACKET_LENGTH + payload_length;
132 buf = CTXMALLOC(buflen);
135 lwres_buffer_init(b, buf, (unsigned int)buflen);
137 pkt->length = (lwres_uint32_t)buflen;
148 CTXFREE(buf, buflen);
173 size_t buflen; local
184 buflen = LWRES_LWPACKET_LENGTH + payload_length;
185 buf = CTXMALLOC(buflen);
188 lwres_buffer_init(b, buf, (unsigned int)buflen);
[all...]
H A Dlwres_gnba.c121 size_t buflen; local
134 buflen = LWRES_LWPACKET_LENGTH + payload_length;
135 buf = CTXMALLOC(buflen);
138 lwres_buffer_init(b, buf, (unsigned int)buflen);
140 pkt->length = (lwres_uint32_t)buflen;
151 CTXFREE(buf, buflen);
178 size_t buflen; local
198 buflen = LWRES_LWPACKET_LENGTH + payload_length;
199 buf = CTXMALLOC(buflen);
202 lwres_buffer_init(b, buf, (unsigned int)buflen);
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dfile.h69 isc_file_mktemplate(const char *path, char *buf, size_t buflen);
80 * buflen should be at least strlen(path) + 15 characters or
96 *\li #ISC_R_NOSPACE buflen indicates buf is too small for the catenation
229 isc_file_progname(const char *filename, char *buf, size_t buflen);
238 * lower case. The name is written to 'buf', an array of 'buflen'
248 size_t buflen);
/freebsd-9.3-release/lib/libc/net/
H A Dgetproto.c66 size_t buflen; local
72 buflen = va_arg(ap, size_t);
90 if (__copy_protoent(&pe, pptr, buffer, buflen) != 0) {
101 size_t buflen, struct protoent **result)
122 defaultsrc, proto, pptr, buffer, buflen, &ret_errno);
100 getprotobynumber_r(int proto, struct protoent *pptr, char *buffer, size_t buflen, struct protoent **result) argument
H A Dgetprotoname.c68 size_t buflen; local
74 buflen = va_arg(ap, size_t);
98 if (__copy_protoent(&pe, pptr, buffer, buflen) != 0) {
110 size_t buflen, struct protoent **result)
130 defaultsrc, name, pptr, buffer, buflen, &ret_errno);
109 getprotobyname_r(const char *name, struct protoent *pptr, char *buffer, size_t buflen, struct protoent **result) argument
/freebsd-9.3-release/contrib/telnet/libtelnet/
H A Dsra.c358 sra_printsub(unsigned char *data, int cnt, unsigned char *buf, int buflen) argument
363 buf[buflen-1] = '\0'; /* make sure its NULL terminated */
364 buflen -= 1;
369 strncpy((char *)buf, " CONTINUE ", buflen);
373 strncpy((char *)buf, " REJECT ", buflen);
377 strncpy((char *)buf, " ACCEPT ", buflen);
380 BUMP(buf, buflen);
383 ADDC(buf, buflen, '"');
385 ADDC(buf, buflen, data[i]);
386 ADDC(buf, buflen, '"');
[all...]
/freebsd-9.3-release/tools/regression/lib/libc/nss/
H A Dtest-getaddr.c161 sdump_addrinfo(struct addrinfo *ai, char *buffer, size_t buflen) argument
165 written = snprintf(buffer, buflen, "%d %d %d %d %d ",
169 if (written > buflen)
171 buflen -= written;
173 written = snprintf(buffer, buflen, "%s ",
176 if (written > buflen)
178 buflen -= written;
181 written = snprintf(buffer, buflen, "(null)");
183 if (written > buflen)
185 buflen
[all...]
/freebsd-9.3-release/lib/libc/resolv/
H A Dres_data.c146 int buflen) /*!< size of buffer */
154 newrr_in, buf, buflen));
158 res_mkupdate(ns_updrec *rrecp_in, u_char *buf, int buflen) { argument
164 return (res_nmkupdate(&_res, rrecp_in, buf, buflen));
198 res_send(const u_char *buf, int buflen, u_char *ans, int anssiz) { argument
204 return (res_nsend(&_res, buf, buflen, ans, anssiz));
209 res_sendsigned(const u_char *buf, int buflen, ns_tsig_key *key, argument
217 return (res_nsendsigned(&_res, buf, buflen, key, ans, anssiz));
268 res_opt(int n0, u_char *buf, int buflen, int anslen) argument
270 return (res_nopt(&_res, n0, buf, buflen, ansle
139 res_mkquery(int op, const char *dname, int class, int type, const u_char *data, int datalen, const u_char *newrr_in, u_char *buf, int buflen) argument
[all...]
/freebsd-9.3-release/sbin/ddb/
H A Dddb_capture.c125 size_t buflen, len; local
130 if (sysctlbyname(SYSCTL_DDB_CAPTURE_DATA, NULL, &buflen, NULL, 0) < 0)
132 if (buflen == 0)
134 buffer = malloc(buflen);
137 bzero(buffer, buflen);
138 len = buflen;
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dfile.h73 isc_file_mktemplate(const char *path, char *buf, size_t buflen);
84 * buflen should be at least strlen(path) + 15 characters or
100 *\li #ISC_R_NOSPACE buflen indicates buf is too small for the catenation
256 isc_file_progname(const char *filename, char *buf, size_t buflen);
265 * lower case. The name is written to 'buf', an array of 'buflen'
275 size_t buflen);

Completed in 90 milliseconds

1234567891011>>