Searched refs:dup (Results 226 - 250 of 315) sorted by last modified time

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_proxy.h72 virtual int dup(int fd);
H A Dkernel_wrap.h66 int NAME(dup)(int oldfd) NOTHROW;
H A Dkernel_wrap_bionic.cc119 OP(dup); \
155 int WRAP(dup)(int fd, int* newfd) NOTHROW {
H A Dkernel_wrap_glibc.cc132 OP(dup); \
199 int WRAP(dup)(int fd, int* newfd) NOTHROW {
H A Dkernel_wrap_newlib.cc61 OP(fdio, dup); \
99 int WRAP(dup)(int fd, int* newfd) { function
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dkernel_wrap_test.cc236 TEST_F(KernelWrapTest, dup) {
237 EXPECT_CALL(mock, dup(kDummyInt)).WillOnce(Return(kDummyInt2));
238 EXPECT_EQ(kDummyInt2, dup(kDummyInt));
H A Dmock_kernel_proxy.h26 MOCK_METHOD1(dup, int(int));
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dmodule_ppapi.cc51 NaClSecureRngModuleSetUrandomFd(dup(private_interface_->UrandomFD()));
/external/chromium_org/remoting/host/native_messaging/
H A Dpipe_messaging_channel.cc35 result = dup(file.GetPlatformFile());
/external/chromium_org/sandbox/linux/services/
H A Dlibc_urandom_override.cc130 int fd = HANDLE_EINTR(dup(base::GetUrandomFD()));
132 PLOG(ERROR) << "dup() failed.";
146 int fd = HANDLE_EINTR(dup(base::GetUrandomFD()));
148 PLOG(ERROR) << "dup() failed.";
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/ipc/
H A Dfile_descriptor_set_posix_unittest.cc25 const int duped = dup(fd);
H A Dipc_channel_posix.cc287 local_pipe = HANDLE_EINTR(dup(local_pipe));
H A Dipc_platform_file.cc33 // dup()ing and close()ing.
37 // the other process from the I/O thread. Without the dup, calling code might
40 int fd = close_source_handle ? handle : ::dup(handle);
/external/chromium_org/ipc/mojo/
H A Dipc_channel_mojo.cc249 // We dup() the handles in IPC::Message to transmit.
251 // of FDs, so just to dup()-and-own them is the safest option.
257 int fd_to_send = dup(fds_to_send[i]);
259 DPLOG(WARNING) << "Failed to dup FD to transmit.";
/external/chromium_org/media/base/
H A Dvideo_frame.cc267 int duped_fd = HANDLE_EINTR(dup(dmabuf_fds[i]));
/external/chromium_org/mojo/common/test/
H A Dtest_utils_posix.cc79 int rv = dup(fileno(fp.get()));
80 PCHECK(rv != -1) << "dup";
/external/chromium_org/mojo/embedder/
H A Dplatform_handle_utils_posix.cc16 // Note that |dup()| returns -1 on error (which is exactly the value we use
18 return ScopedPlatformHandle(PlatformHandle(dup(platform_handle.fd)));
H A Dsimple_platform_shared_buffer_posix.cc48 // |FILE*|, and then we have to |dup(fileno(fp))| to get back to an FD that we
70 // Note: |dup()| is not interruptible (but |dup2()|/|dup3()| are).
71 base::ScopedFD fd(dup(fileno(fp.get())));
73 PLOG(ERROR) << "dup";
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_delegate_proxy.cc509 if ((handle_out->fd = HANDLE_EINTR(dup(handle_in.fd))) < 0) {
510 PLOG(ERROR) << "dup()";
/external/chromium_org/content/renderer/pepper/
H A Dpepper_broker.cc40 // dup()ing and close()ing.
41 out_handle = ::dup(handle);
H A Dpepper_compositor_host.cc110 base::SharedMemoryHandle shm_handle(dup(handle), false);
/external/chromium_org/components/nacl/browser/
H A Dnacl_process_host.cc709 // No need to dup the imc_handle - we don't pass it anywhere else so
867 memory_fd.fd = dup(memory_buffer.handle().fd);
869 DLOG(ERROR) << "Failed to dup() a file descriptor";
/external/chromium_org/components/nacl/loader/
H A Dnacl_listener.cc312 int urandom_fd = dup(base::GetUrandomFD());
314 LOG(ERROR) << "Failed to dup() the urandom FD";

Completed in 309 milliseconds

1234567891011>>