Searched refs:req (Results 451 - 475 of 936) sorted by relevance

<<11121314151617181920>>

/freebsd-9.3-release/sys/netinet6/
H A Din6_proto.c483 VNET_SYSCTL_ARG(req, arg1);
485 error = SYSCTL_OUT(req, arg1, sizeof(int));
486 if (error || !req->newptr)
489 error = SYSCTL_IN(req, arg1, sizeof(int));
504 VNET_SYSCTL_ARG(req, arg1);
506 error = SYSCTL_OUT(req, arg1, sizeof(int));
507 if (error || !req->newptr)
510 error = SYSCTL_IN(req, arg1, sizeof(int));
/freebsd-9.3-release/sys/ofed/include/linux/
H A Dsysfs.h108 error = sysctl_handle_string(oidp, buf, PAGE_SIZE - 1, req);
109 if (error != 0 || req->newptr == NULL || ops->store == NULL)
/freebsd-9.3-release/sys/powerpc/powermac/
H A Datibl.c190 error = sysctl_handle_int(oidp, &newlevel, 0, req);
192 if (error || !req->newptr)
H A Dnvbl.c191 error = sysctl_handle_int(oidp, &newlevel, 0, req);
193 if (error || !req->newptr)
/freebsd-9.3-release/crypto/openssl/crypto/x509/
H A Dx_all.c193 X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req) argument
195 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(X509_REQ), fp, req);
198 int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req) argument
200 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(X509_REQ), fp, req);
204 X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **req) argument
206 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(X509_REQ), bp, req);
209 int i2d_X509_REQ_bio(BIO *bp, X509_REQ *req) argument
211 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(X509_REQ), bp, req);
/freebsd-9.3-release/sys/dev/usb/wlan/
H A Dif_urtw.c1318 struct usb_device_request *req, void *data)
1327 req, data, 0, NULL, 250 /* ms */);
2044 struct usb_device_request req; local
2049 req.bmRequestType = UT_READ_VENDOR_DEVICE;
2050 req.bRequest = URTW_8187_GETREGS_REQ;
2051 USETW(req.wValue, (val & 0xff) | 0xff00);
2052 USETW(req.wIndex, (val >> 8) & 0x3);
2053 USETW(req.wLength, sizeof(uint8_t));
2055 error = urtw_do_request(sc, &req, data);
2062 struct usb_device_request req; local
1317 urtw_do_request(struct urtw_softc *sc, struct usb_device_request *req, void *data) argument
2080 struct usb_device_request req; local
2098 struct usb_device_request req; local
2114 struct usb_device_request req; local
2130 struct usb_device_request req; local
2752 struct usb_device_request req; local
3478 struct usb_device_request req; local
3494 struct usb_device_request req; local
[all...]
H A Dif_rum.c156 struct usb_device_request *req, void *data);
570 struct usb_device_request *req, void *data)
577 req, data, 0, NULL, 250 /* ms */);
1376 struct usb_device_request req; local
1379 req.bmRequestType = UT_READ_VENDOR_DEVICE;
1380 req.bRequest = RT2573_READ_EEPROM;
1381 USETW(req.wValue, 0);
1382 USETW(req.wIndex, addr);
1383 USETW(req.wLength, len);
1385 error = rum_do_request(sc, &req, bu
569 rum_do_request(struct rum_softc *sc, struct usb_device_request *req, void *data) argument
1405 struct usb_device_request req; local
1433 struct usb_device_request req; local
2120 struct usb_device_request req; local
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dhxtool.c919 heim_octet_string req, nonce_data, *nonce = &nonce_data; local
943 ret = hx509_certs_init(context, "MEMORY:ocsp-req", 0, NULL, &reqcerts);
948 errx(1, "hx509_certs_append: req: %s: %d", argv[i], ret);
951 ret = hx509_ocsp_request(context, reqcerts, pool, NULL, NULL, &req, nonce);
953 errx(1, "hx509_ocsp_request: req: %d", ret);
968 (unsigned long)req.length);
969 fwrite(req.data, req.length, 1, f);
1134 hx509_request req; local
1147 _hx509_request_init(context, &req);
1212 hx509_request req; local
1578 hx509_request req; local
[all...]
/freebsd-9.3-release/sys/dev/mmc/
H A Dmmc.c127 struct mmc_request *req);
196 static int mmc_wait_for_req(struct mmc_softc *sc, struct mmc_request *req);
197 static void mmc_wakeup(struct mmc_request *req);
363 mmc_wakeup(struct mmc_request *req) argument
367 sc = (struct mmc_softc *)req->done_data;
369 req->flags |= MMC_REQ_DONE;
371 wakeup(req);
375 mmc_wait_for_req(struct mmc_softc *sc, struct mmc_request *req) argument
378 req->done = mmc_wakeup;
379 req
388 MMCBR_REQUEST(device_get_parent(sc->dev), sc->dev, req); local
399 mmc_wait_for_request(device_t brdev, device_t reqdev, struct mmc_request *req) argument
[all...]
/freebsd-9.3-release/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.c1532 snmp_parse_get_resp(struct snmp_pdu *resp, struct snmp_pdu *req) argument
1536 for (i = 0; i < req->nbindings; i++) {
1537 if (asn_compare_oid(&req->bindings[i].var,
1553 snmp_parse_getbulk_resp(struct snmp_pdu *resp, struct snmp_pdu *req) argument
1557 if (req->error_status > (int32_t) resp->nbindings) {
1562 for (N = 0; N < req->error_status; N++) {
1563 if (asn_is_suboid(&req->bindings[N].var,
1570 for (R = N , r = N; R < (int32_t) req->nbindings; R++) {
1571 for (M = 0; M < req->error_index && (r + M) <
1573 if (asn_is_suboid(&req
1590 snmp_parse_getnext_resp(struct snmp_pdu *resp, struct snmp_pdu *req) argument
1611 snmp_parse_resp(struct snmp_pdu *resp, struct snmp_pdu *req) argument
[all...]
/freebsd-9.3-release/crypto/heimdal/kdc/
H A Dpkinit.c100 const KDC_REQ *req)
117 const KDC_REQ *req)
134 ASN1_MALLOC_ENCODE(KDC_REQ_BODY, buf, buf_size, &req->req_body, &len, ret);
368 const KDC_REQ *req,
573 req);
604 req);
682 const KDC_REQ *req,
705 if (_kdc_find_padata(req, &i, KRB5_PADATA_PK_AS_09_BINDING) == NULL
969 const KDC_REQ *req,
987 if (req
98 pk_check_pkauthenticator_win2k(krb5_context context, PKAuthenticator_Win2k *a, const KDC_REQ *req) argument
115 pk_check_pkauthenticator(krb5_context context, PKAuthenticator *a, const KDC_REQ *req) argument
366 _kdc_pk_rd_padata(krb5_context context, krb5_kdc_configuration *config, const KDC_REQ *req, const PA_DATA *pa, pk_client_params **ret_params) argument
679 pk_mk_pa_reply_enckey(krb5_context context, krb5_kdc_configuration *config, pk_client_params *client_params, const KDC_REQ *req, const krb5_data *req_buffer, krb5_keyblock *reply_key, ContentInfo *content_info) argument
965 _kdc_pk_mk_pa_reply(krb5_context context, krb5_kdc_configuration *config, pk_client_params *client_params, const hdb_entry_ex *client, const KDC_REQ *req, const krb5_data *req_buffer, krb5_keyblock **reply_key, METHOD_DATA *md) argument
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dinit_creds.c414 krb5_boolean req)
420 if (req)
430 krb5_boolean req)
436 if (req)
412 krb5_get_init_creds_opt_set_canonicalize(krb5_context context, krb5_get_init_creds_opt *opt, krb5_boolean req) argument
428 krb5_get_init_creds_opt_set_win2k(krb5_context context, krb5_get_init_creds_opt *opt, krb5_boolean req) argument
/freebsd-9.3-release/crypto/openssh/regress/
H A Dagent-pkcs11.sh33 openssl req -key $OBJ/pkcs11.key -new -x509 \
/freebsd-9.3-release/include/rpc/
H A Dxdr.h217 #define XDR_CONTROL(xdrs, req, op) \
219 (*(xdrs)->x_ops->x_control)(xdrs, req, op)
220 #define xdr_control(xdrs, req, op) XDR_CONTROL(xdrs, req, op)
/freebsd-9.3-release/sys/contrib/ipfilter/netinet/
H A Dmlfk_ipl.c295 error = SYSCTL_OUT(req, arg1, sizeof(int));
297 error = SYSCTL_OUT(req, &arg2, sizeof(int));
299 if (error || !req->newptr)
308 error = SYSCTL_IN(req, arg1, sizeof(int));
/freebsd-9.3-release/sys/ddb/
H A Ddb_script.c491 error = SYSCTL_OUT(req, sbuf_data(&sb), sbuf_len(&sb) + 1);
512 error = sysctl_handle_string(oidp, buffer, len, req);
548 error = sysctl_handle_string(oidp, name, sizeof(name), req);
551 if (req->newptr == NULL)
/freebsd-9.3-release/sys/dev/sound/pcm/
H A Dsndstat.c99 err = sysctl_handle_int(oidp, &val, 0, req);
100 if (err == 0 && req->newptr != NULL && val == 0) {
119 error = sysctl_handle_int(oidp, &verbose, 0, req);
120 if (error == 0 && req->newptr != NULL) {
/freebsd-9.3-release/sys/netinet/
H A Dtcp_syncache.h51 int syncache_pcblist(struct sysctl_req *req, int max_pcbs, int *pcbs_exported);
/freebsd-9.3-release/sys/rpc/
H A Dxdr.h217 #define XDR_CONTROL(xdrs, req, op) \
219 (*(xdrs)->x_ops->x_control)(xdrs, req, op))
220 #define xdr_control(xdrs, req, op) XDR_CONTROL(xdrs, req, op)
/freebsd-9.3-release/usr.sbin/bootparamd/bootparamd/
H A Dbootparamd.c47 bootparamproc_whoami_1_svc(whoami, req)
49 struct svc_req *req;
113 bootparamproc_getfile_1_svc(getfile, req)
115 struct svc_req *req;
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Devrpc-internal.h180 struct evhttp_request *req; member in struct:evrpc_request_wrapper
/freebsd-9.3-release/contrib/wpa/src/eap_common/
H A Deap_sim_common.h92 int eap_sim_verify_mac(const u8 *k_aut, const struct wpabuf *req,
104 int eap_sim_verify_mac_sha256(const u8 *k_aut, const struct wpabuf *req,
132 const struct wpabuf *req,
131 eap_sim_verify_mac_sha256(const u8 *k_aut, const struct wpabuf *req, const u8 *mac, const u8 *extra, size_t extra_len) argument
/freebsd-9.3-release/lib/libusb/
H A Dlibusb20.c767 struct LIBUSB20_CONTROL_SETUP_DECODED req; local
777 LIBUSB20_INIT(LIBUSB20_CONTROL_SETUP, &req);
783 req.bmRequestType =
787 req.bRequest = LIBUSB20_REQUEST_GET_DESCRIPTOR;
788 req.wValue = (LIBUSB20_DT_STRING << 8) | str_index;
789 req.wIndex = langid;
790 req.wLength = 4; /* bytes */
792 error = libusb20_dev_request_sync(pdev, &req,
797 req.wLength = *(uint8_t *)ptr; /* bytes */
798 if (req
[all...]
/freebsd-9.3-release/sys/cddl/dev/cyclic/
H A Dcyclic_test.c244 error = sysctl_wire_old_buffer(req, sizeof(int));
246 error = sysctl_handle_int(oidp, &cmd, 0, req);
247 if (error != 0 || req->newptr == NULL)
/freebsd-9.3-release/sys/dev/coretemp/
H A Dcoretemp.c413 return (sysctl_handle_int(oidp, &val, 0, req));
435 error = sysctl_handle_int(oidp, &val, 0, req);
437 if (error || !req->newptr)

Completed in 370 milliseconds

<<11121314151617181920>>