Home
last modified time | relevance | path

Searched refs:write_init (Results 1 – 22 of 22) sorted by relevance

/linux/rust/pin-init/src/
H A Dalloc.rs94 try_new_uninit!(Box).write_init(init) in try_init()
139 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> { in write_init() method
H A Dlib.rs1442 fn write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E>; in write_init() method
/linux/Documentation/driver-api/fpga/
H A Dfpga-mgr.rst31 .write_init = socfpga_fpga_ops_configure_init,
85 2. .write_init
103 The .write_init function will prepare the FPGA to receive the image data. The
104 buffer passed into .write_init will be at least info->header_size bytes long;
/linux/drivers/fpga/
H A Dversal-fpga.c41 .write_init = versal_fpga_ops_write_init,
H A Dts73xx-fpga.c96 .write_init = ts73xx_fpga_write_init,
H A Dzynqmp-fpga.c102 .write_init = zynqmp_fpga_ops_write_init,
H A Daltera-pr-ip-core.c171 .write_init = alt_pr_fpga_write_init,
H A Dice40-spi.c130 .write_init = ice40_fpga_ops_write_init,
H A Dxilinx-core.c190 .write_init = xilinx_core_write_init,
H A Daltera-ps-spi.c228 .write_init = altera_ps_write_init,
H A Dfpga-mgr.c90 if (mgr->mops->write_init) in fpga_mgr_write_init()
91 return mgr->mops->write_init(mgr, info, buf, count); in fpga_mgr_write_init()
262 * Call the low level driver's write_init function. This will do the
266 * write_init will not get any bytes of image buffer.
311 /* If 0, header fits first fragment, call write_init on it */ in fpga_mgr_prepare_sg()
H A Dmicrochip-spi.c362 .write_init = mpf_ops_write_init,
H A Dlattice-sysconfig.c348 .write_init = sysconfig_ops_write_init,
H A Dsocfpga-a10.c463 .write_init = socfpga_a10_fpga_write_init,
H A Dmachxo2-spi.c358 .write_init = machxo2_write_init,
H A Dstratix10-soc.c276 * sending, free all service layer buffers we allocated in write_init.
393 .write_init = s10_ops_write_init,
H A Dzynq-fpga.c548 .write_init = zynq_fpga_ops_write_init,
H A Daltera-cvp.c519 .write_init = altera_cvp_write_init,
/linux/rust/kernel/alloc/
H A Dkbox.rs361 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> { in write_init() function
399 Box::<_, A>::new_uninit(flags)?.write_init(init) in try_init()
/linux/include/linux/fpga/
H A Dfpga-mgr.h150 * parse_header and write_init.
159 * @write_init: prepare the FPGA to receive configuration data
178 int (*write_init)(struct fpga_manager *mgr, member
/linux/rust/kernel/sync/
H A Darc.rs738 UniqueArc::new_uninit(flags)?.write_init(init) in try_init()
745 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> { in write_init() method
/linux/drivers/fpga/tests/
H A Dfpga-mgr-test.c196 .write_init = op_write_init,