HomeSort by: relevance | last modified time | path
    Searched defs:is_read (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/dev/ic/
nvmeio.h 82 * is_read = 1 if the passthrough command will read data into the
85 * is_read = 0 if the passthrough command will write data from the
88 uint32_t is_read; member in struct:nvme_pt_command
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_sideband.c 102 const bool is_read = (opcode == SB_MRD_NP || opcode == SB_CRRDDA_NP); local in function:vlv_sideband_rw
114 is_read ? "read" : "write");
121 intel_uncore_write_fw(uncore, VLV_IOSF_DATA, is_read ? 0 : *val);
133 if (is_read)
138 is_read ? "read" : "write");
281 u32 *val, bool is_read)
297 intel_uncore_write_fw(uncore, SBI_DATA, is_read ? 0 : *val);
303 if (!is_read)
320 if (is_read)
385 bool is_read)
    [all...]
  /src/sys/fs/nfs/common/
nfs_fha.h 90 int (*is_read)(rpcproc_t procnum); member in struct:fha_callbacks
  /src/sys/dev/
md.c 413 bool is_read; local in function:mdstrategy
439 is_read = ((bp->b_flags & B_READ) == B_READ);
443 if (is_read)
452 if (is_read)
456 disk_unbusy(&sc->sc_dkdev, xfer, is_read);
675 bool is_read; local in function:md_server_loop
690 is_read = ((bp->b_flags & B_READ) == B_READ);
694 if (is_read)
704 if (is_read)
708 disk_unbusy(&sc->sc_dkdev, (error ? 0 : xfer), is_read);
    [all...]
fss.c 1159 int error, i, todo, len, crotor, is_read; local in function:fss_bs_thread
1192 is_read = (bp->b_flags & B_READ);
1204 (error ? 0 : bp->b_bcount), is_read);
1254 is_read = (bp->b_flags & B_READ);
1305 disk_unbusy(sc->sc_dkdev, 0, is_read);
1365 disk_unbusy(sc->sc_dkdev, (error ? 0 : bp->b_bcount), is_read);
  /src/sys/dev/pci/
ismt.c 102 #define ISMT_DESC_ADDR_RW(addr, is_read) (((addr) << 1) | (is_read))
335 uint8_t is_read, int flags)
346 desc->tgtaddr_rw = ISMT_DESC_ADDR_RW(slave, is_read);
424 int is_read; local in function:ismt_quick
429 is_read = I2C_OP_READ_P(op);
430 return (ismt_submit(sc, desc, slave, is_read, flags));

Completed in 14 milliseconds