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

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_lock_unittest.py 59 lock_file = open(self.lock_file_name, 'r')
60 lock_file_pid = lock_file.readline()
61 lock_file.close()
87 for lock_file, expected in zip(lock_file_list, expected_number_list):
88 self.assertEqual(self.http_lock_obj._extract_lock_number(lock_file), expected)
http_lock.py 118 lock_file = open(self._process_lock_file_name, 'w')
119 lock_file.write(str(os.getpid()))
120 lock_file.close()
  /external/chromium/chrome/browser/importer/
firefox_profile_lock_unittest.cc 81 FILE* lock_file = file_util::OpenFile(lock_file_path, "w"); local
82 ASSERT_TRUE(lock_file);
83 file_util::CloseFile(lock_file);
  /external/valgrind/main/memcheck/tests/
file_locking.c 24 static int lock_file(const int fd) function
55 if (! lock_file(fd))
  /external/ppp/pppd/
utils.c 906 static char lock_file[MAXPATHLEN]; variable
920 strlcpy(lock_file, dev, sizeof(lock_file));
927 error("Can't create lock file %s", lock_file);
946 slprintf(lock_file, sizeof(lock_file), "%s/LK.%03d.%03d.%03d",
965 slprintf(lock_file, sizeof(lock_file), "%s/LCK..%s", LOCK_DIR, dev);
968 while ((fd = open(lock_file, O_EXCL | O_CREAT | O_RDWR, 0644)) < 0) {
970 error("Can't create lock file %s: %m", lock_file);
    [all...]
sys-solaris.c     [all...]

Completed in 773 milliseconds