Lines Matching refs:exceptions
40 uint32_t exceptions = 0; in mutex_lock_check() local
42 exceptions = cpu_spin_lock_xsave(&graph_lock); in mutex_lock_check()
44 cpu_spin_unlock_xrestore(&graph_lock, exceptions); in mutex_lock_check()
50 uint32_t exceptions = 0; in mutex_trylock_check() local
52 exceptions = cpu_spin_lock_xsave(&graph_lock); in mutex_trylock_check()
54 cpu_spin_unlock_xrestore(&graph_lock, exceptions); in mutex_trylock_check()
60 uint32_t exceptions = 0; in mutex_unlock_check() local
62 exceptions = cpu_spin_lock_xsave(&graph_lock); in mutex_unlock_check()
64 cpu_spin_unlock_xrestore(&graph_lock, exceptions); in mutex_unlock_check()
69 uint32_t exceptions = cpu_spin_lock_xsave(&graph_lock); in mutex_destroy_check() local
72 cpu_spin_unlock_xrestore(&graph_lock, exceptions); in mutex_destroy_check()