Home
last modified time | relevance | path

Searched refs:Channel (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/external/chromium_org/ipc/
Dipc_channel_common.cc10 scoped_ptr<Channel> Channel::CreateClient( in CreateClient()
12 return Channel::Create(channel_handle, Channel::MODE_CLIENT, listener); in CreateClient()
16 scoped_ptr<Channel> Channel::CreateNamedServer( in CreateNamedServer()
18 return Channel::Create(channel_handle, Channel::MODE_NAMED_SERVER, listener); in CreateNamedServer()
22 scoped_ptr<Channel> Channel::CreateNamedClient( in CreateNamedClient()
24 return Channel::Create(channel_handle, Channel::MODE_NAMED_CLIENT, listener); in CreateNamedClient()
29 scoped_ptr<Channel> Channel::CreateOpenNamedServer( in CreateOpenNamedServer()
31 return Channel::Create(channel_handle, in CreateOpenNamedServer()
32 Channel::MODE_OPEN_NAMED_SERVER, in CreateOpenNamedServer()
38 scoped_ptr<Channel> Channel::CreateServer( in CreateServer()
[all …]
Dipc_channel_posix_unittest.cc106 IPC::Channel::Mode mode);
147 IPC::Channel::Mode mode) { in SetUpSocket()
162 if (mode == IPC::Channel::MODE_NAMED_SERVER) { in SetUpSocket()
177 } else if (mode == IPC::Channel::MODE_NAMED_CLIENT) { in SetUpSocket()
205 SetUpSocket(&handle, IPC::Channel::MODE_NAMED_SERVER); in TEST_F()
208 new IPC::ChannelPosix(handle, IPC::Channel::MODE_NAMED_SERVER, NULL)); in TEST_F()
226 handle, IPC::Channel::MODE_SERVER, NULL)); in TEST_F()
235 socket_name, IPC::Channel::MODE_SERVER, NULL)); in TEST_F()
248 in_handle, IPC::Channel::MODE_SERVER, &in_listener)); in TEST_F()
253 out_handle, IPC::Channel::MODE_CLIENT, &out_listener)); in TEST_F()
[all …]
Dipc_channel.h41 class IPC_EXPORT Channel : public Sender {
120 static scoped_ptr<Channel> Create(
123 static scoped_ptr<Channel> CreateClient(
131 static scoped_ptr<Channel> CreateNamedServer(
133 static scoped_ptr<Channel> CreateNamedClient(
139 static scoped_ptr<Channel> CreateOpenNamedServer(
142 static scoped_ptr<Channel> CreateServer(
146 virtual ~Channel();
Dipc_channel_factory.cc14 Channel::Mode mode) in PlatformChannelFactory()
22 virtual scoped_ptr<Channel> BuildChannel( in BuildChannel()
24 return Channel::Create(handle_, mode_, listener); in BuildChannel()
29 Channel::Mode mode_;
38 const ChannelHandle& handle, Channel::Mode mode) { in Create()
Dipc_sync_channel_unittest.cc37 Worker(Channel::Mode mode, const std::string& thread_name) in Worker()
49 Worker(const std::string& channel_name, Channel::Mode mode) in Worker()
117 Channel::Mode mode() { return mode_; } in mode()
223 Channel::Mode mode_;
243 if (workers[i]->mode() & Channel::MODE_SERVER_FLAG) { in RunTest()
251 if (workers[i]->mode() & Channel::MODE_CLIENT_FLAG) in RunTest()
275 : Worker(Channel::MODE_SERVER, "simpler_server"), in SimpleServer()
287 SimpleClient() : Worker(Channel::MODE_CLIENT, "simple_client") { } in SimpleClient()
316 : Worker(Channel::MODE_SERVER, "simpler_server"), in TwoStepServer()
339 : Worker(Channel::MODE_CLIENT, "simple_client"), in TwoStepClient()
[all …]
Dipc_channel_reader.cc24 ReadState read_state = ReadData(input_buf_, Channel::kReadBufferSize, in ProcessIncomingMessages()
43 m.type() >= Channel::CLOSE_FD_MESSAGE_TYPE && in IsInternalMessage()
44 m.type() <= Channel::HELLO_MESSAGE_TYPE; in IsInternalMessage()
49 m.type() == Channel::HELLO_MESSAGE_TYPE; in IsHelloMessage()
63 Channel::kMaximumMessageSize) { in DispatchInputData()
/external/replicaisland/src/com/replica/replicaisland/
DChannelSystem.java24 private FixedSizeArray<Channel> mChannels;
25 private Channel mSearchDummy;
30 mChannels = new FixedSizeArray<Channel>(CHANNEL_COUNT); in ChannelSystem()
32 mSearchDummy = new Channel(); in ChannelSystem()
35 mChannels.add(new Channel()); in ChannelSystem()
51 public Channel registerChannel(String name) { in registerChannel()
52 Channel result = null; in registerChannel()
72 public class Channel {
86 private final static class ChannelComparator implements Comparator<Channel> {
87 public int compare(final Channel object1, final Channel object2) {
/external/chromium_org/third_party/webrtc/video_engine/
Dvie_rtp_rtcp_impl.cc116 ViEChannel* vie_channel = cs.Channel(video_channel); in SetLocalSSRC()
136 ViEChannel* ptrViEChannel = cs.Channel(videoChannel); in SetRemoteSSRCType()
151 ViEChannel* vie_channel = cs.Channel(video_channel); in GetLocalSSRC()
167 ViEChannel* vie_channel = cs.Channel(video_channel); in GetRemoteSSRC()
182 ViEChannel* vie_channel = cs.Channel(video_channel); in GetRemoteCSRCs()
199 ViEChannel* vie_channel = cs.Channel(video_channel); in SetRtxSendPayloadType()
216 ViEChannel* vie_channel = cs.Channel(video_channel); in SetPadWithRedundantPayloads()
230 ViEChannel* vie_channel = cs.Channel(video_channel); in SetRtxReceivePayloadType()
242 ViEChannel* vie_channel = cs.Channel(video_channel); in SetStartSequenceNumber()
263 ViEChannel* vie_channel = cs.Channel(video_channel); in SetRtpStateForSsrc()
[all …]
Dvie_base_impl.cc80 ViEChannel* vie_channel = cs.Channel(video_channel); in RegisterCpuOveruseObserver()
104 ViEChannel* vie_channel = cs.Channel(video_channel); in SetCpuOveruseOptions()
127 ViEChannel* vie_channel = cs.Channel(video_channel); in GetCpuOveruseMetrics()
150 ViEChannel* vie_channel = cs.Channel(channel); in RegisterSendSideDelayObserver()
184 ViEChannel* vie_channel = cs.Channel(video_channel); in DeleteChannel()
214 if (!cs.Channel(video_channel)) { in ConnectAudioChannel()
230 if (!cs.Channel(video_channel)) { in DisconnectAudioChannel()
246 ViEChannel* vie_channel = cs.Channel(video_channel); in StartSend()
281 ViEChannel* vie_channel = cs.Channel(video_channel); in StopSend()
304 ViEChannel* vie_channel = cs.Channel(video_channel); in StartReceive()
[all …]
/external/chromium_org/third_party/webrtc/voice_engine/
Dchannel.cc94 explicit VoEBitrateObserver(Channel* owner) in VoEBitrateObserver()
107 Channel* owner_;
111 Channel::SendData(FrameType frameType, in SendData()
158 Channel::InFrameType(int16_t frameType) in InFrameType()
170 Channel::OnRxVadDetected(int vadDecision) in OnRxVadDetected()
185 Channel::SendPacket(int channel, const void *data, int len) in SendPacket()
229 Channel::SendRTCPPacket(int channel, const void *data, int len) in SendRTCPPacket()
274 Channel::OnPlayTelephoneEvent(int32_t id, in OnPlayTelephoneEvent()
298 Channel::OnIncomingSSRCChanged(int32_t id, uint32_t ssrc) in OnIncomingSSRCChanged()
308 void Channel::OnIncomingCSRCChanged(int32_t id, in OnIncomingCSRCChanged()
[all …]
Dchannel_manager.h28 class Channel; variable
48 explicit ChannelOwner(Channel* channel);
55 Channel* channel() { return channel_ref_->channel.get(); } in channel()
62 ChannelRef(Channel* channel);
63 const scoped_ptr<Channel> channel;
83 Channel* GetChannel();
Dvoe_rtp_rtcp_impl.cc63 voe::Channel* channelPtr = ch.channel(); in SetLocalSSRC()
83 voe::Channel* channelPtr = ch.channel(); in GetLocalSSRC()
103 voe::Channel* channelPtr = ch.channel(); in GetRemoteSSRC()
137 voe::Channel* channelPtr = ch.channel(); in SetSendAudioLevelIndicationStatus()
168 voe::Channel* channel_ptr = ch.channel(); in SetReceiveAudioLevelIndicationStatus()
197 voe::Channel* channelPtr = ch.channel(); in SetSendAbsoluteSenderTimeStatus()
226 voe::Channel* channelPtr = ch.channel(); in SetReceiveAbsoluteSenderTimeStatus()
245 voe::Channel* channelPtr = ch.channel(); in SetRTCPStatus()
265 voe::Channel* channelPtr = ch.channel(); in GetRTCPStatus()
285 voe::Channel* channelPtr = ch.channel(); in SetRTCP_CNAME()
[all …]
/external/chromium_org/mojo/system/
Dchannel.cc21 static_assert(Channel::kBootstrapEndpointId !=
26 Channel::kBootstrapEndpointId;
28 Channel::Channel(embedder::PlatformSupport* platform_support) in Channel() function in mojo::system::Channel
35 bool Channel::Init(scoped_ptr<RawChannel> raw_channel) { in Init()
53 void Channel::Shutdown() { in Shutdown()
90 void Channel::WillShutdownSoon() { in WillShutdownSoon()
99 MessageInTransit::EndpointId Channel::AttachEndpoint( in AttachEndpoint()
124 bool Channel::RunMessagePipeEndpoint(MessageInTransit::EndpointId local_id, in RunMessagePipeEndpoint()
156 void Channel::RunRemoteMessagePipeEndpoint( in RunRemoteMessagePipeEndpoint()
179 bool Channel::WriteMessage(scoped_ptr<MessageInTransit> message) { in WriteMessage()
[all …]
Dchannel.h50 class MOJO_SYSTEM_IMPL_EXPORT Channel
51 : public base::RefCountedThreadSafe<Channel>,
59 explicit Channel(embedder::PlatformSupport* platform_support);
129 friend class base::RefCountedThreadSafe<Channel>;
130 virtual ~Channel();
188 DISALLOW_COPY_AND_ASSIGN(Channel);
Dchannel_unittest.cc46 channel_ = new Channel(&platform_support_); in CreateChannelOnIOThread()
69 Channel* channel() { return channel_.get(); } in channel()
70 scoped_refptr<Channel>* mutable_channel() { return &channel_; } in mutable_channel()
86 scoped_refptr<Channel> channel_;
203 EXPECT_EQ(Channel::kBootstrapEndpointId, local_id); in TEST_F()
214 Channel::kBootstrapEndpointId)); in TEST_F()
243 EXPECT_EQ(Channel::kBootstrapEndpointId, local_id); in TEST_F()
251 Channel::kBootstrapEndpointId)); in TEST_F()
296 EXPECT_EQ(Channel::kBootstrapEndpointId, local_id); in TEST_F()
299 Channel::kBootstrapEndpointId)); in TEST_F()
/external/chromium_org/chrome/browser/resources/gaia_auth/
Dchannel.js8 function Channel() { class
12 Channel.INTERNAL_REQUEST_MESSAGE = 'internal-request-message';
15 Channel.INTERNAL_REPLY_MESSAGE = 'internal-reply-message';
17 Channel.prototype = {
70 name: Channel.INTERNAL_REQUEST_MESSAGE,
94 if (name == Channel.INTERNAL_REQUEST_MESSAGE) {
98 name: Channel.INTERNAL_REPLY_MESSAGE,
102 } else if (name == Channel.INTERNAL_REPLY_MESSAGE) {
/external/chromium_org/chrome/common/extensions/features/
Dfeature_channel.cc11 const VersionInfo::Channel kDefaultChannel = VersionInfo::CHANNEL_STABLE;
12 VersionInfo::Channel g_current_channel = kDefaultChannel;
18 VersionInfo::Channel GetCurrentChannel() { in GetCurrentChannel()
22 void SetCurrentChannel(VersionInfo::Channel channel) { in SetCurrentChannel()
26 VersionInfo::Channel GetDefaultChannel() { in GetDefaultChannel()
Dfeature_channel.h13 chrome::VersionInfo::Channel GetCurrentChannel();
18 void SetCurrentChannel(chrome::VersionInfo::Channel channel);
21 chrome::VersionInfo::Channel GetDefaultChannel();
26 explicit ScopedCurrentChannel(chrome::VersionInfo::Channel channel) in ScopedCurrentChannel()
37 chrome::VersionInfo::Channel original_channel_;
/external/tcpdump/tests/
Dlmp-v.out21 Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8
22 Control Channel ID: 1 (0x00000001)
28 Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8
29 Control Channel ID: 1 (0x00000001)
32 Control Channel ID Object (1), Class-Type: Remote (2) Flags: [non-negotiable], length: 8
33 Control Channel ID: 2 (0x00000002)
44 Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8
45 Control Channel ID: 1 (0x00000001)
48 Control Channel ID Object (1), Class-Type: Remote (2) Flags: [non-negotiable], length: 8
49 Control Channel ID: 2 (0x00000002)
[all …]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
DChannel.cc21 int32_t Channel::SendData(const FrameType frameType, const uint8_t payloadType, in SendData()
124 void Channel::CalcStatistics(WebRtcRTPHeader& rtpInfo, uint16_t payloadSize) { in CalcStatistics()
210 Channel::Channel(int16_t chID) in Channel() function in webrtc::Channel
250 Channel::~Channel() { in ~Channel()
254 void Channel::RegisterReceiverACM(AudioCodingModule* acm) { in RegisterReceiverACM()
259 void Channel::ResetStats() { in ResetStats()
280 int16_t Channel::Stats(CodecInst& codecInst, in Stats()
312 void Channel::Stats(uint32_t* numPackets) { in Stats()
332 void Channel::Stats(uint8_t* payloadType, uint32_t* payloadLenByte) { in Stats()
356 void Channel::PrintStats(CodecInst& codecInst) { in PrintStats()
[all …]
DTwoWayCommunication.h40 Channel* _channel_A2B;
41 Channel* _channel_B2A;
43 Channel* _channelRef_A2B;
44 Channel* _channelRef_B2A;
/external/chromium_org/content/renderer/
Drender_thread_impl_browsertest.cc56 std::string channel_id = IPC::Channel::GenerateVerifiedChannelID( in TEST_F()
59 scoped_ptr<IPC::Channel> channel( in TEST_F()
60 IPC::Channel::CreateServer(channel_id, &dummy_listener)); in TEST_F()
96 IPC::Channel::GenerateVerifiedChannelID(std::string()); in TEST_F()
98 scoped_ptr<IPC::Channel> channel( in TEST_F()
99 IPC::Channel::CreateServer(channel_id, &dummy_listener)); in TEST_F()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DCommonTokenStream.cs65 public int Channel { property in Antlr.Runtime.CommonTokenStream
88 while (_tokens[_p].Channel != _channel) { in Consume()
138 while (_tokens[i].Channel != _channel) { in SkipOffTokenChannels()
147 while (i >= 0 && ((IToken)_tokens[i]).Channel != _channel) { in SkipOffTokenChannelsReverse()
158 while (_tokens[i].Channel != _channel) { in Setup()
/external/chromium_org/ipc/mojo/
Dipc_mojo_bootstrap.cc152 Channel::Mode mode, in Create()
154 CHECK(mode == Channel::MODE_CLIENT || mode == Channel::MODE_SERVER); in Create()
156 mode == Channel::MODE_CLIENT in Create()
159 scoped_ptr<Channel> bootstrap_channel = in Create()
160 Channel::Create(handle, mode, self.get()); in Create()
171 void MojoBootstrap::Init(scoped_ptr<Channel> channel, Delegate* delegate) { in Init()
/external/chromium_org/content/renderer/pepper/
Dpepper_in_process_router.h80 class Channel; variable
81 scoped_ptr<Channel> browser_channel_;
84 scoped_ptr<Channel> host_to_plugin_router_;
87 scoped_ptr<Channel> plugin_to_host_router_;

12345678910>>...15