HomeSort by: relevance | last modified time | path
    Searched refs:async (Results 1 - 25 of 81) sorted by relevancy

1 2 3 4

  /src/tests/kernel/
t_unmount.c 50 ATF_TC(async);
51 ATF_TC_HEAD(async, tc)
54 "descr", "failed unmount of async fs should stay async");
59 ATF_TC_BODY(async, tc)
103 ATF_TP_ADD_TC(tp, async);
t_umountstress.sh 64 atf_check -o ignore -e ignore mount -o async ${BVND}${MPART} ${TMPMP}
153 atf_check -o ignore -e ignore mount -o async ${BVND}${MPART} ${TMPMP}
172 if ! mount -o async ${BVND}${MPART} ${TMPMP}; then
t_umount.sh 72 atf_check -o ignore -e ignore mount -o async ${BVND}${MPART} ${TMPMP}
  /src/sys/dev/wscons/
wseventvar.h 88 int async; /* send SIGIO on input ready */ member in struct:wseventvar
wsevent.c 372 if (ev->async) {
378 * Soft interrupt handler: sends signal to async proc.
387 if (ev->async) {
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_display.h 35 #define amdgpu_display_page_flip(adev, crtc, base, async) (adev)->mode_info.funcs->page_flip((adev), (crtc), (base), (async))
  /src/regress/sys/fs/ffs/
Makefile 89 mount -o async ${BVND}${MPART} ${TMPMP}
93 mount -o async ${BVND}${MPART} ${TMPMP}
97 mount -o async ${BVND}${MPART} ${TMPMP}
101 mount -o async ${BVND}${MPART} ${TMPMP}
113 mount -o async ${BVND}${MPART} ${TMPMP}
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
buffer_queue_test.cc 101 auto T0 = std::async(std::launch::async, F);
102 auto T1 = std::async(std::launch::async, F);
103 auto T2 = std::async(std::launch::async, [&] {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/falcon/
qmgr.h 33 bool async; member in struct:nvkm_falcon_qmgr_seq
nouveau_nvkm_falcon_cmdq.c 152 seq->async = !timeout;
163 if (!seq->async) {
nouveau_nvkm_falcon_msgq.c 137 if (seq->async) {
  /src/sys/miscfs/genfs/
genfs_io.c 111 const bool async = (flags & PGO_SYNCIO) == 0; local in function:genfs_getpages
313 pgs = kmem_zalloc(pgs_size, async ? KM_NOSLEEP : KM_SLEEP);
375 async ? UFP_NOWAIT : UFP_ALL) != orignmempages) {
379 KASSERT(async != 0);
465 async ? UFP_NOWAIT : UFP_ALL) != npages) {
469 KASSERT(async != 0);
479 async, memwrite, blockalloc, glocked);
483 if (error == 0 && async)
524 if (i < ridx || i >= ridx + orignmempages || async) {
578 bool async, bool memwrite, bool blockalloc, bool glocked
880 bool async = (origflags & PGO_SYNCIO) == 0; local in function:genfs_do_putpages
1443 const bool async = (flags & PGO_SYNCIO) == 0; local in function:genfs_do_io
    [all...]
  /src/sys/dev/
sequencervar.h 91 pid_t async; /* process who wants audio SIGIO */ member in struct:sequencer_softc
midivar.h 203 pid_t async; /* process who wants audio SIGIO */ member in struct:midi_softc
midi.c 680 pid = sc->async;
777 if (sc->async != 0)
853 sc->async = 0;
1044 if (sc->async)
1307 if (sc->async) {
1648 if (sc->async) {
1651 sc->async = curproc->p_pid;
1656 sc->async = 0;
sequencer.c 352 sc->async = 0;
443 if ((pid = sc->async) != 0) {
533 if (sc->async != 0) {
537 if ((p = proc_find(sc->async)) != NULL)
747 if (sc->async != 0) {
751 sc->async = curproc->p_pid;
753 sc->async));
755 sc->async = 0;
  /src/sys/rump/librump/rumpvfs/
rumpblk.c 227 "rumpblk", "async I/O");
234 "rumpblk", "bytes written async");
494 int async = bp->b_flags & B_ASYNC; local in function:dostrategy
504 if (async)
508 if (async)
549 off, off, (off + bp->b_bcount), async ? "a" : ""));
552 if (BUF_ISWRITE(bp) && !async)
  /src/sys/dev/ic/
icp_ioctl.h 125 } __packed async; member in union:__anon07d367500308::__anon07d36750040a
icp_ioctl.c 242 sizeof(e->event_data.eu.async);
icp.c 639 icp->icp_evt.eu.async.ionode =
641 icp->icp_evt.eu.async.status = icp->icp_status;
649 icp->icp_evt.size = sizeof(icp->icp_evt.eu.async);
650 icp->icp_evt.eu.async.ionode =
652 icp->icp_evt.eu.async.service = service;
653 icp->icp_evt.eu.async.status = icp->icp_status;
654 icp->icp_evt.eu.async.info = icp->icp_info;
656 *(u_int32_t *) icp->icp_evt.eu.async.scsi_coord =
  /src/sys/fs/msdosfs/
msdosfs_lookup.c 570 int async = ddep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC; local in function:msdosfs_createde
572 #define async 0 macro
642 if (async)
673 if (async)
735 if (async)
760 if (async)
900 int async = pdep->de_pmp->pm_mountp->mnt_flag & MNT_ASYNC; local in function:msdosfs_removede
902 #define async 0 macro
962 if (async)
  /src/sys/ufs/ext2fs/
ext2fs_readwrite.c 274 bool async; local in function:ext2fs_write
302 async = vp->v_mount->mnt_flag & MNT_ASYNC;
335 * XXXUBC simplistic async flushing.
338 if (!async && oldoff >> fshift != uio->uio_offset >> fshift) {
  /src/sys/ufs/lfs/
ulfs_readwrite.c 243 bool async; local in function:WRITE
272 async = vp->v_mount->mnt_flag & MNT_ASYNC;
280 async = true;
393 * XXXUBC simplistic async flushing.
396 __USE(async);
  /src/sys/ufs/ufs/
ufs_readwrite.c 251 bool async; local in function:WRITE
281 async = vp->v_mount->mnt_flag & MNT_ASYNC;
431 * XXXUBC simplistic async flushing.
434 if (!async && oldoff >> fshift != uio->uio_offset >> fshift) {
  /src/sys/arch/arc/dev/
pccons.c 127 static u_char async, kernel, polling; /* Really, you don't want to know. */ variable in typeref:typename:u_char
458 async = 0;
497 if (async)
501 if (async)
503 async = 1;

Completed in 31 milliseconds

1 2 3 4