Searched defs:client_fd (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/mojo/embedder/
H A Dplatform_channel_pair_posix.cc70 int client_fd = -1; local
72 !base::StringToInt(client_fd_string, &client_fd) ||
73 client_fd < base::GlobalDescriptors::kBaseDescriptor) {
78 return ScopedPlatformHandle(PlatformHandle(client_fd));
/external/chromium_org/ipc/
H A Dunix_domain_socket_util_unittest.cc137 int client_fd() const { return client_fd_; } function in class:__anon8502::TestUnixSocketConnection
166 HANDLE_EINTR(send(connection.client_fd(), buffer, buf_len, 0));
/external/chromium_org/mojo/shell/
H A Ddbus_application_loader_linux.cc72 scoped_ptr<dbus::FileDescriptor> client_fd(new dbus::FileDescriptor);
73 client_fd->PutValue(channel_pair.PassClientHandle().release().fd);
74 client_fd->CheckValidity(); // Must be run on an IO thread.
75 return client_fd.Pass();
78 // Sends client_fd over to the externally-running service. If that
81 void ConnectChannel(scoped_ptr<dbus::FileDescriptor> client_fd) { argument
92 writer.AppendFileDescriptor(*client_fd.get());

Completed in 133 milliseconds