Searched refs:resp (Results 76 - 100 of 263) sorted by relevance

1234567891011

/freebsd-9.3-release/contrib/gcc/
H A Dlists.c256 rtx res = NULL_RTX, *resp = &res; local
260 *resp = alloc_DEPS_LIST (XEXP (list, 0), 0, XINT (list, 2));
261 PUT_REG_NOTE_KIND (*resp, REG_NOTE_KIND (list));
262 resp = &XEXP (*resp, 1);
/freebsd-9.3-release/sys/netgraph/
H A Dng_hole.c149 struct ng_mesg *resp = NULL; local
175 NG_MKRESPONSE(resp, msg, sizeof(*stats),
177 if (resp == NULL) {
181 bcopy(stats, resp->data, sizeof(*stats));
196 NG_RESPOND_MSG(error, node, item, resp);
H A Dng_ether.c499 struct ng_mesg *resp = NULL; local
508 NG_MKRESPONSE(resp, msg, IFNAMSIZ, M_NOWAIT);
509 if (resp == NULL) {
513 strlcpy(resp->data, priv->ifp->if_xname, IFNAMSIZ);
516 NG_MKRESPONSE(resp, msg, sizeof(u_int32_t), M_NOWAIT);
517 if (resp == NULL) {
521 *((u_int32_t *)resp->data) = priv->ifp->if_index;
524 NG_MKRESPONSE(resp, msg, ETHER_ADDR_LEN, M_NOWAIT);
525 if (resp == NULL) {
530 resp
[all...]
H A Dng_nat.c341 struct ng_mesg *resp = NULL; local
445 NG_MKRESPONSE(resp, msg, sizeof(entry->rdr.id), M_NOWAIT);
446 if (resp == NULL) {
450 bcopy(&entry->rdr.id, resp->data, sizeof(entry->rdr.id));
497 NG_MKRESPONSE(resp, msg, sizeof(entry->rdr.id), M_NOWAIT);
498 if (resp == NULL) {
502 bcopy(&entry->rdr.id, resp->data, sizeof(entry->rdr.id));
551 NG_MKRESPONSE(resp, msg, sizeof(entry->rdr.id), M_NOWAIT);
552 if (resp == NULL) {
556 bcopy(&entry->rdr.id, resp
[all...]
H A Dng_gif.c399 struct ng_mesg *resp = NULL; local
408 NG_MKRESPONSE(resp, msg, IFNAMSIZ, M_NOWAIT);
409 if (resp == NULL) {
413 strlcpy(resp->data, priv->ifp->if_xname, IFNAMSIZ);
416 NG_MKRESPONSE(resp, msg, sizeof(u_int32_t), M_NOWAIT);
417 if (resp == NULL) {
421 *((u_int32_t *)resp->data) = priv->ifp->if_index;
432 NG_RESPOND_MSG(error, node, item, resp);
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/sig/
H A Dsig_coord.c422 struct uni_all *resp; local
474 if ((resp = UNI_ALLOC()) == NULL)
478 MK_MSG_RESP(resp, UNI_STATUS, &u->u.hdr.cref);
479 MK_IE_CALLSTATE(resp->u.status.callstate, UNI_CALLSTATE_U0);
480 MK_IE_CAUSE(resp->u.status.cause, UNI_CAUSE_LOC_USER,
485 resp->u.status.epref = u->u.status_enq.epref;
486 MK_IE_EPREF(resp->u.status.epref,
489 MK_IE_EPSTATE(resp->u.status.epstate, UNI_EPSTATE_NULL);
492 (void)uni_send_output(resp, uni);
494 UNI_FREE(resp);
1111 struct uni_all *resp; local
1132 struct uni_all *resp; local
[all...]
H A Dsig_verify.c370 struct uni_all *resp; local
372 if ((resp = UNI_ALLOC()) == NULL)
377 MK_MSG_RESP(resp, UNI_STATUS, cref);
378 MK_IE_CALLSTATE(resp->u.status.callstate, cs);
379 resp->u.status.cause = uni->cause;
381 MK_IE_EPREF(resp->u.status.epref, epref->epref, !epref->flag);
382 MK_IE_EPSTATE(resp->u.status.epstate, ps);
385 uni_send_output(resp, uni);
387 UNI_FREE(resp);
/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dopenpam_ttyconv.c320 struct pam_response **resp,
335 aresp[i].resp = NULL;
339 (aresp[i].resp = strdup(respbuf)) == NULL)
344 (aresp[i].resp = strdup(respbuf)) == NULL)
363 *resp = aresp;
368 if (aresp[i].resp != NULL) {
369 memset(aresp[i].resp, 0, strlen(aresp[i].resp));
370 FREE(aresp[i].resp);
375 *resp
318 openpam_ttyconv(int n, const struct pam_message **msg, struct pam_response **resp, void *data) argument
[all...]
/freebsd-9.3-release/sys/netgraph/atm/sscop/
H A Dng_sscop.c446 struct ng_mesg *resp = NULL; local
458 NG_MKRESPONSE(resp, msg, NG_TEXTRESPONSE, M_NOWAIT);
459 if (resp == NULL) {
464 resp->header.arglen = text_status(node, priv,
465 (char *)resp->data, resp->header.arglen) + 1;
490 NG_MKRESPONSE(resp, msg, sizeof(*p), M_NOWAIT);
491 if (resp == NULL) {
495 p = (struct sscop_param *)resp->data;
514 NG_MKRESPONSE(resp, ms
[all...]
/freebsd-9.3-release/sys/netgraph/atm/uni/
H A Dng_uni.c308 struct ng_mesg *resp = NULL; local
321 NG_MKRESPONSE(resp, msg, NG_TEXTRESPONSE, M_NOWAIT);
322 if (resp == NULL) {
327 resp->header.arglen = text_status(node, priv,
328 (char *)resp->data, resp->header.arglen) + 1;
358 NG_MKRESPONSE(resp, msg, sizeof(*arg), M_NOWAIT);
359 if(resp == NULL) {
363 arg = (struct ngm_uni_debug *)resp->data;
377 NG_MKRESPONSE(resp, ms
[all...]
/freebsd-9.3-release/contrib/ofed/libmlx4/src/
H A Dverbs.c80 struct mlx4_alloc_pd_resp resp; local
88 &resp.ibv_resp, sizeof resp)) {
93 pd->pdn = resp.pdn;
123 struct ibv_reg_mr_resp resp; local
127 &resp, sizeof resp);
168 struct mlx4_create_cq_resp resp; local
204 &resp.ibv_resp, sizeof resp);
259 struct ibv_resize_cq_resp resp; local
300 struct mlx4_create_srq_resp resp; local
446 struct ibv_create_qp_resp resp; local
749 struct mlx4_create_srq_resp resp; local
816 struct mlx4_open_xrc_domain_resp resp; local
[all...]
H A Dmlx4.c144 struct mlx4_alloc_ucontext_resp resp; local
155 &resp.ibv_resp, sizeof resp))
158 context->num_qps = resp.qp_tab_size;
166 context->num_xrc_srqs = resp.qp_tab_size;
185 if (resp.bf_reg_size) {
195 context->bf_buf_size = resp.bf_reg_size / 2;
/freebsd-9.3-release/crypto/openssl/apps/
H A Docsp.c81 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req,
90 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp);
112 OCSP_RESPONSE *resp = NULL; local
583 resp =
586 send_ocsp_response(cbio, resp);
653 i = make_ocsp_response(&resp, req, rdb, rca_cert, rsigner, rkey,
656 send_ocsp_response(cbio, resp);
659 resp = process_responder(bio_err, req, host, path,
661 if (!resp)
674 resp
925 make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db, X509 *ca, X509 *rcert, EVP_PKEY *rkey, STACK_OF(X509) *rother, unsigned long flags, int nmin, int ndays) argument
1115 send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp) argument
1211 OCSP_RESPONSE *resp = NULL; local
[all...]
/freebsd-9.3-release/contrib/sendmail/contrib/
H A Detrn.pl265 (my @resp);
270 push(@resp, $s);
272 return @resp;
/freebsd-9.3-release/sys/netgraph/bluetooth/drivers/h4/
H A Dng_h4.c839 struct ng_mesg *msg = NULL, *resp = NULL; local
852 NG_MKRESPONSE(resp, msg, NG_TEXTRESPONSE, M_NOWAIT);
853 if (resp == NULL)
856 snprintf(resp->data, NG_TEXTRESPONSE,
887 NG_MKRESPONSE(resp, msg, sizeof(ng_h4_node_state_ep),
889 if (resp == NULL)
892 *((ng_h4_node_state_ep *)(resp->data)) =
897 NG_MKRESPONSE(resp, msg, sizeof(ng_h4_node_debug_ep),
899 if (resp == NULL)
902 *((ng_h4_node_debug_ep *)(resp
[all...]
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dntp_intres.c312 blocking_pipe_header * resp; local
339 resp_octets = sizeof(*resp) + sizeof(*gai_resp) +
343 resp = emalloc_zero(resp_octets);
344 gai_resp = (void *)(resp + 1);
397 resp_octets = sizeof(*resp) + gai_resp->octets;
398 resp = erealloc(resp, resp_octets);
399 gai_resp = (void *)(resp + 1);
448 DEBUG_INSIST((size_t)(cp - (char *)resp) == resp_octets);
450 if (queue_blocking_response(c, resp, resp_octet
701 blocking_pipe_header * resp; local
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dauth-pam.c342 struct pam_response **resp, void *data)
350 *resp = NULL;
376 reply[i].resp = buffer_get_string(&buffer, NULL);
388 reply[i].resp = buffer_get_string(&buffer, NULL);
410 *resp = reply;
415 free(reply[i].resp);
547 struct pam_response **resp, void *data)
557 struct pam_response **resp, void *data)
564 *resp = NULL;
585 *resp
341 sshpam_thread_conv(int n, sshpam_const struct pam_message **msg, struct pam_response **resp, void *data) argument
546 sshpam_null_conv(int n, sshpam_const struct pam_message **msg, struct pam_response **resp, void *data) argument
556 sshpam_store_conv(int n, sshpam_const struct pam_message **msg, struct pam_response **resp, void *data) argument
814 sshpam_respond(void *ctx, u_int num, char **resp) argument
962 sshpam_tty_conv(int n, sshpam_const struct pam_message **msg, struct pam_response **resp, void *data) argument
1120 sshpam_passwd_conv(int n, sshpam_const struct pam_message **msg, struct pam_response **resp, void *data) argument
[all...]
/freebsd-9.3-release/sys/netgraph/atm/
H A Dng_atm.c908 struct ng_mesg *resp = NULL; local
921 NG_MKRESPONSE(resp, msg, NG_TEXTRESPONSE, M_NOWAIT);
922 if(resp == NULL) {
927 resp->header.arglen = text_status(node,
928 (char *)resp->data, resp->header.arglen) + 1;
941 NG_MKRESPONSE(resp, msg, IFNAMSIZ, M_NOWAIT);
942 if (resp == NULL) {
946 strlcpy(resp->data, priv->ifp->if_xname, IFNAMSIZ);
953 NG_MKRESPONSE(resp, ms
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Ddispatch.h375 isc_uint16_t *idp, dns_dispentry_t **resp,
381 isc_uint16_t *idp, dns_dispentry_t **resp);
385 * "*idp" is filled in with the assigned message ID, and *resp is filled in
399 *\li "resp" be non-NULL and *resp be NULL
420 dns_dispatch_removeresponse(dns_dispentry_t **resp,
428 *\li "resp" != NULL and "*resp" contain a value previously allocated
432 * argument to dns_dispatch_addresponse() when allocating '*resp'.
436 dns_dispatch_getentrysocket(dns_dispentry_t *resp);
[all...]
/freebsd-9.3-release/sys/dev/firewire/
H A Dsbp.h92 resp:2, member in struct:sbp_status
98 resp:2,
111 /* resp */
117 /* status (resp == 0) */
135 /* status (resp == 1) */
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_trans.c200 xfs_trans_reservations_t *resp; local
202 resp = &(mp->m_reservations);
203 resp->tr_write = xfs_calc_write_reservation(mp);
204 resp->tr_itruncate = xfs_calc_itruncate_reservation(mp);
205 resp->tr_rename = xfs_calc_rename_reservation(mp);
206 resp->tr_link = xfs_calc_link_reservation(mp);
207 resp->tr_remove = xfs_calc_remove_reservation(mp);
208 resp->tr_symlink = xfs_calc_symlink_reservation(mp);
209 resp->tr_create = xfs_calc_create_reservation(mp);
210 resp
[all...]
/freebsd-9.3-release/contrib/wpa/src/eap_peer/
H A Deap_ikev2.c140 struct wpabuf *resp; local
183 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, plen,
185 if (resp == NULL)
188 wpabuf_put_u8(resp, flags); /* Flags */
190 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
192 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
197 const u8 *msg = wpabuf_head(resp);
198 size_t len = wpabuf_len(resp);
202 msg, len, wpabuf_put(resp, icv_len));
249 return resp;
[all...]
/freebsd-9.3-release/sys/dev/sfxge/
H A Dsfxge_intr.c267 struct resource *resp; local
271 resp = sc->intr.msix_res;
273 rid = rman_get_rid(resp);
274 bus_release_resource(dev, SYS_RES_MEMORY, rid, resp);
281 struct resource *resp; local
303 resp = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE);
304 if (resp == NULL)
308 bus_release_resource(dev, SYS_RES_MEMORY, rid, resp);
314 bus_release_resource(dev, SYS_RES_MEMORY, rid, resp);
321 intr->msix_res = resp;
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Ddispatch.c186 dns_dispentry_t *resp; member in struct:dispsocket
317 dns_dispentry_t *resp);
396 request_log(dns_dispatch_t *disp, dns_dispentry_t *resp,
401 request_log(dns_dispatch_t *disp, dns_dispentry_t *resp, argument
415 if (VALID_RESPONSE(resp)) {
416 isc_sockaddr_format(&resp->host, peerbuf, sizeof(peerbuf));
419 "dispatch %p response %p %s: %s", disp, resp,
424 "dispatch %p req/resp %p: %s", disp, resp,
661 * Find the next entry after 'resp' i
665 linear_next(dns_qid_t *qid, dns_dispentry_t *resp) argument
1248 dns_dispentry_t *resp = NULL; local
1540 dns_dispentry_t *resp; local
3225 dns_dispatch_addresponse2(dns_dispatch_t *disp, isc_sockaddr_t *dest, isc_task_t *task, isc_taskaction_t action, void *arg, dns_messageid_t *idp, dns_dispentry_t **resp, isc_socketmgr_t *sockmgr) argument
3409 dns_dispatch_addresponse(dns_dispatch_t *disp, isc_sockaddr_t *dest, isc_task_t *task, isc_taskaction_t action, void *arg, dns_messageid_t *idp, dns_dispentry_t **resp) argument
3434 dns_dispatch_removeresponse(dns_dispentry_t **resp, dns_dispatchevent_t **sockevent) argument
3553 dns_dispentry_t *resp; local
3604 dns_dispatch_getentrysocket(dns_dispentry_t *resp) argument
[all...]
/freebsd-9.3-release/contrib/wpa/src/eap_server/
H A Deap_server_psk.c222 const struct eap_psk_hdr_2 *resp; local
235 if (cpos == NULL || left < sizeof(*resp)) {
239 resp = (const struct eap_psk_hdr_2 *) cpos;
240 cpos = (const u8 *) (resp + 1);
241 left -= sizeof(*resp);
298 resp->rand_p, EAP_PSK_RAND_LEN);
299 os_memcpy(data->rand_p, resp->rand_p, EAP_PSK_RAND_LEN);
321 wpa_hexdump(MSG_DEBUG, "EAP-PSK: MAC_P", resp->mac_p, EAP_PSK_MAC_LEN);
322 if (os_memcmp(mac, resp->mac_p, EAP_PSK_MAC_LEN) != 0) {
338 const struct eap_psk_hdr_4 *resp; local
[all...]

Completed in 216 milliseconds

1234567891011