Home
last modified time | relevance | path

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

/xnu-8792.61.2/bsd/vfs/
H A Dvfs_syscalls.c3151 sync_type_t sync_type = *((sync_type_t *)arg); in sync_internal_callback() local
3153 if ((sync_type == SYNC_ONLY_RELIABLE_MEDIA) && !is_reliable) { in sync_internal_callback()
3155 } else if ((sync_type == SYNC_ONLY_UNRELIABLE_MEDIA) && is_reliable) { in sync_internal_callback()
3178 sync_type_t sync_type; in sync_thread() local
3188 sync_type = SYNC_ONLY_RELIABLE_MEDIA; in sync_thread()
3189 vfs_iterate(LK_NOWAIT, sync_internal_callback, &sync_type); in sync_thread()
3190 sync_type = SYNC_ONLY_UNRELIABLE_MEDIA; in sync_thread()
3191 vfs_iterate(LK_NOWAIT, sync_internal_callback, &sync_type); in sync_thread()