Home
last modified time | relevance | path

Searched defs:hb_lock_t (Results 1 – 1 of 1) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-mutex.hh109 struct hb_lock_t struct
111 hb_lock_t (hb_mutex_t &mutex_) : mutex (&mutex_) { mutex->lock (); } in hb_lock_t() argument
112 hb_lock_t (hb_mutex_t *mutex_) : mutex (mutex_) { if (mutex) mutex->lock (); } in hb_lock_t() function
113 ~hb_lock_t () { if (mutex) mutex->unlock (); } in ~hb_lock_t() argument
115 hb_mutex_t *mutex;