Searched refs:owned (Results 1 – 4 of 4) sorted by relevance
| /optee_os/core/include/kernel/ |
| H A D | lockdep.h | 57 struct lockdep_lock_head *owned, 60 struct lockdep_lock_head *owned, 62 TEE_Result __lockdep_lock_release(struct lockdep_lock_head *owned, 82 struct lockdep_lock_head *owned, in lockdep_lock_acquire() argument 85 TEE_Result res = __lockdep_lock_acquire(graph, owned, id); in lockdep_lock_acquire() 101 struct lockdep_lock_head *owned, in lockdep_lock_tryacquire() argument 104 TEE_Result res = __lockdep_lock_tryacquire(graph, owned, id); in lockdep_lock_tryacquire() 117 static inline void lockdep_lock_release(struct lockdep_lock_head *owned, in lockdep_lock_release() argument 120 TEE_Result res = __lockdep_lock_release(owned, id); in lockdep_lock_release()
|
| /optee_os/core/kernel/ |
| H A D | mutex_lockdep.c | 25 static struct lockdep_lock_head owned[CFG_NUM_THREADS]; variable 32 TAILQ_INIT(&owned[n]); in mutex_lockdep_init() 43 lockdep_lock_acquire(&graph, &owned[thread], (uintptr_t)m); in mutex_lock_check() 53 lockdep_lock_tryacquire(&graph, &owned[thread], (uintptr_t)m); in mutex_trylock_check() 63 lockdep_lock_release(&owned[thread], (uintptr_t)m); in mutex_unlock_check()
|
| H A D | lockdep.c | 335 struct lockdep_lock_head *owned, in __lockdep_lock_acquire() argument 348 TAILQ_FOREACH(lock, owned, link) { in __lockdep_lock_acquire() 350 acq_stack, (uintptr_t)owned); in __lockdep_lock_acquire() 369 TAILQ_INSERT_TAIL(owned, lock, link); in __lockdep_lock_acquire() 380 struct lockdep_lock_head *owned, in __lockdep_lock_tryacquire() argument 398 TAILQ_INSERT_TAIL(owned, lock, link); in __lockdep_lock_tryacquire() 403 TEE_Result __lockdep_lock_release(struct lockdep_lock_head *owned, uintptr_t id) in __lockdep_lock_release() argument 407 TAILQ_FOREACH_REVERSE(lock, owned, lockdep_lock_head, link) { in __lockdep_lock_release() 409 TAILQ_REMOVE(owned, lock, link); in __lockdep_lock_release() 416 EMSG_RAW("Thread %p does not own lock %#" PRIxPTR, (void *)owned, id); in __lockdep_lock_release() [all …]
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | ChangeLog | 541 PSA functions are owned exclusively by the PSA core for the duration of
|