Searched refs:external_storage (Results 1 – 2 of 2) sorted by relevance
| /xnu-10002.81.5/bsd/sys/ |
| H A D | buf.h | 692 buf_t buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone… 1284 buf_t buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*i…
|
| /xnu-10002.81.5/bsd/vfs/ |
| H A D | vfs_bio.c | 130 uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg, int priv); 866 buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(b… in buf_create_shadow_priv() argument 868 return buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 1); in buf_create_shadow_priv() 872 buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t,… in buf_create_shadow() argument 874 return buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 0); in buf_create_shadow() 879 buf_create_shadow_internal(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodon… in buf_create_shadow_internal() argument 890 if (bp->b_shadow_ref && bp->b_data_ref == 0 && external_storage == 0) { in buf_create_shadow_internal() 910 if (external_storage) { in buf_create_shadow_internal() 911 io_bp->b_datap = external_storage; in buf_create_shadow_internal() 931 if (external_storage) { in buf_create_shadow_internal() [all …]
|