Home
last modified time | relevance | path

Searched refs:td (Results 226 – 250 of 305) sorted by relevance

12345678910>>...13

/dragonfly/sys/vfs/ufs/
H A Dffs_softdep.c492 thread_t td = curthread; in softdep_process_worklist() local
502 filesys_syncer = td; in softdep_process_worklist()
523 clear_inodedeps(td); in softdep_process_worklist()
528 clear_remove(td); in softdep_process_worklist()
550 clear_inodedeps(td); in softdep_process_worklist()
555 clear_remove(td); in softdep_process_worklist()
4171 softdep_sync_metadata(struct vnode *vp, struct thread *td) in softdep_sync_metadata() argument
4717 struct thread *td = curthread; /* XXX */ in request_cleanup() local
4724 if (td == filesys_syncer) in request_cleanup()
4781 clear_remove(struct thread *td) in clear_remove() argument
[all …]
/dragonfly/sys/vfs/hammer2/
H A Dhammer2_vnops.c812 thread_t td; in hammer2_vop_write() local
850 if (uio->uio_resid > 0 && (td = uio->uio_td) != NULL && td->td_proc && in hammer2_vop_write()
852 td->td_proc->p_rlimit[RLIMIT_FSIZE].rlim_cur) { in hammer2_vop_write()
853 lwpsignal(td->td_proc, td->td_lwp, SIGXFSZ); in hammer2_vop_write()
/dragonfly/sys/kern/
H A Dsubr_prf.c1135 KKASSERT(req->td->td_proc); in sysctl_kern_msgbuf()
1136 cred = req->td->td_proc->p_ucred; in sysctl_kern_msgbuf()
1139 caps_priv_check_td(req->td, SYSCAP_RESTRICTEDROOT) != 0) in sysctl_kern_msgbuf()
H A Dtty.c855 struct thread *td = curthread; in ttioctl() local
856 struct lwp *lp = td->td_lwp; in ttioctl()
857 struct proc *p = td->td_proc; in ttioctl()
970 error = caps_priv_check_td(td, SYSCAP_RESTRICTEDROOT); in ttioctl()
1160 caps_priv_check_td(td, SYSCAP_RESTRICTEDROOT)) in ttioctl()
1167 caps_priv_check_td(td, SYSCAP_RESTRICTEDROOT)) in ttioctl()
1246 error = caps_priv_check_td(td, SYSCAP_RESTRICTEDROOT); in ttioctl()
H A Dvfs_journal.c1326 jrecord_write_cred(struct jrecord *jrec, struct thread *td, struct ucred *cred) in jrecord_write_cred() argument
1334 if (td && (p = td->td_proc) != NULL) { in jrecord_write_cred()
H A Dsubr_unit.c491 struct thread *td __debugvar = curthread; in alloc_unrl()
493 KKASSERT(lockstatus(ml, td) != 0); in alloc_unrl()
/dragonfly/sys/dev/disk/iscsi/initiator/
H A Disc_soc.c250 sp, sp->soc, uio, sp->td); in isc_sendPDU()
577 sp->td = curthread; in isc_soc()
/dragonfly/libexec/bootpd/
H A DProblems52 :td=/tftpboot: (or)
H A Dbootptab.cmu32 # td -- TFTP directory
/dragonfly/sys/dev/drm/radeon/
H A Dr600_dpm.h156 void r600_select_td(struct radeon_device *rdev, enum r600_td td);
H A Dr600_dpm.c359 enum r600_td td) in r600_select_td() argument
361 if (td == R600_TD_AUTO) in r600_select_td()
365 if (td == R600_TD_UP) in r600_select_td()
367 if (td == R600_TD_DOWN) in r600_select_td()
/dragonfly/lib/libusb/
H A Dlibusb10.c195 pthread_t td; in libusb_exit() local
199 td = ctx->hotplug_handler; in libusb_exit()
203 pthread_join(td, &ptr); in libusb_exit()
/dragonfly/contrib/binutils-2.27/ld/scripttempl/
H A Delf.sc97 # .tdata .gnu.linkonce.td.foo
400 .rel.tdata ${RELOCATING-0} : { *(.rel.tdata${RELOCATING+ .rel.tdata.* .rel.gnu.linkonce.td.*}) }
401 ….rela.tdata ${RELOCATING-0} : { *(.rela.tdata${RELOCATING+ .rela.tdata.* .rela.gnu.linkonce.td.*})…
564 .tdata ${RELOCATING-0} : { *(.tdata${RELOCATING+ .tdata.* .gnu.linkonce.td.*}) }
/dragonfly/contrib/binutils-2.34/ld/scripttempl/
H A Delf.sc98 # .tdata .gnu.linkonce.td.foo
422 .rel.tdata ${RELOCATING-0} : { *(.rel.tdata${RELOCATING+ .rel.tdata.* .rel.gnu.linkonce.td.*}) }
423 ….rela.tdata ${RELOCATING-0} : { *(.rela.tdata${RELOCATING+ .rela.tdata.* .rela.gnu.linkonce.td.*})…
593 *(.tdata${RELOCATING+ .tdata.* .gnu.linkonce.td.*})
/dragonfly/contrib/tnftp/src/
H A Dftp.c1715 struct timeval endtime, now, td; in dataconn() local
1739 timersub(&endtime, &now, &td); in dataconn()
1740 timeout = td.tv_sec * 1000 + td.tv_usec/1000; in dataconn()
H A Dfetch.c1680 struct timeval then, now, td; in fetch_url() local
1720 timersub(&now, &then, &td); in fetch_url()
1721 if (td.tv_sec > 0) in fetch_url()
1723 usleep(1000000 - td.tv_usec); in fetch_url()
/dragonfly/sys/netproto/smb/
H A Dsmb_rq.c258 struct thread *td = rqp->sr_cred->scr_td; in smb_rq_intr() local
262 return smb_proc_intr(td); in smb_rq_intr()
/dragonfly/sys/netinet6/
H A Dip6_output.c1140 struct thread *td; in ip6_ctloutput() local
1147 td = sopt->sopt_td; in ip6_ctloutput()
1151 td = NULL; in ip6_ctloutput()
1156 privileged = (td == NULL || in ip6_ctloutput()
1157 caps_priv_check_td(td, SYSCAP_RESTRICTEDROOT)) ? in ip6_ctloutput()
/dragonfly/sys/sys/
H A Ddevfs.h245 thread_t td; member
/dragonfly/sys/vfs/tmpfs/
H A Dtmpfs_vnops.c671 struct thread *td = uio->uio_td; in tmpfs_write() local
722 if (vp->v_type == VREG && td != NULL && td->td_lwp != NULL) { in tmpfs_write()
727 ksignal(td->td_proc, SIGXFSZ); in tmpfs_write()
/dragonfly/sys/dev/misc/syscons/
H A Dscmouse.c605 sc_mouse_exit1(struct thread *td) in sc_mouse_exit1() argument
609 p = td->td_proc; in sc_mouse_exit1()
/dragonfly/sys/vfs/hammer/
H A Dhammer_vnops.c500 thread_t td; in hammer_vop_write() local
569 if (uio->uio_resid > 0 && (td = uio->uio_td) != NULL && td->td_proc && in hammer_vop_write()
570 base_offset > td->td_proc->p_rlimit[RLIMIT_FSIZE].rlim_cur) { in hammer_vop_write()
572 lwpsignal(td->td_proc, td->td_lwp, SIGXFSZ); in hammer_vop_write()
/dragonfly/sys/dev/acpica/acpi_wmi/
H A Dacpi_wmi.c880 struct thread *td = curthread; in acpi_wmi_wmistat_open() local
897 sc->wmistat_open_pid = td->td_proc->p_pid; in acpi_wmi_wmistat_open()
/dragonfly/sys/dev/raid/twe/
H A Dtwe.c522 struct twe_drivecommand *td = (struct twe_drivecommand *)addr; in twe_ioctl() local
676 error = twe_add_unit(sc, td->td_unit); in twe_ioctl()
682 error = twe_del_unit(sc, td->td_unit); in twe_ioctl()
/dragonfly/sys/vfs/dirfs/
H A Ddirfs_vnops.c674 struct thread *td = uio->uio_td; in dirfs_write() local
698 if (vp->v_type == VREG && td != NULL) { in dirfs_write()
706 ksignal(td->td_proc, SIGXFSZ); in dirfs_write()

12345678910>>...13