Searched refs:req (Results 201 - 225 of 1174) sorted by path

1234567891011>>

/freebsd-11-stable/sys/arm/ti/
H A Dti_adc.c270 error = sysctl_handle_int(oidp, &reg, sizeof(reg), req);
271 if (error != 0 || req->newptr == NULL)
310 req);
311 if (error != 0 || req->newptr == NULL)
344 error = sysctl_handle_int(oidp, &reg, sizeof(reg), req);
345 if (error != 0 || req->newptr == NULL)
372 error = sysctl_handle_int(oidp, &samples, 0, req);
373 if (error != 0 || req->newptr == NULL)
H A Dti_i2c.c773 return (sysctl_handle_int(oidp, &clk, 0, req));
793 err = sysctl_handle_int(oidp, &val, 0, req);
795 if ((err == 0) && (req->newptr != NULL)) {
H A Dti_pruss.c371 err = sysctl_handle_string(oidp, event, sizeof(event), req);
375 if (req->newptr) { // write event
421 err = sysctl_handle_string(oidp, channel, sizeof(channel), req);
425 if (req->newptr) { // write event
464 err = sysctl_handle_bool(oidp, &irqenable, arg2, req);
468 if (req->newptr) // write enable
484 err = sysctl_handle_bool(oidp, &glob_irqen, arg2, req);
488 if (req->newptr) {
/freebsd-11-stable/sys/arm/ti/twl/
H A Dtwl_clks.c428 return sysctl_handle_int(oidp, &enabled, 0, req);
H A Dtwl_vreg.c799 return sysctl_handle_int(oidp, &voltage, 0, req);
/freebsd-11-stable/sys/arm/xilinx/
H A Dzy7_devcfg.c277 error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
278 if (error != 0 || req->newptr == NULL)
311 error = sysctl_handle_int(oidp, &freq, 0, req);
312 if (error != 0 || req->newptr == NULL)
340 error = sysctl_handle_int(oidp, &enabled, 0, req);
341 if (error != 0 || req->newptr == NULL)
691 return (sysctl_handle_int(oidp, &pl_done, 0, req));
/freebsd-11-stable/sys/arm64/arm64/
H A Dpmap.c1709 return sysctl_handle_long(oidp, &ksize, 0, req);
1719 return sysctl_handle_long(oidp, &kfree, 0, req);
/freebsd-11-stable/sys/cam/
H A Dcam_iosched.c729 error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
730 if (error != 0 || req->newptr == NULL)
787 error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
788 if (error != 0 || req->newptr == NULL)
814 error = sysctl_handle_string(oidp, buf, sizeof(buf), req);
815 if (error != 0 || req->newptr == NULL)
833 error = sysctl_handle_int(oidp, (int *)&value, 0, req);
834 if ((error != 0) || (req->newptr == NULL))
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_ha.h132 void ctl_dt_req_free(struct ctl_ha_dt_req *req);
133 ctl_ha_status ctl_dt_single(struct ctl_ha_dt_req *req);
/freebsd-11-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_kstat.c105 return sysctl_handle_64(oidp, &val, 0, req);
/freebsd-11-stable/sys/cddl/compat/opensolaris/rpc/
H A Dxdr.h63 #define XDR_CONTROL(xdrs, req, op) \
65 xdrmem_control((xdrs), (req), (op)) : \
66 (*(xdrs)->x_ops->x_control)(xdrs, req, op))
/freebsd-11-stable/sys/cddl/dev/dtrace/
H A Ddtrace_sysctl.c68 error = sysctl_handle_string(oidp, p_name, len, req);
H A Ddtrace_test.c67 error = sysctl_handle_int(oidp, &val, 0, req);
68 if (error || req->newptr == NULL)
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_systrace_args.c183 iarg[0] = p->req; /* int */
/freebsd-11-stable/sys/compat/ndis/
H A Dsubr_ntoskrnl.c3690 return (sysctl_handle_int(oidp, &ret, 0, req));
H A Dsubr_usbd.c948 struct usb_device_request req; local
1023 req.bmRequestType = type;
1024 req.bRequest = vcreq->uvc_req;
1025 USETW(req.wIndex, vcreq->uvc_idx);
1026 USETW(req.wValue, vcreq->uvc_value);
1027 USETW(req.wLength, vcreq->uvc_trans_buflen);
1034 usbd_copy_in(pc, 0, &req, sizeof(req));
1035 usbd_xfer_set_frame_len(xfer, 0, sizeof(req));
/freebsd-11-stable/sys/contrib/ngatm/netnatm/api/
H A Dcc_conn.c148 r->req = op;
164 struct uniapi_release_request *req; local
166 if ((u = uni_msg_alloc(sizeof(*req))) == NULL)
168 req = uni_msg_wptr(u, struct uniapi_release_request *);
169 memset(req, 0, sizeof(*req));
172 req->release.hdr.cref = conn->cref;
173 req->release.hdr.act = UNI_MSGACT_DEFAULT;
176 IE_SETPRESENT(req->release.cause[0]);
177 req
896 struct uniapi_release_request *req; local
1019 struct uniapi_add_party_request *req; local
1061 struct uniapi_drop_party_request *req; local
1606 struct uniapi_drop_party_ack_request *req; local
[all...]
H A Dcc_dump.c278 cc_dumpf(d, " %u(%p,%u)", r->cookie, r->conn, r->req);
H A Dcc_port.c508 struct ccreq *req; local
516 if ((req = find_cookie(port, cookie)) == NULL) {
520 conn = req->conn;
522 TAILQ_REMOVE(&port->cookies, req, link);
523 CCFREE(req);
577 struct ccreq *req; local
579 if ((req = find_cookie(port, cookie)) == NULL) {
585 conn = req->conn;
H A Dcc_user.c1066 struct atm_connect_outgoing_call *req = uni_msg_rptr(msg, local
1078 if (!IE_ISPRESENT(req->called)) {
1109 conn->called = req->called;
1726 struct atm_query_connection_attributes *req; local
1740 req = uni_msg_rptr(msg,
1742 cc_attr_query(user, conn, &req->attr, 1);
1750 struct atm_query_connection_attributes_x *req; local
1759 req = uni_msg_rptr(msg,
1761 cc_attr_query(user, conn, req->attr, req
1769 struct atm_set_connection_attributes *req; local
1793 struct atm_set_connection_attributes_x *req; local
[all...]
H A Dccpriv.h107 uint32_t req; member in struct:ccreq
360 DEF(ADD_DROPACK_WAIT_OK)/* 12 wait for ok to DROP_ACK.req */
/freebsd-11-stable/sys/contrib/ngatm/netnatm/sig/
H A Dsig_party.c238 struct uniapi_add_party_request *req = local
247 add->u.add_party = req->add;
272 struct uniapi_add_party_ack_request *req = local
280 ack->u.add_party_ack = req->ack;
301 struct uniapi_add_party_rej_request *req = local
312 rej->u.add_party_rej = req->rej;
358 struct uniapi_party_alerting_request *req = local
366 alert->u.party_alerting = req->alert;
756 struct uniapi_drop_party_request *req = local
770 drop->u.drop_party = req
789 struct uniapi_drop_party_ack_request *req = local
[all...]
H A Dsig_reset.c143 start_request(struct uni *uni, struct uniapi_reset_request *req, uint32_t cookie) argument
159 resp->u.restart.restart = req->restart;
160 resp->u.restart.connid = req->connid;
165 uni->connid_start = req->connid;
166 uni->restart_start = req->restart;
/freebsd-11-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c1775 #define REQUEST_OUT_OF_RANGE(req) \
1776 ((unsigned long)(req) >= \
1787 #define request2size(req) \
1788 (((req) + sizeof(void *) + SIZE_SZ + MALLOC_ALIGN_MASK < MINSIZE) ? \
1790 ((req) + sizeof(void *) + SIZE_SZ + MALLOC_ALIGN_MASK) & ~MALLOC_ALIGN_MASK)
1794 #define checked_request2size(req, sz) \
1795 if (REQUEST_OUT_OF_RANGE(req)) { \
1799 (sz) = request2size(req);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-usbnx-defs.h1262 uint64_t req : 1; /**< DMA Request. Writing a 1 to this register member in struct:cvmx_usbnx_dma_test::cvmx_usbnx_dma_test_s
1275 uint64_t req : 1;

Completed in 253 milliseconds

1234567891011>>