Lines Matching refs:t
93 lock_table_unlock( LockTable* t ) in lock_table_unlock() argument
95 pthread_mutex_unlock( &t->lock ); in lock_table_unlock()
99 lock_table_lookup( LockTable* t, FILE* f ) in lock_table_lookup() argument
105 pnode = &t->buckets[hash % FILE_LOCK_BUCKETS]; in lock_table_lookup()
118 LockTable* t = lock_table_lock(); in flockfile() local
120 if (t != NULL) { in flockfile()
121 FileLock** lookup = lock_table_lookup(t, fp); in flockfile()
130 lock_table_unlock(t); in flockfile()
142 lock_table_unlock(t); in flockfile()
158 LockTable* t = lock_table_lock(); in ftrylockfile() local
160 if (t != NULL) { in ftrylockfile()
161 FileLock** lookup = lock_table_lookup(t, fp); in ftrylockfile()
164 lock_table_unlock(t); in ftrylockfile()
179 LockTable* t = lock_table_lock(); in funlockfile() local
181 if (t != NULL) { in funlockfile()
182 FileLock** lookup = lock_table_lookup(t, fp); in funlockfile()
188 lock_table_unlock(t); in funlockfile()
197 LockTable* t = lock_table_lock(); in __fremovelock() local
199 if (t != NULL) { in __fremovelock()
200 FileLock** lookup = lock_table_lookup(t, fp); in __fremovelock()
207 lock_table_unlock(t); in __fremovelock()