Home
last modified time | relevance | path

Searched refs:external_storage (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.1.9/bsd/sys/
H A Dbuf.h698 buf_t buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone…
1341 buf_t buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*i…
/xnu-12377.1.9/bsd/vfs/
H A Dvfs_bio.c130 uintptr_t external_storage, void (*iodone)(buf_t, void *), void *arg, int priv);
1029 buf_create_shadow_priv(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(b… in buf_create_shadow_priv() argument
1031 return buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 1); in buf_create_shadow_priv()
1035 buf_create_shadow(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodone)(buf_t,… in buf_create_shadow() argument
1037 return buf_create_shadow_internal(bp, force_copy, external_storage, iodone, arg, 0); in buf_create_shadow()
1042 buf_create_shadow_internal(buf_t bp, boolean_t force_copy, uintptr_t external_storage, void (*iodon… in buf_create_shadow_internal() argument
1053 if (bp->b_shadow_ref && bp->b_data_ref == 0 && external_storage == 0) { in buf_create_shadow_internal()
1073 if (external_storage) { in buf_create_shadow_internal()
1074 io_bp->b_datap = external_storage; in buf_create_shadow_internal()
1094 if (external_storage) { in buf_create_shadow_internal()
[all …]