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

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/
align1.s 22 lock_file: label
  /system/bt/osi/test/
AlarmTestHarness.cpp 107 void *lock_file = mmap(nullptr, lock_stat.st_size, PROT_READ, local
113 if (memcmp(lock_file, unlock_file, unlock_stat.st_size) == 0) {
121 munmap(lock_file, lock_stat.st_size);
  /external/ppp/pppd/
utils.c 869 static char lock_file[MAXPATHLEN]; variable
883 strlcpy(lock_file, dev, sizeof(lock_file));
890 error("Can't create lock file %s", lock_file);
909 slprintf(lock_file, sizeof(lock_file), "%s/LK.%03d.%03d.%03d",
928 slprintf(lock_file, sizeof(lock_file), "%s/LCK..%s", LOCK_DIR, dev);
931 while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
933 error("Can't create lock file %s: %m", lock_file);
    [all...]
sys-solaris.c     [all...]
  /external/valgrind/memcheck/tests/
file_locking.c 24 static int lock_file(const int fd) function
55 if (! lock_file(fd))
  /external/libdaemon/libdaemon/
dpid.c 74 static int lock_file(int fd, int enable) { function
122 if ((locked = lock_file(fd, 1)) < 0)
162 lock_file(fd, 0);
235 if ((locked = lock_file(fd, 1)) < 0) {
261 lock_file(fd, 0);
  /external/fio/
file.h 183 extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir);
ioengines.c 208 lock_file(td, io_u->file, io_u->ddir);
filesetup.c 1376 void lock_file(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir) function
  /external/autotest/client/virt/
virt_utils.py 279 lock_file = open("/tmp/mac_lock", "w+")
280 fcntl.lockf(lock_file, lock_mode)
282 return pool, lock_file
285 def _close_mac_pool(pool, lock_file):
287 fcntl.lockf(lock_file, fcntl.LOCK_UN)
288 lock_file.close()
325 mac_pool, lock_file = _open_mac_pool(fcntl.LOCK_EX)
338 _close_mac_pool(mac_pool, lock_file)
349 mac_pool, lock_file = _open_mac_pool(fcntl.LOCK_EX)
353 _close_mac_pool(mac_pool, lock_file)
    [all...]

Completed in 411 milliseconds