Searched refs:force_copy (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,
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.c134 static buf_t buf_create_shadow_internal(buf_t bp, boolean_t force_copy,
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
769 if (force_copy == FALSE) {

Completed in 26 milliseconds