Lines Matching refs:Lock
9 lock.c
31 IN FLOCK *Lock
38 lock, and then acquires ownership of the lock.
42 Lock - The lock to acquire
46 Lock owned
52 Lock->OwnerTpl = uefi_call_wrapper(BS->RaiseTPL, 1, Lock->Tpl);
57 Lock->OwnerTpl = LibRuntimeRaiseTPL(Lock->Tpl);
60 Lock->Lock += 1;
61 ASSERT (Lock->Lock == 1);
70 IN FLOCK *Lock
76 Releases ownership of the mutual exclusion lock, and
81 Lock - The lock to release
85 Lock unowned
91 Tpl = Lock->OwnerTpl;
92 ASSERT(Lock->Lock == 1);
93 Lock->Lock -= 1;