HomeSort by relevance Sort by last modified time
    Searched refs:_FLOCK (Results 1 - 3 of 3) sorted by null

  /bionic/libc/bionic/
flockfile.cpp 44 pthread_mutex_lock(&_FLOCK(fp));
59 return pthread_mutex_trylock(&_FLOCK(fp));
68 pthread_mutex_unlock(&_FLOCK(fp));
  /ndk/sources/android/support/src/stdio/
fileext.h 48 #define _FLOCK(fp) _EXT(fp)->_lock
62 #define _FLOCK_INIT(fp) _FLOCK(fp).value = __PTHREAD_RECURSIVE_MUTEX_INIT_VALUE
63 #define _FLOCK_LOCK(fp) pthread_mutex_lock(&_FLOCK(fp))
64 #define _FLOCK_TRYLOCK(fp) pthread_mutex_trylock(&_FLOCK(fp))
65 #define _FLOCK_UNLOCK(fp) pthread_mutex_unlock(&_FLOCK(fp))
  /bionic/libc/stdio/
fileext.h 57 #define _FLOCK(fp) _EXT(fp)->_lock
67 pthread_mutex_init(&_FLOCK(fp), &attr); \

Completed in 161 milliseconds