Searched refs:abort_flags (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dubc_subr.c2215 * abort_flags abort type (see below)
2230 * The abort_flags argument is a bitmap of flags on the range of
2256 int abort_flags)
2261 if (abort_flags & UPL_ABORT_FREE_ON_EMPTY)
2262 abort_flags |= UPL_ABORT_NOTIFY_EMPTY;
2264 kr = upl_abort_range(upl, offset, size, abort_flags, &empty);
2266 if((abort_flags & UPL_ABORT_FREE_ON_EMPTY) && empty)
2252 ubc_upl_abort_range( upl_t upl, upl_offset_t offset, upl_size_t size, int abort_flags) argument
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_user.c2977 int abort_flags);
3044 int abort_flags)
3049 if (abort_flags & UPL_COMMIT_FREE_ON_EMPTY)
3050 abort_flags |= UPL_COMMIT_NOTIFY_EMPTY;
3052 kr = upl_abort_range(upl, offset, size, abort_flags, &finished);
3054 if ((abort_flags & UPL_COMMIT_FREE_ON_EMPTY) && finished)
3040 kernel_upl_abort_range( upl_t upl, upl_offset_t offset, upl_size_t size, int abort_flags) argument
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_cluster.c3473 int abort_flags = UPL_ABORT_FREE_ON_EMPTY; local
3477 abort_flags |= UPL_ABORT_REFERENCE;
3479 ubc_upl_abort_range(upl, start_pg * PAGE_SIZE, range * PAGE_SIZE, abort_flags);
5606 int abort_flags; local
5684 abort_flags = UPL_ABORT_FREE_ON_EMPTY;
5686 abort_flags = UPL_ABORT_FREE_ON_EMPTY | UPL_ABORT_DUMP_PAGES;
5688 ubc_upl_abort_range(upl, 0, PAGE_SIZE, abort_flags);

Completed in 47 milliseconds