Searched refs:dup_fd (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dkernel_proxy_test.cc487 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
[all...]
/external/lldb/include/lldb/API/
H A DSBTarget.h105 AddDuplicateFileAction (int fd, int dup_fd);
/external/lldb/scripts/Python/interface/
H A DSBTarget.i90 AddDuplicateFileAction (int fd, int dup_fd);
/external/lldb/include/lldb/Target/
H A DProcess.h473 Duplicate (int fd, int dup_fd);
513 int m_arg; // oflag for eFileActionOpen*, dup_fd for eFileActionDuplicate
596 AppendDuplicateFileAction (int fd, int dup_fd) argument
599 if (file_action.Duplicate (fd, dup_fd))
/external/lldb/source/API/
H A DSBTarget.cpp252 SBLaunchInfo::AddDuplicateFileAction (int fd, int dup_fd) argument
254 return m_opaque_sp->AppendDuplicateFileAction(fd, dup_fd);
/external/lldb/source/Target/
H A DProcess.cpp652 ProcessLaunchInfo::FileAction::Duplicate (int fd, int dup_fd) argument
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)",

Completed in 86 milliseconds