Home
last modified time | relevance | path

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

/xnu-8020.101.4/osfmk/vm/
H A Dvm_compressor.h200c_state:4, /* what state is the segment in which dictates which q to find… member
285 #define C_SEG_IS_ONDISK(cseg) ((cseg->c_state == C_ON_SWAPPEDOUT_Q || cseg->c_state == C_…
286 #define C_SEG_IS_ON_DISK_OR_SOQ(cseg) ((cseg->c_state == C_ON_SWAPPEDOUT_Q || \
287 cseg->c_state == C_ON_SWAPPEDOUTSPARSE_Q || \
288 cseg->c_state == C_ON_SWAPOUT_Q || \
289 cseg->c_state == C_ON_SWAPIO_Q))
H A Dvm_compressor.c1109 assert(c_seg->c_state != C_IS_FILLING); in c_seg_need_delayed_compaction()
1227 if (c_seg->c_state == C_ON_MAJORCOMPACT_Q && C_SEG_SHOULD_MAJORCOMPACT_NOW(c_seg)) { in c_seg_do_minor_compaction_and_unlock()
1405 int old_state = c_seg->c_state; in c_seg_switch_state()
1619 c_seg->c_state = new_state; in c_seg_switch_state()
3183 assert(c_seg->c_state == C_ON_AGE_Q); in vm_compressor_compact_and_swap()
3229 assert(c_seg_next->c_state == C_ON_AGE_Q); in vm_compressor_compact_and_swap()
3378 if (c_seg->c_state == C_ON_AGE_Q) { in vm_compressor_compact_and_swap()
3553 c_seg->c_state = C_IS_EMPTY; in c_seg_allocate()
3691 if (c_seg->c_state == C_ON_SWAPOUT_Q) { in c_current_seg_filled()
3702 if (c_seg->c_state == C_ON_AGE_Q && C_SEG_UNUSED_BYTES(c_seg) >= PAGE_SIZE) { in c_current_seg_filled()
[all …]
H A Dvm_compressor_backing_store.c635 assert(c_seg->c_state == C_ON_SWAPPEDOUTSPARSE_Q); in vm_swap_defragment()
1126 assert(c_seg->c_state == C_ON_SWAPOUT_Q); in vm_swapout_thread()
/xnu-8020.101.4/tools/lldbmacros/
H A Dmemory.py4359 c_state = c_seg.c_state
4360 if c_state == 0:
4363 elif c_state == 1:
4366 elif c_state == 2:
4368 elif c_state == 3:
4370 elif c_state == 4:
4372 elif c_state == 5:
4375 elif c_state == 6:
4378 elif c_state == 7:
4380 elif c_state == 8:
[all …]