Searched refs:resp (Results 51 - 75 of 424) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/wpa/src/eap_server/
H A Deap_server_pax.c202 struct eap_pax_hdr *resp; local
208 if (pos == NULL || len < sizeof(*resp) + EAP_PAX_ICV_LEN) {
214 resp = (struct eap_pax_hdr *) pos;
219 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id,
220 resp->public_key_id);
222 (u8 *) (resp + 1), len - sizeof(*resp)
307 struct eap_pax_hdr *resp; local
488 struct eap_pax_hdr *resp; local
[all...]
/freebsd-12-stable/sys/dev/mmcnull/
H A Dmmcnull.c198 mmcio->cmd.resp[0] = 0x1AA; // To match mmc_xpt expectations :-)
201 mmcio->cmd.resp[0] = R1_APP_CMD;
205 mmcio->cmd.resp[0] = 0x1 << 16;
208 mmcio->cmd.resp[0] = 0xc0ff8000;
209 mmcio->cmd.resp[0] |= MMC_OCR_CARD_BUSY;
213 mmcio->cmd.resp[0] = 0x1b534d30;
214 mmcio->cmd.resp[1] = 0x30303030;
215 mmcio->cmd.resp[2] = 0x10842806;
216 mmcio->cmd.resp[3] = 0x5700e900;
220 mmcio->cmd.resp[
[all...]
/freebsd-12-stable/sys/dev/qlnx/qlnxe/
H A Decore_vf.c91 union pfvf_tlvs *resp = p_hwfn->vf_iov_info->pf2vf_reply; local
95 req_status, resp->default_resp.hdr.status);
216 struct pfvf_def_resp_tlv *resp; local
229 resp = &p_iov->pf2vf_reply->default_resp;
230 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
232 if (rc == ECORE_SUCCESS && resp->hdr.status != PFVF_STATUS_SUCCESS)
303 struct pfvf_acquire_resp_tlv *resp = &p_iov->pf2vf_reply->acquire_resp; local
304 struct pf_vf_pfdev_info *pfdev_info = &resp->pfdev_info;
367 &resp
841 struct pfvf_start_queue_resp_tlv *resp; local
922 struct pfvf_def_resp_tlv *resp; local
962 struct pfvf_start_queue_resp_tlv *resp; local
1022 struct pfvf_def_resp_tlv *resp; local
1062 struct pfvf_def_resp_tlv *resp = &p_iov->pf2vf_reply->default_resp; local
1121 struct pfvf_def_resp_tlv *resp; local
1168 struct pfvf_def_resp_tlv *resp = &p_iov->pf2vf_reply->default_resp; local
1263 struct pfvf_def_resp_tlv *resp; local
1488 struct pfvf_def_resp_tlv *resp; local
1544 struct pfvf_def_resp_tlv *resp; local
1586 struct pfvf_def_resp_tlv *resp = &p_iov->pf2vf_reply->default_resp; local
1618 struct pfvf_read_coal_resp_tlv *resp; local
1652 struct pfvf_def_resp_tlv *resp; local
[all...]
/freebsd-12-stable/contrib/wpa/src/eap_peer/
H A Deap_sake.c148 struct wpabuf *resp; local
168 resp = eap_sake_build_msg(data, id, 2 + data->peerid_len,
170 if (resp == NULL)
174 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERID,
179 return resp;
191 struct wpabuf *resp; local
251 resp = eap_sake_build_msg(data, id, rlen, EAP_SAKE_SUBTYPE_CHALLENGE);
252 if (resp == NULL)
256 eap_sake_add_attr(resp, EAP_SAKE_AT_RAND_P,
261 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERI
295 struct wpabuf *resp; local
376 struct wpabuf *resp; local
[all...]
H A Deap_eke.c199 struct wpabuf *resp; local
204 resp = eap_eke_build_msg(data, id, 4, EAP_EKE_FAILURE);
205 if (resp)
206 wpabuf_put_be32(resp, failure_code);
216 return resp;
226 struct wpabuf *resp; local
321 resp = eap_eke_build_msg(data, id,
324 if (resp == NULL) {
329 wpabuf_put_u8(resp, 1); /* NumProposals */
330 wpabuf_put_u8(resp,
359 struct wpabuf *resp; local
505 struct wpabuf *resp; local
652 struct wpabuf *resp; local
[all...]
H A Deap_teap.c378 struct wpabuf **resp)
395 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1);
415 hdr, resp))
432 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret,
436 if (!(*resp) ||
448 if (!(*resp) && config &&
454 } else if (!(*resp))
509 struct wpabuf *resp = NULL; local
532 if (eap_teap_phase2_request(sm, data, ret, hdr, &resp)) {
538 return eap_teap_tlv_eap_payload(resp);
374 eap_teap_phase2_request(struct eap_sm *sm, struct eap_teap_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) argument
548 struct wpabuf *resp; local
762 struct wpabuf *resp; local
1095 eap_teap_parse_decrypted(struct wpabuf *decrypted, struct eap_teap_tlv_parse *tlv, struct wpabuf **resp) argument
1188 struct wpabuf *resp = NULL, *tmp; local
1651 eap_teap_add_dummy_outer_tlvs(struct eap_teap_data *data, struct wpabuf *resp) argument
1725 struct wpabuf *resp; local
[all...]
H A Deap_tnc.c91 struct wpabuf *resp; local
113 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, plen,
115 if (resp == NULL)
118 wpabuf_put_u8(resp, flags); /* Flags */
120 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
122 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
144 return resp;
206 struct wpabuf *resp; local
354 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, 1,
356 if (resp
[all...]
H A Deap_pax.c96 struct wpabuf *resp; local
99 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PAX,
101 if (resp == NULL)
104 pax = wpabuf_put(resp, sizeof(*pax));
111 return resp;
120 struct wpabuf *resp; local
191 resp = eap_pax_alloc_resp(req, id, EAP_PAX_OP_STD_2, plen);
192 if (resp == NULL)
195 wpabuf_put_be16(resp, EAP_PAX_RAND_LEN);
196 wpabuf_put_data(resp, dat
236 struct wpabuf *resp; local
338 struct wpabuf *resp; local
[all...]
H A Deap_leap.c64 struct wpabuf *resp; local
109 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_LEAP,
112 if (resp == NULL)
114 wpabuf_put_u8(resp, LEAP_VERSION);
115 wpabuf_put_u8(resp, 0); /* unused */
116 wpabuf_put_u8(resp, LEAP_RESPONSE_LEN);
117 rpos = wpabuf_put(resp, LEAP_RESPONSE_LEN);
123 wpabuf_free(resp);
129 wpabuf_put_data(resp, identity, identity_len);
133 return resp;
142 struct wpabuf *resp; local
[all...]
H A Deap_mschapv2.c149 struct wpabuf *resp; local
166 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MSCHAPV2, ms_len,
168 if (resp == NULL)
171 ms = wpabuf_put(resp, sizeof(*ms));
185 wpabuf_put_u8(resp, sizeof(*r)); /* Value-Size */
188 r = wpabuf_put(resp, sizeof(*r));
196 wpabuf_free(resp);
211 wpabuf_free(resp);
219 wpabuf_put_data(resp, identity, identity_len);
222 return resp;
348 struct wpabuf *resp; local
655 struct wpabuf *resp; local
[all...]
H A Deap_gpsk.c280 struct wpabuf *resp; local
301 resp = eap_gpsk_send_gpsk_2(data, identifier,
303 if (resp == NULL)
308 return resp;
317 struct wpabuf *resp; local
329 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GPSK, len,
331 if (resp == NULL)
334 wpabuf_put_u8(resp, EAP_GPSK_OPCODE_GPSK_2);
335 start = wpabuf_put(resp, 0);
339 wpabuf_put_be16(resp, dat
587 struct wpabuf *resp; local
630 struct wpabuf *resp; local
667 struct wpabuf *resp; local
[all...]
/freebsd-12-stable/contrib/wpa/src/utils/
H A Dbrowser-android.c33 struct wpabuf *resp; local
48 resp = wpabuf_alloc(1);
49 if (resp == NULL) {
61 http_request_send_and_deinit(req, resp);
H A Dpcsc_funcs.c812 unsigned char resp[3]; local
839 len = sizeof(resp);
840 ret = scard_transmit(scard, cmd, cmdlen, resp, &len);
848 wpa_printf(MSG_WARNING, "SCARD: unexpected resp len "
853 if (resp[0] == 0x98 && resp[1] == 0x04) {
860 if (resp[0] == 0x6e) {
865 if (resp[0] != 0x6c && resp[0] != 0x9f && resp[
1024 unsigned char resp[3]; local
1056 unsigned char resp[3]; local
1247 unsigned char resp[3], buf[12 + 3 + 2]; local
1348 unsigned char resp[3], buf[64], *pos, *end; local
[all...]
/freebsd-12-stable/contrib/opencsd/decoder/source/
H A Docsd_gen_elem_list.cpp96 ocsd_datapath_resp_t resp = OCSD_RESP_CONT; local
104 while(elemToSend() && OCSD_DATA_RESP_IS_CONT(resp))
106 resp = m_sendIf->first()->TraceElemIn(m_pElemArray[m_firstElemIdx].trc_pkt_idx, m_CSID, *(m_pElemArray[m_firstElemIdx].pElem));
112 return resp;
/freebsd-12-stable/contrib/bsnmp/lib/
H A Dsnmpagent.h133 struct snmp_pdu *resp, void *);
135 struct snmp_pdu *resp, void *);
137 struct snmp_pdu *resp, void *);
139 struct snmp_pdu *resp, void *);
/freebsd-12-stable/libexec/ypxfr/
H A Dypxfrd_getmap.c109 struct xfr resp; local
121 bzero((char *)&resp, sizeof(resp));
136 (xdrproc_t)xdr_my_xfr, (char *)&resp,
/freebsd-12-stable/usr.sbin/ngctl/
H A Dshow.c66 struct ng_mesg *resp; local
102 if (NgAllocRecvMsg(csock, &resp, NULL) < 0) {
108 hlist = (struct hooklist *) resp->data;
135 free(resp);
/freebsd-12-stable/contrib/openpam/lib/libpam/
H A Dpam_vprompt.c59 char **resp,
86 *resp = rsp == NULL ? NULL : rsp->resp;
121 * not return one, is stored in the location pointed to by the =resp
57 pam_vprompt(const pam_handle_t *pamh, int style, char **resp, const char *fmt, va_list ap) argument
/freebsd-12-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_mad.c40 void *resp; local
60 resp = MLX5_ADDR_OF(mad_ifc_out, out, response_mad_packet);
61 memcpy(outb, resp,
/freebsd-12-stable/sys/powerpc/powermac/
H A Dpmu.c346 uint8_t resp[16]; local
387 pmu_send(sc, PMU_SET_IMASK, 1, &reg, 16, resp);
391 pmu_send(sc, PMU_SYSTEM_READY, 1, cmd, 16, resp);
392 pmu_send(sc, PMU_GET_VERSION, 0, cmd, 16, resp);
694 uint8_t resp[16]; local
703 len = pmu_send(sc, PMU_INT_ACK, 0, NULL, 16, resp);
707 if ((len < 1) || (resp[1] == 0)) {
711 if (resp[1] & PMU_INT_ADB) {
720 if ((resp[2] & 0x0f) != (ADB_COMMAND_TALK << 2)) {
732 adb_receive_raw_packet(sc->adb_bus,resp[
757 uint8_t packet[16], resp[16]; local
785 uint8_t resp[16]; local
841 uint8_t resp[3]; local
879 uint8_t resp[16]; local
1082 uint8_t resp[16]; local
1116 uint8_t resp[16]; local
[all...]
/freebsd-12-stable/contrib/ofed/librdmacm/
H A Dcma.c67 #define CMA_INIT_CMD_RESP(req, req_size, op, resp, resp_size) \
71 (req)->response = (uintptr_t) (resp); \
519 struct ucma_abi_create_id_resp resp; local
532 CMA_INIT_CMD_RESP(&cmd, sizeof cmd, CREATE_ID, &resp, sizeof resp);
541 VALGRIND_MAKE_MEM_DEFINED(&resp, sizeof resp);
543 id_priv->handle = resp.id;
565 struct ucma_abi_destroy_id_resp resp; local
569 CMA_INIT_CMD_RESP(&cmd, sizeof cmd, DESTROY_ID, &resp, sizeo
622 struct ucma_abi_query_addr_resp resp; local
654 struct ucma_abi_query_addr_resp resp; local
714 struct ucma_abi_query_path_resp *resp; local
748 struct ucma_abi_query_route_resp resp; local
993 struct ibv_kern_qp_attr resp; local
1718 struct ucma_abi_create_id_resp resp; local
1802 struct ucma_abi_destroy_id_resp resp; local
2057 struct ucma_abi_event_resp resp; local
2256 struct ucma_abi_migrate_resp resp; local
[all...]
/freebsd-12-stable/crypto/heimdal/lib/gssapi/spnego/
H A Dinit_sec_context.c392 NegotiationToken resp; local
414 &resp, NULL);
418 if (resp.element != choice_NegotiationToken_negTokenResp) {
419 free_NegotiationToken(&resp);
424 if (resp.u.negTokenResp.negResult == NULL
425 || *(resp.u.negTokenResp.negResult) == reject
426 /* || resp.u.negTokenResp.supportedMech == NULL */
429 free_NegotiationToken(&resp);
440 if (resp.u.negTokenResp.supportedMech) {
443 free_NegotiationToken(&resp);
[all...]
/freebsd-12-stable/usr.sbin/bsnmpd/modules/snmp_netgraph/
H A Dsnmp_netgraph.c556 struct ng_mesg *resp; local
559 if ((resp = ng_dialog(path, NGM_GENERIC_COOKIE, NGM_NODEINFO,
562 id = ((struct nodeinfo *)(void *)resp->data)->id;
563 free(resp);
569 struct ng_mesg *resp; local
572 if ((resp = ng_dialog_node(node, NGM_GENERIC_COOKIE, NGM_NODEINFO,
575 id = ((struct nodeinfo *)(void *)resp->data)->id;
576 free(resp);
582 struct ng_mesg *resp; local
584 if ((resp
595 struct ng_mesg *resp; local
677 struct ng_mesg *resp; local
807 struct ng_mesg *resp; local
864 struct ng_mesg *resp; local
1134 struct ng_mesg *resp; local
1346 struct ng_mesg *resp; local
1374 struct ng_mesg *resp; local
1473 struct ng_mesg *resp; local
1514 struct ng_mesg *resp; local
[all...]
/freebsd-12-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_ah.c77 struct mlx5_ib_create_ah_resp resp = {}; local
78 u32 min_resp_len = offsetof(typeof(resp), dmac) +
79 sizeof(resp.dmac);
84 resp.response_length = min_resp_len;
90 memcpy(resp.dmac, ah_attr->dmac, ETH_ALEN);
91 err = ib_copy_to_udata(udata, &resp, resp.response_length);
/freebsd-12-stable/sys/rpc/
H A Dclnt.h240 * CLNT_CALL_EXT(rh, ext, proc, xargs, argsp, xres, resp, timeout)
247 * void *resp;
250 #define CLNT_CALL_EXT(rh, ext, proc, xargs, argsp, xres, resp, secs) \
252 argsp, xres, resp, secs)
257 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
263 * void *resp;
267 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \
269 argsp, xres, resp, secs)
270 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \
272 argsp, xres, resp, sec
[all...]

Completed in 357 milliseconds

1234567891011>>