Searched refs:external_storage (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dbuf_internal.h262 buf_t buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg);
H A Dbuf.h647 @param force_copy If TRUE, do not link the shadaow to 'bp' and if 'external_storage' == NULL,
649 @param external_storage If non-NULL, associate it with the new buffer as its storage instead of the
656 buf_t buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg);
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_bio.c135 uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg, int priv);
730 buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg) argument
732 return (buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 1));
736 buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg) argument
738 return (buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 0));
743 buf_create_shadow_internal(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg, int priv) argument
755 if (bp->b_shadow_ref && bp->b_data_ref == 0 && external_storage == 0)
773 if (external_storage) {
774 io_bp->b_datap = external_storage;
794 if (external_storage)
[all...]

Completed in 75 milliseconds