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

  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
kernel_proxy_test.cc 487 int dup_fd = ki_dup(fd); local
488 ASSERT_NE(-1, dup_fd);
492 ASSERT_EQ(9, ki_lseek(dup_fd, 0, SEEK_CUR));
502 // dup_fd, dup2_fd -> "/foo"
504 // We should still be able to write to dup_fd (i.e. it should not be closed).
505 ASSERT_EQ(4, ki_write(dup_fd, "more", 4));
509 // dup_fd -> "/foo"
511 ASSERT_EQ(dup_fd, ki_dup2(fd, dup_fd));
512 // fd, new_fd, dup_fd -> "/bar
    [all...]
  /external/lldb/include/lldb/API/
SBTarget.h 105 AddDuplicateFileAction (int fd, int dup_fd);
  /hardware/samsung_slsi/exynos5/libhwc/
hwc.cpp 204 int dup_fd = dup(fence); local
205 if (dup_fd < 0)
207 return dup_fd;
1523 int dup_fd = dup_or_warn(fence); local
    [all...]
  /external/lldb/include/lldb/Target/
Process.h 473 Duplicate (int fd, int dup_fd);
513 int m_arg; // oflag for eFileActionOpen*, dup_fd for eFileActionDuplicate
596 AppendDuplicateFileAction (int fd, int dup_fd)
599 if (file_action.Duplicate (fd, dup_fd))
    [all...]
  /external/lldb/scripts/Python/interface/
SBTarget.i 90 AddDuplicateFileAction (int fd, int dup_fd);
  /external/lldb/source/API/
SBTarget.cpp 252 SBLaunchInfo::AddDuplicateFileAction (int fd, int dup_fd)
254 return m_opaque_sp->AppendDuplicateFileAction(fd, dup_fd);
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
omx_vdec.h 307 OMX_U32 dup_fd; member in struct:dynamic_buf_list
    [all...]
  /external/lldb/source/Target/
Process.cpp 652 ProcessLaunchInfo::FileAction::Duplicate (int fd, int dup_fd)
655 if (fd >= 0 && dup_fd >= 0)
659 m_arg = dup_fd;
704 error.PutToLog(log, "posix_spawn_file_actions_adddup2 (action=%p, fd=%i, dup_fd=%i)",
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
omx_vdec_hevc_swvdec.cpp     [all...]
omx_vdec_msm8974.cpp     [all...]

Completed in 1348 milliseconds