Searched refs:databuf (Results 1 - 14 of 14) sorted by relevance

/freebsd-9.3-release/lib/librpcsec_gss/
H A Drpcsec_gss_prot.c100 gss_buffer_desc databuf, wrapbuf; local
115 /* Set databuf to marshalled rpc_gss_data_t. */
116 databuf.length = end - start - 4;
118 databuf.value = XDR_INLINE(xdrs, databuf.length);
125 len = databuf.length;
131 &databuf, &wrapbuf);
143 maj_stat = gss_wrap(&min_stat, ctx, TRUE, qop, &databuf,
163 gss_buffer_desc databuf, wrapbuf; local
171 memset(&databuf,
[all...]
/freebsd-9.3-release/include/
H A Dres_update.h49 struct databuf *r_dp; /*%< databuf to process */
50 struct databuf *r_deldp; /*%< databuf's deleted/overwritten */
/freebsd-9.3-release/lib/libcam/
H A Dscsi_cmdparse.c103 do_buff_decode(u_int8_t *databuf, size_t len, argument
115 u_char *base = databuf;
190 bits = *databuf++;
214 ARG_PUT(*databuf);
215 databuf++;
219 ARG_PUT((*databuf) << 8 | *(databuf + 1));
220 databuf += 2;
224 ARG_PUT((*databuf) << 16 |
225 (*(databuf
[all...]
/freebsd-9.3-release/contrib/tcp_wrappers/
H A Dtli-sequent.c97 peek.databuf.maxlen = -1;
98 peek.databuf.len = 0;
99 peek.databuf.buf = 0;
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dtsig.c883 isc_buffer_t databuf, sigbuf; local
925 isc_buffer_init(&databuf, data, sizeof(data));
968 isc_buffer_putuint16(&databuf, querytsig.siglen);
969 if (isc_buffer_availablelength(&databuf) <
974 isc_buffer_putmem(&databuf, querytsig.signature,
976 isc_buffer_usedregion(&databuf, &r);
1017 isc_buffer_clear(&databuf);
1018 isc_buffer_putuint16(&databuf, dns_rdataclass_any);
1019 isc_buffer_putuint32(&databuf, 0); /* ttl */
1020 isc_buffer_usedregion(&databuf,
1174 isc_buffer_t databuf; local
1492 isc_buffer_t databuf; local
[all...]
H A Drootns.c269 char databuf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:123.123.123.123")]; local
281 isc_buffer_init(&buffer, databuf, sizeof(databuf) - 1);
284 databuf[isc_buffer_usedlength(&buffer)] = '\0';
290 sep, viewname, namebuf, typebuf, databuf);
296 databuf);
H A Ddnssec.c205 isc_buffer_t *databuf = NULL; local
268 ret = isc_buffer_allocate(mctx, &databuf, sigsize + 256 + 18);
274 sig.common.rdtype, &sig, databuf);
364 isc_buffer_free(&databuf);
828 isc_buffer_t headerbuf, databuf, sigbuf; local
873 isc_buffer_init(&databuf, data, sizeof(data));
884 &sig, &databuf));
885 isc_buffer_usedregion(&databuf, &r);
/freebsd-9.3-release/contrib/bind9/bin/rndc/
H A Drndc.c78 static unsigned char databuf[2048]; variable
341 message.rstart = databuf + 4;
342 message.rend = databuf + sizeof(databuf);
344 len = sizeof(databuf) - REGION_SIZE(message);
345 isc_buffer_init(&b, databuf, 4);
348 r.base = databuf;
403 message.rstart = databuf + 4;
404 message.rend = databuf + sizeof(databuf);
[all...]
/freebsd-9.3-release/lib/libc/net/
H A Dip6opt.c487 inet6_opt_set_val(void *databuf, int offset, void *val, socklen_t vallen) argument
490 memcpy((u_int8_t *)databuf + offset, val, vallen);
586 inet6_opt_get_val(void *databuf, int offset, void *val, socklen_t vallen) argument
590 memcpy(val, (u_int8_t *)databuf + offset, vallen);
/freebsd-9.3-release/sys/cam/scsi/
H A Dscsi_cd.c3887 u_int8_t *databuf; local
3893 databuf = NULL;
3925 databuf = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO);
3927 databuf = NULL;
3939 /* data_ptr */ databuf,
3959 agid_data = (struct scsi_report_key_data_agid *)databuf;
3968 chal_data = (struct scsi_report_key_data_challenge *)databuf;
3978 key1_data = (struct scsi_report_key_data_key1_key2 *)databuf;
3987 title_data = (struct scsi_report_key_data_title *)databuf;
4003 asf_data = (struct scsi_report_key_data_asf *)databuf;
4046 u_int8_t *databuf; local
4137 u_int8_t *databuf; local
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Dhttp.h393 * The body of the reply consists of the data in databuf. After calling
394 * evhttp_send_reply() databuf will be empty, but the buffer is still
401 * @param databuf the body of the response
405 const char *reason, struct evbuffer *databuf);
430 The reply chunk consists of the data in databuf. After calling
431 evhttp_send_reply_chunk() databuf will be empty, but the buffer is
436 @param databuf the data chunk to send as part of the reply.
440 struct evbuffer *databuf);
445 The reply chunk consists of the data in databuf. After calling
446 evhttp_send_reply_chunk() databuf wil
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dhttp.c2657 evhttp_send(struct evhttp_request *req, struct evbuffer *databuf) argument
2672 if (databuf != NULL)
2673 evbuffer_add_buffer(req->output_buffer, databuf);
2683 struct evbuffer *databuf)
2687 evhttp_send(req, databuf);
2714 evhttp_send_reply_chunk_with_cb(struct evhttp_request *req, struct evbuffer *databuf, argument
2725 if (evbuffer_get_length(databuf) == 0)
2731 (unsigned)evbuffer_get_length(databuf));
2733 evbuffer_add_buffer(output, databuf);
2741 evhttp_send_reply_chunk(struct evhttp_request *req, struct evbuffer *databuf) argument
2682 evhttp_send_reply(struct evhttp_request *req, int code, const char *reason, struct evbuffer *databuf) argument
2882 evhttp_send_page_(struct evhttp_request *req, struct evbuffer *databuf) argument
[all...]
/freebsd-9.3-release/sbin/ping6/
H A Dping6.c1818 void *databuf; local
1842 &type, &len, &databuf);
1852 offset = inet6_opt_get_val(databuf, offset,
1859 offset = inet6_opt_get_val(databuf, offset,
/freebsd-9.3-release/sys/dev/de/
H A Dif_de.c2037 #define tulip_srom_crcok(databuf) ( \
2038 ((ether_crc32_le(databuf, 126) & 0xFFFFU) ^ 0xFFFFU) == \
2039 ((databuf)[126] | ((databuf)[127] << 8)))

Completed in 261 milliseconds