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

  /external/chromium_org/chrome/browser/importer/
firefox_profile_lock_posix.cc 60 lock_fd_ = -1;
72 lock_fd_ = open(old_lock_file_.value().c_str(), O_CREAT | O_EXCL, 0644);
79 close(lock_fd_);
80 lock_fd_ = -1;
85 return (lock_fd_ >= 0);
96 lock_fd_ = open(lock_file_.value().c_str(), O_WRONLY | O_CREAT | O_TRUNC,
98 if (lock_fd_ == -1)
109 if (fcntl(lock_fd_, F_GETLK, &testlock) == -1) {
110 close(lock_fd_);
111 lock_fd_ = -1
    [all...]
firefox_profile_lock.h 96 int lock_fd_; member in class:FirefoxProfileLock

Completed in 707 milliseconds