Searched refs:external_storage (Results 1 – 2 of 2) sorted by relevance
| /xnu-8019.80.24/bsd/sys/ |
| H A D | buf.h | 681 buf_t buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone… 1273 buf_t buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*i…
|
| /xnu-8019.80.24/bsd/vfs/ |
| H A D | vfs_bio.c | 130 uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg, int priv); 861 buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(b… in buf_create_shadow_priv() argument 863 return buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 1); in buf_create_shadow_priv() 867 buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t,… in buf_create_shadow() argument 869 return buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 0); in buf_create_shadow() 874 buf_create_shadow_internal(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodon… in buf_create_shadow_internal() argument 885 if (bp->b_shadow_ref && bp->b_data_ref == 0 && external_storage == 0) { in buf_create_shadow_internal() 905 if (external_storage) { in buf_create_shadow_internal() 906 io_bp->b_datap = external_storage; in buf_create_shadow_internal() 926 if (external_storage) { in buf_create_shadow_internal() [all …]
|