Searched refs:rq (Results 1 - 18 of 18) sorted by relevance

/darwin-on-arm/xnu/osfmk/kdp/
H A Dkdp.c228 kdp_connect_req_t *rq = &pkt->connect_req; local
235 if (plen < sizeof (*rq))
238 dprintf(("kdp_connect seq %x greeting %s\n", rq->hdr.seq, rq->greeting));
240 rport = rq->req_reply_port;
241 eport = rq->exc_note_port;
242 key = rq->hdr.key;
243 seq = rq->hdr.seq;
282 kdp_disconnect_req_t *rq = &pkt->disconnect_req; local
286 if (plen < sizeof (*rq))
327 kdp_reattach_req_t *rq = &pkt->reattach_req; local
343 kdp_hostinfo_req_t *rq = &pkt->hostinfo_req; local
370 kdp_kernelversion_req_t *rq = &pkt->kernelversion_req; local
399 kdp_suspend_req_t *rq = &pkt->suspend_req; local
426 kdp_resumecpus_req_t *rq = &pkt->resumecpus_req; local
453 kdp_writemem_req_t *rq = &pkt->writemem_req; local
486 kdp_writemem64_req_t *rq = &pkt->writemem64_req; local
519 kdp_writephysmem64_req_t *rq = &pkt->writephysmem64_req; local
550 kdp_readmem_req_t *rq = &pkt->readmem_req; local
604 kdp_readmem64_req_t *rq = &pkt->readmem64_req; local
640 kdp_readphysmem64_req_t *rq = &pkt->readphysmem64_req; local
676 kdp_maxbytes_req_t *rq = &pkt->maxbytes_req; local
703 kdp_version_req_t *rq = &pkt->version_req; local
734 kdp_regions_req_t *rq = &pkt->regions_req; local
770 kdp_writeregs_req_t *rq = &pkt->writeregs_req; local
797 kdp_readregs_req_t *rq = &pkt->readregs_req; local
825 kdp_breakpoint_req_t *rq = &pkt->breakpoint_req; local
854 kdp_breakpoint64_req_t *rq = &pkt->breakpoint64_req; local
883 kdp_breakpoint_req_t *rq = &pkt->breakpoint_req; local
911 kdp_breakpoint64_req_t *rq = &pkt->breakpoint64_req; local
1362 kdp_readioport_req_t *rq = &pkt->readioport_req; local
1399 kdp_writeioport_req_t *rq = &pkt->writeioport_req; local
1430 kdp_readmsr64_req_t *rq = &pkt->readmsr64_req; local
1458 kdp_writemsr64_req_t *rq = &pkt->writemsr64_req; local
1484 kdp_dumpinfo_req_t *rq = &pkt->dumpinfo_req; local
[all...]
H A Dkdp_internal.h188 kdp_machine_phys_read(kdp_readphysmem64_req_t *rq, caddr_t /* data */,
192 kdp_machine_phys_write(kdp_writephysmem64_req_t *rq, caddr_t /* data */,
/darwin-on-arm/xnu/osfmk/kern/
H A Dsched_grrr.c73 grrr_run_queue_t rq,
78 grrr_run_queue_t rq);
82 grrr_run_queue_t rq,
87 grrr_sorted_list_insert_group(grrr_run_queue_t rq,
91 grrr_rescale_work(grrr_run_queue_t rq);
312 grrr_run_queue_t rq = &processor->grrr_runq; local
314 return grrr_select(rq);
347 grrr_run_queue_t rq = &processor->grrr_runq; local
350 result = grrr_enqueue(rq, thread);
406 grrr_run_queue_t rq local
438 grrr_run_queue_t rq = &processor->grrr_runq; local
610 grrr_intergroup_schedule(grrr_run_queue_t rq) argument
695 grrr_rescale_work(grrr_run_queue_t rq) argument
708 grrr_enqueue( grrr_run_queue_t rq, thread_t thread) argument
755 grrr_select(grrr_run_queue_t rq) argument
798 grrr_remove( grrr_run_queue_t rq, thread_t thread) argument
835 grrr_sorted_list_insert_group(grrr_run_queue_t rq, grrr_group_t group) argument
[all...]
H A Dsched_proto.c296 run_queue_t rq = global_runq; local
304 queue = rq->queues + rq->highq;
305 pri = rq->highq;
306 count = rq->count;
328 SCHED_STATS_RUNQ_CHANGE(&rq->runq_stats, rq->count);
329 rq->count--;
332 clrbit(MAXPRI - pri, rq->bitmap);
333 rq
396 run_queue_t rq = global_runq; local
421 run_queue_t rq; local
[all...]
H A Dsched_prim.c1987 run_queue_t rq,
1990 queue_t queue = rq->queues + rq->highq;
1991 int pri = rq->highq, count = rq->count;
2002 SCHED_STATS_RUNQ_CHANGE(&rq->runq_stats, rq->count);
2003 rq->count--;
2005 rq->urgency--; assert(rq
1985 choose_thread( processor_t processor, run_queue_t rq, int priority) argument
2700 run_queue_init( run_queue_t rq) argument
2805 run_queue_dequeue( run_queue_t rq, integer_t options) argument
2843 run_queue_enqueue( run_queue_t rq, thread_t thread, integer_t options) argument
2883 run_queue_remove( run_queue_t rq, thread_t thread) argument
3052 run_queue_t rq = runq_for_processor(processor); local
3638 run_queue_t rq = runq_for_processor(processor); local
3808 run_queue_t rq; local
3918 run_queue_t rq = runq_for_processor(processor); local
[all...]
H A Dsched_fixedpriority.c426 run_queue_t rq = runq_for_processor(processor); local
429 result = run_queue_enqueue(rq, thread, options);
476 run_queue_t rq; local
479 rq = runq_for_processor(processor);
488 run_queue_remove(rq, thread);
/darwin-on-arm/xnu/osfmk/kdp/ml/arm/
H A Dkdp_machdep.c90 kdp_exception_t *rq = (kdp_exception_t *)pkt; local
92 rq->hdr.request = KDP_EXCEPTION;
93 rq->hdr.is_reply = 0;
94 rq->hdr.seq = kdp.exception_seq;
95 rq->hdr.key = 0;
96 rq->hdr.len = sizeof (*rq);
98 rq->n_exc_info = 1;
99 rq->exc_info[0].cpu = 0;
100 rq
120 kdp_exception_ack_t *rq = (kdp_exception_ack_t *)pkt; local
395 kdp_machine_ioport_read(kdp_readioport_req_t *rq, caddr_t data, uint16_t lcpu) argument
401 kdp_machine_ioport_write(kdp_writeioport_req_t *rq, caddr_t data, uint16_t lcpu) argument
407 kdp_machine_msr64_read(kdp_readmsr64_req_t *rq, caddr_t data, uint16_t lcpu) argument
413 kdp_machine_msr64_write(kdp_writemsr64_req_t *rq, __unused caddr_t data, uint16_t lcpu) argument
[all...]
H A Dkdp_vm.c235 kdp_machine_phys_read(kdp_readphysmem64_req_t * rq __unused, caddr_t dst __unused,
242 kdp_machine_phys_write(kdp_writephysmem64_req_t * rq __unused, caddr_t src __unused,
/darwin-on-arm/xnu/osfmk/kdp/ml/i386/
H A Dkdp_machdep.c89 kdp_exception_t *rq = (kdp_exception_t *)pkt; local
91 rq->hdr.request = KDP_EXCEPTION;
92 rq->hdr.is_reply = 0;
93 rq->hdr.seq = kdp.exception_seq;
94 rq->hdr.key = 0;
95 rq->hdr.len = sizeof (*rq);
97 rq->n_exc_info = 1;
98 rq->exc_info[0].cpu = 0;
99 rq
119 kdp_exception_ack_t *rq = (kdp_exception_ack_t *)pkt; local
[all...]
H A Dkdp_x86_common.c103 kdp_readphysmem64_req_t rq; local
106 rq.address = src;
107 rq.nbytes = (uint32_t)len;
108 ret = kdp_machine_phys_read(&rq, dst, KDP_CURRENT_LCPU);
155 kdp_machine_phys_read(kdp_readphysmem64_req_t *rq, caddr_t dst, argument
158 mach_vm_address_t src = rq->address;
159 mach_vm_size_t len = rq->nbytes;
168 kdp_x86_xcpu_invoke(lcpu, (kdp_x86_xcpu_func_t)kdp_machine_phys_read, rq, dst);
256 kdp_machine_phys_write(kdp_writephysmem64_req_t *rq, caddr_t src, argument
259 mach_vm_address_t dst = rq
306 kdp_machine_ioport_read(kdp_readioport_req_t *rq, caddr_t data, uint16_t lcpu) argument
335 kdp_machine_ioport_write(kdp_writeioport_req_t *rq, caddr_t data, uint16_t lcpu) argument
364 kdp_machine_msr64_read(kdp_readmsr64_req_t *rq, caddr_t data, uint16_t lcpu) argument
378 kdp_machine_msr64_write(kdp_writemsr64_req_t *rq, caddr_t data, uint16_t lcpu) argument
[all...]
/darwin-on-arm/xnu/osfmk/kdp/ml/x86_64/
H A Dkdp_machdep.c89 kdp_exception_t *rq = (kdp_exception_t *)pkt; local
91 rq->hdr.request = KDP_EXCEPTION;
92 rq->hdr.is_reply = 0;
93 rq->hdr.seq = kdp.exception_seq;
94 rq->hdr.key = 0;
95 rq->hdr.len = sizeof (*rq);
97 rq->n_exc_info = 1;
98 rq->exc_info[0].cpu = 0;
99 rq
119 kdp_exception_ack_t *rq = (kdp_exception_ack_t *)pkt; local
[all...]
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_dummynet.c496 pipe_bp->fs.rq = (user32_addr_t)0 ;
537 pipe_bp->fs.rq = USER_ADDR_NULL ;
1220 for (prev=NULL, q = fs->rq[i] ; q != NULL ; )
1230 fs->rq[i] = q = q->next ;
1252 if ( fs->rq[i] != NULL )
1253 return fs->rq[i] ;
1262 q->next = fs->rq[i] ;
1264 fs->rq[i] = q ;
1282 q = fs->rq[0] ;
1331 for (prev=NULL, q = fs->rq[
[all...]
H A Dip_dummynet.h345 struct dn_flow_queue **rq; /* array of rq_size entries */ member in struct:dn_flow_set
499 user32_addr_t rq; /* array of rq_size entries */ member in struct:dn_flow_set_32
624 user64_addr_t rq; /* array of rq_size entries */ member in struct:dn_flow_set_64
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_socket.c1499 struct nfsreq *rq; local
1556 TAILQ_FOREACH(rq, &nfs_reqq, r_chain) {
1557 if (rq->r_nmp == nmp) {
1558 lck_mtx_lock(&rq->r_mtx);
1559 if (!rq->r_error && !rq->r_nmrep.nmc_mhead && !(rq->r_flags & R_MUSTRESEND)) {
1560 rq->r_flags |= R_MUSTRESEND;
1561 rq->r_rtt = -1;
1562 wakeup(rq);
1616 struct nfsreq *rq; local
4157 struct nfsreq rq, *req = &rq; local
4204 struct nfsreq rq, *req = &rq; local
[all...]
H A Dnfs_vnops.c2022 struct nfsreq rq, *req = &rq; local
2160 error = nfs_nget(mp, dnp, cnp, fh.fh_data, fh.fh_len, &nvattr, &xid, rq.r_auth, ngflags, &np);
2326 struct nfsreq rq, *req = &rq; local
3077 struct nfsreq rq, *req = &rq; local
3340 struct nfsreq rq, *req = &rq; local
3430 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh.fh_data, fh.fh_len, &nvattr, &xid, rq
3489 struct nfsreq rq, *req = &rq; local
4262 struct nfsreq rq, *req = &rq; local
4418 struct nfsreq rq, *req = &rq; local
4563 struct nfsreq rq, *req = &rq; local
5822 struct nfsreq rq, *req = &rq; local
[all...]
H A Dnfs4_vnops.c4645 struct nfsreq rq, *req = &rq; local
4877 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh.fh_data, fh.fh_len, &nvattr, &xid, rq.r_auth, NG_MAKEENTRY, &newnp);
6294 struct nfsreq rq, *req = &rq; local
6435 error = nfs_nget(NFSTOMP(dnp), dnp, cnp, fh.fh_data, fh.fh_len, &nvattr, &xid, rq.r_auth, NG_MAKEENTRY, &np);
6774 struct nfsreq rq, *req = &rq; local
6856 error = nfs_nget(NFSTOMP(np), NULL, &cn, fh.fh_data, fh.fh_len, &nvattr, &xid, rq.r_auth, 0, &adnp);
6935 struct nfsreq rq, *re local
[all...]
H A Dnfs_vfsops.c1958 struct nfsreq rq, *req = &rq; local
2106 struct nfsreq rq, *req = &rq; local
2460 error = nfs_nget(nmp->nm_mountp, NULL, NULL, dirfh.fh_data, dirfh.fh_len, &nvattr, &xid, rq.r_auth, NG_MARKROOT, npp);
H A Dnfs4_subs.c650 struct nfsreq rq, *req = &rq; local

Completed in 127 milliseconds