HomeSort by: relevance | last modified time | path
    Searched defs:busy (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/sys/arch/ews4800mips/ews4800mips/
sector.c 43 bool busy; member in struct:sector_rw
51 if (rw->busy)
53 rw->busy = true;
67 rw->busy = false;
  /src/sys/dev/ppbus/
pps_ppbus.c 51 int busy; member in struct:pps_softc
114 if (sc->busy)
141 sc->busy = 1;
152 sc->busy = 0;
ppbus_base.h 66 #define PTRBUSY BUSY
75 #define PERIACK BUSY
83 #define nWAIT BUSY
126 unsigned int busy:1; member in struct:ppbus_status
  /src/sbin/fsck_lfs/
utilities.c 194 static int busy = 0; local in function:getpathname
200 if (busy ||
205 busy = 1;
238 busy = 0;
  /src/sys/sys/
tape.h 43 int32_t busy; member in struct:tape_sysctl
66 int busy; /* drive is busy */ member in struct:tape
73 struct timeval time; /* total time spent busy */
iostat.h 53 int32_t busy; member in struct:io_sysctl
73 * accumulated busy sum (busy time * count)
92 int io_busy; /* busy counter */
101 struct timeval io_busystamp; /* timestamp of last busy */
104 struct timeval io_waitsum; /* accumulated busy * time */
105 struct timeval io_busytime; /* accumlated time busy */
  /src/sbin/fsck_ext2fs/
utilities.c 414 static int busy = 0; local in function:getpathname
420 if (busy ||
425 busy = 1;
456 busy = 0;
  /src/sys/arch/amd64/amd64/
gdt.c 66 bool busy[NDYNSLOTS]; member in struct:__anonb7120b8e0108
77 /* bitmap of busy slots */
139 memset(&gdt_bitmap.busy, 0, sizeof(gdt_bitmap.busy));
231 if (!gdt_bitmap.busy[i]) {
232 gdt_bitmap.busy[i] = true;
247 gdt_bitmap.busy[slot] = false;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pmu/
nouveau_nvkm_subdev_pmu_gk20a.c 52 u32 busy; member in struct:gk20a_pmu_dvfs_dev_status
105 status->busy = nvkm_falcon_rd32(falcon, 0x508 + (BUSY_SLOT * 0x10));
143 utilization = div_u64((u64)status.busy * 100, status.total);
  /src/sys/arch/i386/i386/
gdt.c 54 bool busy[NDYNSLOTS]; member in struct:__anone6c360ca0108
65 /* bitmap of busy slots */
152 memset(&gdt_bitmap.busy, 0, sizeof(gdt_bitmap.busy));
262 if (!gdt_bitmap.busy[i]) {
263 gdt_bitmap.busy[i] = true;
278 gdt_bitmap.busy[slot] = false;
  /src/sys/arch/usermode/dev/
ld_thunkbus.c 77 bool busy; member in struct:ld_thunkbus_softc
137 sc->busy = false;
182 if (sc->busy)
190 sc->busy = true;
212 if (!sc->busy)
233 sc->busy = false;
251 sc->busy = true;
267 if (!sc->busy)
268 panic("%s: but not busy?\n", __func__);
299 sc->busy = false
    [all...]
  /src/sys/dev/dm/
device-mapper.c 266 bool busy; local in function:dm_detach
271 busy = (dmv->diskp->dk_openmask != 0 && (flags & DETACH_FORCE) == 0);
274 if (busy)
  /src/sys/dev/i2c/
xc5k.c 229 uint16_t busy; local in function:xc5k_write_2
242 error = xc5k_read_2(xc, XC5K_REG_BUSY, &busy);
243 if (error || !busy)
  /src/sys/dev/nor/
cfi_0002.c 173 sc->sc_nor_if->busy = cfi_0002_busy;
389 * cfi_0002_busy - nor_interface busy op
399 CFI_0002_STATS_INC(cfi, busy);
405 * cfi_0002_busy_wait - wait until device is not busy
448 * cfi_0002_busy_poll - poll until device is not busy
458 return 0; /* not busy */
462 return ETIMEDOUT; /* busy */
466 * cfi_0002_busy_yield - yield until device is not busy
481 return 0; /* not busy */
492 return 0; /* not busy */
513 bool busy; local in function:cfi_0002_busy_dq7
    [all...]
nor.h 119 int (*busy) (device_t, flash_off_t, u_long); member in struct:nor_interface
150 if (sc->sc_nor_if->busy != NULL) {
151 rv = sc->sc_nor_if->busy(sc->sc_controller_dev, offset, usec);
  /src/sys/external/isc/atheros_hal/dist/ar5416/
ar5416_misc.c 126 * Return approximation of extension channel busy over an time interval
127 * 0% (clear) -> 100% (busy)
134 uint32_t busy; /* percentage */ local in function:ar5416Get11nExtBusy
147 busy = 0;
167 /* Compute ratio of extension channel busy to control channel clear
171 * if the ctrl rxclear is de-asserted (i.e. busy)
174 busy = (extBusyDelta * 100) / ctlClearDelta;
176 busy = 100;
178 if (busy > 100) {
179 busy = 100
    [all...]
  /src/sys/kern/
subr_percpu.c 65 struct lwp *busy; member in struct:__anond2627cf50108
226 percpu_allocation.busy = NULL;
267 while (percpu_allocation.busy)
270 percpu_allocation.busy = curlwp;
278 KASSERT(percpu_allocation.busy == curlwp);
279 percpu_allocation.busy = NULL;
338 while (percpu_allocation.busy)
341 percpu_allocation.busy = curlwp;
367 KASSERT(percpu_allocation.busy == curlwp);
368 percpu_allocation.busy = NULL
    [all...]
  /src/sbin/fsck_ffs/
utilities.c 481 static int busy = 0; local in function:getpathname
489 if (busy || (info->ino_state != DSTATE && info->ino_state != DFOUND)) {
493 busy = 1;
524 busy = 0;
  /src/sys/arch/hp300/dev/
topcatreg.h 50 while (((volatile struct tcboxfb *)(regaddr))->busy & planes) \
59 uint8_t busy; /* window move active 0x4044 */ member in struct:tcboxfb
108 uint16_t cmap_busy; /* Color Ram busy 0x6002 */
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
mpc.h 138 uint32_t busy; member in struct:mpcc_state
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/
mmu.h 21 bool busy:1; /* Region busy (for temporarily preventing user access). */ member in struct:nvkm_vma
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/fifo/
nouveau_nvkm_engine_fifo_gf100.c 357 u32 busy = (stat & 0x80000000); local in function:gf100_fifo_intr_sched_ctxsw
364 if (busy && unk0 && unk1) {
  /src/sys/uvm/
uvm_map.h 182 * a `busy' map. A `busy' map is read-locked, but other threads
184 * entering the lock manager. A map may only be marked busy
187 * which marked it busy (holding *either* a read-lock or a
215 struct lwp * busy; /* LWP holding map busy */ member in struct:vm_map
216 kmutex_t misc_lock; /* Lock for cv, busy */
  /src/sys/arch/hp300/stand/common/
grf_tcreg.h 47 while (((struct tcboxfb *)(regaddr))->busy & planes) DELAY(100)
83 vu_char busy; /* window move active 0x4044 */ member in struct:tcboxfb
132 vu_short cmap_busy; /* Color Ram busy 0x6002 */
  /src/sys/netinet/
ip_encap.c 141 struct lwp *busy; member in struct:__anonde028d110208
162 encap_whole.busy = NULL;
899 while (encap_whole.busy != NULL) {
906 KASSERT(encap_whole.busy == NULL);
907 encap_whole.busy = curlwp;
918 KASSERT(encap_whole.busy == curlwp);
919 encap_whole.busy = NULL;
928 return (encap_whole.busy == curlwp);

Completed in 29 milliseconds

1 2