Searched defs:Channel (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/chrome/common/
H A Dchrome_version_info.h22 enum Channel { enum in class:chrome::VersionInfo
75 static Channel GetChannel();
/external/chromium_org/content/renderer/pepper/
H A Dpepper_in_process_router.cc22 class PepperInProcessRouter::Channel : public IPC::Sender { class in class:content::PepperInProcessRouter
24 Channel(const base::Callback<bool(IPC::Message*)>& callback) function in class:content::PepperInProcessRouter::Channel
27 virtual ~Channel() {}
44 new Channel(base::Bind(&PepperInProcessRouter::SendToBrowser,
47 new Channel(base::Bind(&PepperInProcessRouter::SendToPlugin,
50 new Channel(base::Bind(&PepperInProcessRouter::SendToHost,
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCommonTokenStream.cs65 public int Channel { property in class:Antlr.Runtime.CommonTokenStream
88 while (_tokens[_p].Channel != _channel) {
138 while (_tokens[i].Channel != _channel) {
147 while (i >= 0 && ((IToken)_tokens[i]).Channel != _channel) {
158 while (_tokens[i].Channel != _channel) {
H A DIToken.cs59 int Channel { property in interface:Antlr.Runtime.IToken
H A DClassicToken.cs63 channel = oldToken.Channel;
114 public int Channel { property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs91 channel = oldToken.Channel;
151 public int Channel { property in class:Antlr.Runtime.CommonToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DCommonTokenStream.cs70 public int Channel property in class:Antlr.Runtime.CommonTokenStream
150 while (_tokens[i].Channel != _channel)
161 while (i >= 0 && ((IToken)_tokens[i]).Channel != _channel)
H A DIToken.cs65 int Channel property in interface:Antlr.Runtime.IToken
H A DClassicToken.cs67 channel = oldToken.Channel;
132 public int Channel property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs98 channel = oldToken.Channel;
170 public int Channel property in class:Antlr.Runtime.CommonToken
/external/replicaisland/src/com/replica/replicaisland/
H A DChannelSystem.java24 private FixedSizeArray<Channel> mChannels;
25 private Channel mSearchDummy;
30 mChannels = new FixedSizeArray<Channel>(CHANNEL_COUNT);
32 mSearchDummy = new Channel();
35 mChannels.add(new Channel());
51 public Channel registerChannel(String name) {
52 Channel result = null;
57 assert mRegisteredChannelCount < CHANNEL_COUNT : "Channel pool exhausted!";
72 public class Channel { class in class:ChannelSystem
86 private final static class ChannelComparator implements Comparator<Channel> {
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimToken.cs100 public int Channel property in struct:Antlr.Runtime.SlimToken
/external/chromium/chrome/common/extensions/docs/server/
H A Dchromeextensionsdocs.py20 class Channel(): class in inherits:
33 Channel.DEV = Channel("dev", "2.0-dev")
34 Channel.BETA = Channel("beta", "1.1-beta")
35 Channel.STABLE = Channel("stable", "")
36 Channel.CHANNELS = [Channel.DEV, Channel
[all...]
/external/chromium_org/ipc/
H A Dipc_channel.h41 class IPC_EXPORT Channel : public Sender { class in namespace:IPC
78 // The Hello message is internal to the Channel class. It is sent
96 // Initialize a Channel.
98 // |channel_handle| identifies the communication Channel. For POSIX, if
102 // |mode| specifies whether this Channel is to operate in server mode or
103 // client mode. In server mode, the Channel is responsible for setting up the
104 // IPC object, whereas in client mode, the Channel merely connects to the
109 Channel(const IPC::ChannelHandle &channel_handle, Mode mode,
112 virtual ~Channel();
121 // Close this Channel explicitl
205 Channel() : channel_impl_(0) { } function in class:IPC::Channel
[all...]
H A Dipc_channel_nacl.cc38 contents->data.resize(Channel::kReadBufferSize);
64 class Channel::ChannelImpl::ReaderThreadRunner
93 Channel::ChannelImpl::ReaderThreadRunner::ReaderThreadRunner(
104 void Channel::ChannelImpl::ReaderThreadRunner::Run() {
120 Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle& channel_handle,
137 Channel::ChannelImpl::~ChannelImpl() {
141 bool Channel::ChannelImpl::Connect() {
143 DLOG(INFO) << "Channel creation failed: " << pipe_name_;
147 // Note that Connect is called on the "Channel" thread (i.e., the same thread
148 // where Channel
356 Channel::Channel(const IPC::ChannelHandle& channel_handle, function in class:IPC::Channel
[all...]
H A Dipc_channel_win.cc26 Channel::ChannelImpl::State::State(ChannelImpl* channel) : is_pending(false) {
31 Channel::ChannelImpl::State::~State() {
32 COMPILE_ASSERT(!offsetof(Channel::ChannelImpl::State, context),
36 Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle &channel_handle,
51 Channel::ChannelImpl::~ChannelImpl() {
55 void Channel::ChannelImpl::Close() {
83 bool Channel::ChannelImpl::Send(Message* message) {
107 bool Channel::ChannelImpl::IsNamedServerInitialized(
116 Channel::ChannelImpl::ReadState Channel
466 Channel::Channel(const IPC::ChannelHandle &channel_handle, Mode mode, function in class:IPC::Channel
[all...]
H A Dipc_channel_posix.cc165 int Channel::ChannelImpl::global_pid_ = 0;
168 Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle& channel_handle,
194 Channel::ChannelImpl::~ChannelImpl() {
222 bool Channel::ChannelImpl::CreatePipe(
328 bool Channel::ChannelImpl::Connect() {
330 DLOG(INFO) << "Channel creation failed: " << pipe_name_;
350 bool Channel::ChannelImpl::ProcessOutgoingMessages() {
492 bool Channel::ChannelImpl::Send(Message* message) {
510 int Channel::ChannelImpl::GetClientFileDescriptor() {
515 int Channel
953 Channel::Channel(const IPC::ChannelHandle& channel_handle, Mode mode, function in class:IPC::Channel
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_parse.py52 class Channel: class in inherits:
232 Channel and Format classes above.'''
298 channel = Channel(type, norm, pure, size, names[i])
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_parse.py52 class Channel: class in inherits:
232 Channel and Format classes above.'''
298 channel = Channel(type, norm, pure, size, names[i])
/external/chromium/chrome/browser/sync/syncable/
H A Ddirectory_manager.h49 typedef EventChannel<DirectoryManagerEvent> Channel; typedef in class:syncable::DirectoryManager
74 Channel* channel() const { return channel_; }
102 Channel* const channel_;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs124 public int Channel { property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs142 public int Channel property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.h253 typedef EventChannel<GaiaAuthEvent, base::Lock> Channel; typedef in class:gaia::GaiaAuthenticator
255 inline Channel* channel() const {
281 Channel* channel_;
/external/dropbear/
H A Dchannel.h60 struct Channel { struct
97 int (*inithandler)(struct Channel*);
98 int (*check_close)(struct Channel*);
99 void (*reqhandler)(struct Channel*);
100 void (*closehandler)(struct Channel*);
108 struct Channel* getchannel();
109 struct Channel* newchannel(unsigned int remotechan,
115 void send_msg_channel_failure(struct Channel *channel);
116 void send_msg_channel_success(struct Channel *channel);
123 void common_recv_msg_channel_data(struct Channel *channe
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannel.java8 * Channel.
11 * @version $Id: Channel.java 14 2011-05-27 14:28:21Z dkocher@sudo.ch $
13 public class Channel class
37 * ====> Always keep that in mind when modifying the Channel/ChannelManger
59 // These two fields will only be written while the Channel is in state
63 // Therefore, if you know that the Channel is in state STATE_OPEN, then you
64 // can read these two fields without synchronizing on the Channel. However, make
76 * we cannot keep a lock on the Channel during the send operation (this
149 public Channel(ChannelManager cm) method in class:Channel

Completed in 620 milliseconds

12