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

  /external/chromium/chrome/browser/
shell_integration_linux.cc 121 int desktop_fd = open(desktop_path.value().c_str(), O_RDONLY | O_DIRECTORY); local
122 if (desktop_fd < 0)
125 int fd = openat(desktop_fd, shortcut_filename.value().c_str(),
129 if (HANDLE_EINTR(close(desktop_fd)) < 0)
144 unlinkat(desktop_fd, shortcut_filename.value().c_str(), 0);
147 if (HANDLE_EINTR(close(desktop_fd)) < 0)
  /external/chromium_org/chrome/browser/
shell_integration_linux.cc 142 int desktop_fd = open(desktop_path.value().c_str(), O_RDONLY | O_DIRECTORY); local
143 if (desktop_fd < 0)
146 int fd = openat(desktop_fd, shortcut_filename.value().c_str(),
150 if (IGNORE_EINTR(close(desktop_fd)) < 0)
165 unlinkat(desktop_fd, shortcut_filename.value().c_str(), 0);
168 if (IGNORE_EINTR(close(desktop_fd)) < 0)
    [all...]

Completed in 247 milliseconds