HomeSort by relevance Sort by last modified time
    Searched defs:result_fd (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/content/common/
child_process_sandbox_support_impl_shm_linux.cc 19 int result_fd; local
22 &result_fd, request);
25 return result_fd;
font_config_ipc_linux.cc 103 int result_fd = -1; local
107 &result_fd, request);
117 if (result_fd)
118 CloseFD(result_fd);
122 SkStream* stream = StreamFromFD(result_fd);
123 CloseFD(result_fd);
  /external/chromium_org/components/nacl/loader/
nacl_listener.cc 58 int result_fd = base::subtle::NoBarrier_AtomicExchange(&g_shm_fd, -1); local
59 if (result_fd != -1) {
63 if (lseek(result_fd, size - 1, SEEK_SET) == -1) {
67 if (write(result_fd, "", 1) != 1) {
71 return result_fd;
  /external/chromium_org/content/browser/renderer_host/
render_sandbox_host_linux.cc 218 const int result_fd = open(paths_[index]->c_str(), O_RDONLY); local
221 if (result_fd == -1) {
229 SendRendererReply(fds, reply, result_fd);
231 if (result_fd >= 0) {
232 int err = HANDLE_EINTR(close(result_fd));

Completed in 435 milliseconds