pub unsafe extern "C" fn address_space_write(
    as_: *mut AddressSpace,
    addr: hwaddr,
    attrs: MemTxAttrs,
    buf: *const u8,
    len: c_int
) -> MemTxResult
Expand description

address_space_write: write to address space.

Return a MemTxResult indicating whether the operation succeeded or failed (eg unassigned memory, device rejected the transaction, IOMMU fault).

@as: #AddressSpace to be accessed @addr: address within that address space @attrs: memory transaction attributes @buf: buffer with the data transferred