Searched defs:channel (Results 251 - 275 of 602) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ipc/
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_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_perftest_support.cc73 // This channel listener just replies to all messages with the exact same
89 void Init(Channel* channel) { argument
91 channel_ = channel;
240 // Set up IPC channel and start client.
243 listener.Init(channel());
281 // Set up IPC channel and start client.
329 scoped_ptr<Channel> channel = CreateChannel(listener_.get()); local
330 listener_->Init(channel.get());
331 CHECK(channel->Connect());
/external/chromium_org/ipc/mojo/
H A Dipc_channel_mojo_unittest.cc73 IPC::ChannelMojo* channel() const { return channel_.get(); } function in class:__anon8494::ChannelClient
124 // Set up IPC channel and start client.
135 EXPECT_TRUE(base::kNullProcessId != this->channel()->GetPeerPID());
137 this->channel()->Close();
151 listener.Init(client.channel());
154 client.channel(), "hello from child");
237 // Set up IPC channel and start client.
254 this->channel()->Close();
328 ListenerThatExpectsFile::WriteAndSendFile(channel(), file);
331 this->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.cc184 void MessageInTransit::SerializeAndCloseDispatchers(Channel* channel) { argument
185 DCHECK(channel);
191 transport_data_.reset(new TransportData(dispatchers_.Pass(), channel));
H A Dmessage_pipe_dispatcher.cc8 #include "mojo/system/channel.h"
99 Channel* channel,
122 channel->AttachEndpoint(channel_endpoint);
131 if (!channel->RunMessagePipeEndpoint(local_id, remote_id)) {
138 channel->RunRemoteMessagePipeEndpoint(local_id, remote_id);
236 Channel* /*channel*/,
245 Channel* channel,
252 // and attach it to the channel.
254 channel->AttachEndpoint(message_pipe_->ConvertLocalToProxy(port_));
98 Deserialize( Channel* channel, const void* source, size_t size) argument
244 EndSerializeAndCloseImplNoLock( Channel* channel, void* destination, size_t* actual_size, embedder::PlatformHandleVector* ) argument
H A Dshared_buffer_dispatcher.cc13 #include "mojo/system/channel.h"
90 Channel* channel,
94 DCHECK(channel);
127 channel->platform_support()->CreateSharedBufferFromHandle(
236 Channel* /*channel*/,
245 Channel* /*channel*/,
89 Deserialize( Channel* channel, const void* source, size_t size, embedder::PlatformHandleVector* platform_handles) argument
H A Dtransport_data.cc11 #include "mojo/system/channel.h"
64 Channel* channel) {
66 DCHECK(channel);
89 dispatcher, channel, &max_size, &max_platform_handles);
108 size_per_platform_handle = channel->GetSerializedPlatformHandleSize();
152 channel,
317 Channel* channel) {
320 DCHECK(channel);
339 channel, handle_table[i].type, source, size, platform_handles.get());
63 TransportData(scoped_ptr<DispatcherVector> dispatchers, Channel* channel) argument
313 DeserializeDispatchers( const void* buffer, size_t buffer_size, embedder::ScopedPlatformHandleVectorPtr platform_handles, Channel* channel) argument
/external/chromium_org/ppapi/proxy/
H A Dppapi_command_buffer_proxy.cc18 ProxyChannel* channel,
21 channel_(channel) {
16 PpapiCommandBufferProxy( const ppapi::HostResource& resource, ProxyChannel* channel, const SerializedHandle& shared_state) argument
/external/chromium_org/remoting/protocol/
H A Dlibjingle_transport_factory.cc61 void OnRequestSignaling(cricket::TransportChannelImpl* channel);
62 void OnCandidateReady(cricket::TransportChannelImpl* channel,
64 void OnRouteChange(cricket::TransportChannel* channel,
66 void OnWritableState(cricket::TransportChannel* channel);
162 // TODO(sergeyu): Specify correct component ID for the channel.
229 cricket::TransportChannelImpl* channel) {
235 cricket::TransportChannelImpl* channel,
242 cricket::TransportChannel* channel,
273 cricket::TransportChannel* channel) {
274 DCHECK_EQ(channel, channel
228 OnRequestSignaling( cricket::TransportChannelImpl* channel) argument
234 OnCandidateReady( cricket::TransportChannelImpl* channel, const cricket::Candidate& candidate) argument
241 OnRouteChange( cricket::TransportChannel* channel, const cricket::Candidate& candidate) argument
272 OnWritableState( cricket::TransportChannel* channel) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorWorkerAgent.cpp174 WorkerFrontendChannel* channel = m_idToChannel.get(workerId); local
175 if (channel)
176 channel->connectToWorker();
183 WorkerFrontendChannel* channel = m_idToChannel.get(workerId); local
184 if (channel)
185 channel->disconnectFromWorker();
192 WorkerFrontendChannel* channel = m_idToChannel.get(workerId); local
193 if (channel)
194 channel->proxy()->sendMessageToInspector(message->toJSONString());
257 WorkerFrontendChannel* channel local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DNewWebSocketChannelImplTest.cpp104 channel()->disconnect();
115 WebSocketChannel* channel() function in class:blink::__anon11226::NewWebSocketChannelImplTest
143 EXPECT_TRUE(channel()->connect(KURL(KURL(), "ws://localhost/"), "x"));
176 EXPECT_TRUE(channel()->connect(KURL(KURL(), "ws://localhost/"), "x"));
194 channel()->send("foo");
195 channel()->send("bar");
196 channel()->send("baz");
221 channel()->send("0123456789abcdefg");
222 channel()->send("hijk");
223 channel()
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DReverb.cpp67 vsvesq(response->channel(i)->data(), 1, &channelPower, length);
122 AudioChannel* channel = impulseResponseBuffer->channel(i); local
124 OwnPtr<ReverbConvolver> convolver = adoptPtr(new ReverbConvolver(channel, renderSliceSize, maxFFTSize, convolverRenderPhase, useBackgroundThreads));
153 AudioChannel* destinationChannelL = destinationBus->channel(0);
154 const AudioChannel* sourceChannelL = sourceBus->channel(0);
163 const AudioChannel* sourceChannelR = sourceBus->channel(1);
164 AudioChannel* destinationChannelR = destinationBus->channel(1);
170 AudioChannel* destinationChannel = destinationBus->channel(i);
178 AudioChannel* destinationChannelR = destinationBus->channel(
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFETurbulence.cpp181 for (int channel = 0; channel < 4; ++channel) {
184 gradient = paintingData.gradient[channel][i];
202 for (int channel = 0; channel < 4; ++channel) {
203 paintingData.gradient[channel][s_blockSize + i][0] = paintingData.gradient[channel][i][0];
204 paintingData.gradient[channel][s_blockSiz
335 int channel; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp367 void WTFLog(WTFLogChannel* channel, const char* format, ...) argument
369 if (channel->state != WTFLogChannelOn)
378 void WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) argument
380 if (channel->state != WTFLogChannelOn)
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dmockpeerconnectionobservers.h92 explicit MockDataChannelObserver(webrtc::DataChannelInterface* channel) argument
93 : channel_(channel), received_message_count_(0) {
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dfilemediaengine.cc126 RtpSenderReceiver(MediaChannel* channel,
132 // Called by media channel. Context: media channel thread.
170 MediaChannel* channel,
174 : media_channel_(channel),
169 RtpSenderReceiver( MediaChannel* channel, rtc::StreamInterface* input_file_stream, rtc::StreamInterface* output_file_stream, rtc::Thread* sender_thread) argument
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Ddtlstransportchannel.h43 // A bridge between a packet-oriented/channel-type interface on
48 StreamInterfaceChannel(rtc::Thread* owner, TransportChannel* channel) argument
49 : channel_(channel),
119 // channel -- the TransportChannel we are wrapping
121 TransportChannelImpl* channel);
175 // Once DTLS has established (i.e., this channel is writable), this method
228 TransportChannelImpl* channel() { return channel_; } function in class:cricket::DtlsTransportChannelWrapper
231 void OnReadableState(TransportChannel* channel);
232 void OnWritableState(TransportChannel* channel);
233 void OnReadPacket(TransportChannel* channel, cons
[all...]
H A Dtransportchannelproxy.cc222 void TransportChannelProxy::OnReadableState(TransportChannel* channel) { argument
224 ASSERT(channel == impl_);
229 void TransportChannelProxy::OnWritableState(TransportChannel* channel) { argument
231 ASSERT(channel == impl_);
237 TransportChannel* channel, const char* data, size_t size,
240 ASSERT(channel == impl_);
244 void TransportChannelProxy::OnReadyToSend(TransportChannel* channel) { argument
246 ASSERT(channel == impl_);
250 void TransportChannelProxy::OnRouteChange(TransportChannel* channel, argument
253 ASSERT(channel
236 OnReadPacket( TransportChannel* channel, const char* data, size_t size, const rtc::PacketTime& packet_time, int flags) argument
[all...]
/external/chromium_org/third_party/libxml/src/
H A Derror.c174 xmlGenericErrorFunc channel, void *data ) {
206 channel(data ,"%s\n", content);
218 channel(data ,"%s\n", content);
244 xmlGenericErrorFunc channel, void *data)
259 if (channel == NULL) {
260 channel = xmlGenericError;
288 channel(data, "%s:%d: ", input->filename, input->line);
290 channel(data, "Entity: line %d: ", input->line);
294 channel(data, "%s:%d: ", file, line);
296 channel(dat
173 xmlParserPrintFileContextInternal(xmlParserInputPtr input , xmlGenericErrorFunc channel, void *data ) argument
243 xmlReportError(xmlErrorPtr err, xmlParserCtxtPtr ctxt, const char *str, xmlGenericErrorFunc channel, void *data) argument
441 __xmlRaiseError(xmlStructuredErrorFunc schannel, xmlGenericErrorFunc channel, void *data, void *ctx, void *nod, int domain, int code, xmlErrorLevel level, const char *file, int line, const char *str1, const char *str2, const char *str3, int int1, int col, const char *msg, ...) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.c162 * Swizzle one channel into all other three channels.
167 unsigned channel)
189 shuffles[j + i] = LLVMConstInt(elem_type, j + channel, 0);
213 type, 1 << channel), "");
229 int shift = shifts[channel][i];
431 * Extended swizzle of a single channel of a SoA vector.
165 lp_build_swizzle_scalar_aos(struct lp_build_context *bld, LLVMValueRef a, unsigned channel) argument
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dopt_constant_propagation.cpp160 int channel; local
165 case 0: channel = swiz->mask.x; break;
166 case 1: channel = swiz->mask.y; break;
167 case 2: channel = swiz->mask.z; break;
168 case 3: channel = swiz->mask.w; break;
169 default: assert(!"shouldn't be reached"); channel = 0; break;
172 channel = i;
177 if (entry->var == deref->var && entry->write_mask & (1 << channel)) {
188 if (j == channel)
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dvoice_engine_jni.cc93 int channel = base->CreateChannel(); local
94 if (channel == -1) {
97 CreateTransport(channel);
98 return channel;
101 int DeleteChannel(int channel) { argument
102 if (base->DeleteChannel(channel) != 0) {
105 DeleteTransport(channel);
109 webrtc::test::VoiceChannelTransport* GetTransport(int channel) { argument
110 ChannelTransports::iterator found = channel_transports_.find(channel);
133 void CreateTransport(int channel) { argument
139 DeleteTransport(int channel) argument
[all...]

Completed in 467 milliseconds

<<11121314151617181920>>