Lines Matching defs:FileLock
13 #include "android/utils/filelock.h"
43 ** a FileLock is useful to prevent several emulator instances from using the same
46 ** create a FileLock object with filelock_create(), ithis function should return NULL
73 struct FileLock
79 FileLock* next;
83 static FileLock* _all_filelocks;
95 filelock_lock( FileLock* lock )
350 filelock_release( FileLock* lock )
366 FileLock* lock;
373 FileLock*
383 int total_len = sizeof(FileLock) + file_len + lock_len + temp_len + 3;
385 FileLock* lock = malloc(total_len);