Function binder_ndk_sys::AParcel_writeUint64Array

source ·
pub unsafe extern "C" fn AParcel_writeUint64Array(
    parcel: *mut AParcel,
    arrayData: *const u64,
    length: i32,
) -> binder_status_t
Expand description

Writes an array of uint64_t to the next location in a non-null parcel.

Available since API level 29.

\param parcel the parcel to write to. \param arrayData an array of size ‘length’ (or null if length is -1, may be null if length is 0). \param length the length of arrayData or -1 if this represents a null array.

\return STATUS_OK on successful write.