Searched defs:channel (Results 226 - 250 of 597) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/renderer_host/
H A Dgpu_message_filter.cc193 const IPC::ChannelHandle& channel,
198 reply.get(), render_process_id_, channel, gpu_info);
191 EstablishChannelCallback( scoped_ptr<IPC::Message> reply, const IPC::ChannelHandle& channel, const gpu::GPUInfo& gpu_info) argument
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dbrowser_ppapi_host_impl.cc22 IPC::ChannelProxy* channel,
39 channel->AddFilter(pepper_message_filter->GetFilter());
40 channel->AddFilter(browser_ppapi_host->message_filter());
41 channel->AddFilter((new TraceMessageFilter())->GetFilter());
18 CreateExternalPluginProcess( IPC::Sender* sender, ppapi::PpapiPermissions permissions, base::ProcessHandle plugin_child_process, IPC::ChannelProxy* channel, int render_process_id, int render_view_id, const base::FilePath& profile_directory) argument
/external/chromium_org/content/child/
H A Dchild_thread.h79 IPC::SyncChannel* channel() { return channel_.get(); } function in class:content::ChildThread
229 // The OnChannelError() callback was invoked - the channel is dead, don't
H A Dwebmessageportchannel_impl.cc89 // The message port ids might not be set up yet if this channel
173 scoped_refptr<WebMessagePortChannelImpl> channel) {
174 // The message port ids might not be set up yet, if this channel wasn't
180 base::Bind(&WebMessagePortChannelImpl::Entangle, this, channel));
185 message_port_id_, channel->message_port_id()));
172 Entangle( scoped_refptr<WebMessagePortChannelImpl> channel) argument
/external/chromium_org/content/child/npapi/
H A Dnp_channel_base.cc76 scoped_refptr<NPChannelBase> channel; local
80 channel = factory();
82 channel = iter->second;
85 DCHECK(channel.get() != NULL);
87 if (!channel->channel_valid()) {
88 channel->channel_handle_ = channel_handle;
93 channel->channel_handle_.name =
96 channel->mode_ = mode;
97 if (channel->Init(ipc_message_loop, create_pipe_now, shutdown_event)) {
98 (*GetChannelMap())[channel_key] = channel;
[all...]
H A Dnpobject_proxy.cc62 NPChannelBase* channel,
66 : channel_(channel),
86 NPObject* NPObjectProxy::Create(NPChannelBase* channel, argument
93 obj->proxy = new NPObjectProxy(channel, route_id, render_view_id, page_url);
94 channel->AddMappingForNPObjectProxy(route_id, &obj->object);
122 // Release our ref count of the plugin channel object, as it addrefs the
193 // Send so addref the channel in this scope.
217 if (IsPluginProcess() && proxy->channel()) {
219 proxy->channel()->GetModalDialogEvent(render_view_id));
284 scoped_refptr<NPChannelBase> channel(prox
61 NPObjectProxy( NPChannelBase* channel, int route_id, int render_view_id, const GURL& page_url) argument
[all...]
H A Dnpobject_stub.cc27 NPChannelBase* channel,
32 channel_(channel),
25 NPObjectStub( NPObject* npobject, NPChannelBase* channel, int route_id, int render_view_id, const GURL& page_url) argument
H A Dnpobject_util.cc151 NPChannelBase* channel,
192 // The channel could be NULL if there was a channel error. The caller's
194 if (channel) {
199 int route_id = channel->GetExistingRouteForNPObjectStub(
204 route_id = channel->GenerateRouteID();
206 variant.value.objectValue, channel, route_id, render_view_id,
214 channel->GetExistingRouteForNPObjectOwner(owner);
230 NPChannelBase* channel,
265 channel
150 CreateNPVariantParam(const NPVariant& variant, NPChannelBase* channel, NPVariant_Param* param, bool release, int render_view_id, const GURL& page_url) argument
229 CreateNPVariant(const NPVariant_Param& param, NPChannelBase* channel, NPVariant* result, int render_view_id, const GURL& page_url) argument
[all...]
/external/chromium_org/content/common/gpu/client/
H A Dgpu_video_decode_accelerator_host.cc24 GpuChannelHost* channel,
26 : channel_(channel),
23 GpuVideoDecodeAcceleratorHost( GpuChannelHost* channel, CommandBufferProxyImpl* impl) argument
H A Dgpu_video_encode_accelerator_host.cc21 GpuChannelHost* channel,
23 : channel_(channel),
20 GpuVideoEncodeAcceleratorHost( GpuChannelHost* channel, CommandBufferProxyImpl* impl) argument
/external/chromium_org/content/common/gpu/
H A Dgpu_command_buffer_stub.h70 GpuChannel* channel,
115 GpuChannel* channel() const { return channel_; } function in class:content::GpuCommandBufferStub
/external/chromium_org/content/plugin/
H A Dplugin_channel.cc146 // Map renderer ID to a (single) channel to that process.
150 PluginChannel* channel = local
159 if (channel)
160 channel->renderer_id_ = renderer_id;
162 return channel;
173 VLOG(1) << "sending message @" << msg << " on channel @" << this
183 VLOG(1) << "received message @" << &msg << " on channel @" << this
/external/chromium_org/content/renderer/pepper/
H A Dpepper_video_decoder_host.cc132 // it is okay to immediately send IPC messages through the returned channel.
133 GpuChannelHost* channel = graphics3d->channel(); local
134 DCHECK(channel);
135 decoder_ = channel->CreateVideoDecoder(command_buffer_route_id);
H A Dppb_video_decoder_impl.cc137 // it is okay to immediately send IPC messages through the returned channel.
138 GpuChannelHost* channel = graphics_3d->channel(); local
139 DCHECK(channel);
140 decoder_ = channel->CreateVideoDecoder(command_buffer_route_id);
/external/chromium_org/content/renderer/shared_worker/
H A Dembedded_shared_worker_stub.cc116 blink::WebMessagePortChannel* channel = *iter; local
117 channel->destroy();
184 WebMessagePortChannelImpl* channel) {
185 impl_->connect(channel);
187 new WorkerHostMsg_WorkerConnected(channel->message_port_id(), route_id_));
192 WebMessagePortChannelImpl* channel = local
197 ConnectToChannel(channel);
203 pending_channels_.push_back(channel);
183 ConnectToChannel( WebMessagePortChannelImpl* channel) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_adapter_win.cc166 int channel,
175 socket->Listen(this, uuid, channel,
164 CreateRfcommService( const BluetoothUUID& uuid, int channel, const CreateServiceCallback& callback, const CreateServiceErrorCallback& error_callback) argument
/external/chromium_org/ipc/
H A Dipc_channel_proxy.cc199 // The channel has already been created and connected, so we need to
209 // The channel is not yet connected, so any filters are still pending.
313 scoped_ptr<ChannelProxy> channel(new ChannelProxy(listener, ipc_task_runner));
314 channel->Init(channel_handle, mode, true);
315 return channel.Pass();
350 // Create the channel immediately. This effectively sets up the
373 // possible that the channel could be closed while it is receiving messages!
420 // See the TODO regarding lazy initialization of the channel in
425 Channel* channel = context_.get()->channel_.get(); local
427 DCHECK(channel) << context
434 Channel* channel = context_.get()->channel_.get(); local
[all...]
H A Dipc_channel_proxy_unittest.cc81 void Init(IPC::Channel* channel) { argument
83 channel_ = channel;
172 // If the channel didn't get a chance to connect, we might see the
431 scoped_ptr<IPC::Channel> channel(IPC::Channel::CreateClient(
434 CHECK(channel->Connect());
435 listener.Init(channel.get());
H A Dipc_channel_win.cc26 ChannelWin::State::State(ChannelWin* channel) : is_pending(false) { argument
28 context.handler = channel;
85 DVLOG(2) << "sending message @" << message << " on channel @" << this
212 // If we already have a valid pipe for channel just copy it.
404 DVLOG(2) << "sent pending message @" << m << " on channel @" << this
413 DVLOG(2) << "sent message @" << m << " on channel @" << this
H A Dipc_logging.cc134 data->channel = channel_id;
256 data.channel.c_str(),
273 void GenerateLogData(const std::string& channel, const Message& message, argument
301 data->channel = channel;
H A Dipc_perftests.cc78 // This channel listener just replies to all messages with the exact same
94 void Init(IPC::Channel* channel) { argument
96 channel_ = channel;
153 void Init(IPC::Channel* channel) { argument
155 channel_ = channel;
226 // Set up IPC channel and start client.
229 listener.Init(channel());
268 scoped_ptr<IPC::Channel> channel(IPC::Channel::CreateClient(
270 listener.Init(channel.get());
271 CHECK(channel
[all...]
/external/chromium_org/media/audio/pulse/
H A Dpulse_util.cc18 pa_channel_position ChromiumToPAChannelPosition(Channels channel) { argument
19 switch (channel) {
45 NOTREACHED() << "Invalid channel: " << channel;
154 // Get channel mapping and open recording stream.
253 // Get channel mapping and open playback stream.
258 // The source data uses a supported channel map so we will use it rather
259 // than the default channel map (NULL).
/external/chromium_org/media/base/
H A Daudio_bus.cc23 // |aligned_frames| to the actual frame length of each channel array.
26 // Choose a size such that each channel will be aligned by
50 float* channel_data = dest->channel(ch);
70 const float* channel_data = source->channel(ch);
135 // Sanity check wrapped vector for alignment and channel count.
186 void AudioBus::SetChannelData(int channel, float* data) { argument
189 CHECK_GE(channel, 0);
190 CHECK_LT(static_cast<size_t>(channel), channel_data_.size());
192 channel_data_[channel] = data;
319 // want to care), just copy using the public channel() accessor
[all...]
/external/chromium_org/mojo/system/
H A Dmessage_in_transit.cc183 void MessageInTransit::SerializeAndCloseDispatchers(Channel* channel) { argument
184 DCHECK(channel);
190 transport_data_.reset(new TransportData(dispatchers_.Pass(), channel));
H A Dmessage_pipe_dispatcher.cc8 #include "mojo/system/channel.h"
97 Channel* channel,
119 channel->AttachMessagePipeEndpoint(remote_message_pipe.second, 1);
128 if (!channel->RunMessagePipeEndpoint(local_id, remote_id)) {
135 channel->RunRemoteMessagePipeEndpoint(local_id, remote_id);
232 Channel* /*channel*/,
241 Channel* channel,
250 // Attach the new proxy endpoint to the channel.
252 channel->AttachMessagePipeEndpoint(message_pipe_, port_);
96 Deserialize( Channel* channel, const void* source, size_t size) argument
240 EndSerializeAndCloseImplNoLock( Channel* channel, void* destination, size_t* actual_size, embedder::PlatformHandleVector* ) argument

Completed in 329 milliseconds

1234567891011>>