HomeSort by relevance Sort by last modified time
    Searched defs:Channel (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/resources/gaia_auth/
channel.js 6 * Channel to the background script.
8 function Channel() {
12 Channel.INTERNAL_REQUEST_MESSAGE = 'internal-request-message';
15 Channel.INTERNAL_REPLY_MESSAGE = 'internal-reply-message';
17 Channel.prototype = {
31 * Initialize the channel with given port for the background script.
56 * Sends a message to the other side of the channel.
70 name: Channel.INTERNAL_REQUEST_MESSAGE,
94 if (name == Channel.INTERNAL_REQUEST_MESSAGE) {
98 name: Channel.INTERNAL_REPLY_MESSAGE
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
Channel.java 23 * A channel is a conduit to I/O services covering such items as files, sockets,
26 * Channels are open upon creation, and can be closed explicitly. Once a channel
28 * on the closed channel result in a <code>ClosedChannelException</code>.
30 * Particular implementations or sub-interfaces of {@code Channel} dictate
33 public interface Channel extends Closeable {
36 * Returns true if this channel is open.
41 * Closes an open channel. If the channel is already closed then this method
42 * has no effect. If there is a problem with closing the channel then the
46 * If an attempt is made to perform an operation on a closed channel then
    [all...]
  /external/chromium_org/chrome/common/
chrome_version_info.h 22 enum Channel {
60 // build, this modifier is the channel ("canary", "dev", or "beta", but ""
63 // "dev-m", "beta-m", and for a stable channel multi-user installation, "m".
64 // In branded builds, when the channel cannot be determined, "unknown" will
68 // To simply test the channel, use GetChannel().
71 // Returns the channel for the installation. In branded builds, this will be
73 // builds, or in branded builds when the channel cannot be determined, this
75 static Channel GetChannel();
78 // Sets channel before use.
79 static void SetChannel(const std::string& channel);
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_in_process_router.cc 22 class PepperInProcessRouter::Channel : public IPC::Sender {
24 Channel(const base::Callback<bool(IPC::Message*)>& callback)
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/chromium_org/mojo/system/
channel.cc 5 #include "mojo/system/channel.h"
17 COMPILE_ASSERT(Channel::kBootstrapEndpointId !=
22 Channel::kBootstrapEndpointId;
24 Channel::EndpointInfo::EndpointInfo() {
27 Channel::EndpointInfo::EndpointInfo(scoped_refptr<MessagePipe> message_pipe,
33 Channel::EndpointInfo::~EndpointInfo() {
36 Channel::Channel()
40 bool Channel::Init(const PlatformChannelHandle& handle) {
57 void Channel::Shutdown()
    [all...]
channel.h 42 // Note that |MessagePipe| calls into |Channel| and the former's |lock_| must be
43 // acquired before the latter's. When |Channel| wants to call into a
45 // |local_id_to_endpoint_info_map_|) under |Channel::lock_| and then release the
48 // Also, care must be taken with respect to references: While a |Channel| has
50 // may also have references to |Channel|s. These references are set up by
52 // by |Channel| must be removed by calling |DetachMessagePipeEndpoint()| (which
54 // removes its reference to |Channel|).
55 class MOJO_SYSTEM_IMPL_EXPORT Channel
56 : public base::RefCountedThreadSafe<Channel>,
62 Channel();
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 41 * and tokens are prefiltered for a certain channel (the parser will only
42 * see these tokens and cannot change the filter channel number during the
50 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
60 public CommonTokenStream(ITokenSource tokenSource, int channel)
62 this._channel = channel;
65 public int Channel {
82 /** Always leave p on an on-channel token. */
88 while (_tokens[_p].Channel != _channel) {
102 // skip off-channel tokens
122 // skip off-channel token
    [all...]
IToken.cs 59 int Channel {
ClassicToken.cs 49 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
63 channel = oldToken.Channel;
71 public ClassicToken(int type, string text, int channel) {
74 this.channel = channel;
114 public int Channel {
116 return channel;
119 channel = value;
160 if (channel > 0)
    [all...]
CommonToken.cs 43 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) {
74 this.channel = channel;
81 this.channel = TokenChannels.Default;
91 channel = oldToken.Channel;
151 public int Channel {
153 return channel;
156 channel = value
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel)
67 this._channel = channel;
70 public int Channel
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
    [all...]
IToken.cs 65 int Channel
ClassicToken.cs 51 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
67 channel = oldToken.Channel;
76 public ClassicToken( int type, string text, int channel )
80 this.channel = channel;
132 public int Channel
136 return channel;
140 channel = value;
194 if ( channel > 0
    [all...]
CommonToken.cs 45 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop )
79 this.channel = channel;
87 this.channel = TokenChannels.Default;
98 channel = oldToken.Channel;
170 public int Channel
174 return channel;
178 channel = value
    [all...]
  /external/chromium_org/ipc/
ipc_channel_nacl.cc 38 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::Send will be called, and the same thread that should receiv
    [all...]
ipc_channel_win.cc 26 Channel::ChannelImpl::State::State(ChannelImpl* channel) : is_pending(false) {
28 context.handler = channel;
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) {
85 DVLOG(2) << "sending message @" << message << " on channel @" << thi
    [all...]
ipc_channel.h 38 // the channel with the mode set to one of the NAMED modes. NAMED modes are
41 class IPC_EXPORT Channel : public Sender {
82 // The Hello message is sent by the peer when the channel is connected.
97 // size or bigger results in a channel error.
103 // Initialize a Channel.
105 // |channel_handle| identifies the communication Channel. For POSIX, if
106 // the file descriptor in the channel handle is != -1, the channel takes
109 // |mode| specifies whether this Channel is to operate in server mode or
110 // client mode. In server mode, the Channel is responsible for setting up th
    [all...]
ipc_channel_posix.cc 48 // channel ids as the pipe names. Channels on POSIX use sockets as
52 // the fork arranges it such that the initial control channel ends up on the
57 // A POSIX IPC channel can also be set up as a server for a bound UNIX domain
102 // Lookup a given channel id. Return -1 if not found.
112 // Remove the mapping for the given channel id. No error is signaled if the
165 int Channel::ChannelImpl::global_pid_ = 0;
168 Channel::ChannelImpl::ChannelImpl(const IPC::ChannelHandle& channel_handle,
194 Channel::ChannelImpl::~ChannelImpl() {
222 bool Channel::ChannelImpl::CreatePipe(
227 // 1) It's a channel wrapping a pipe that is given to us
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 100 public int Channel
  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 20 class Channel():
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.BETA, Channel.STABLE
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_parse.py 52 class Channel:
53 '''Describe the channel of a color channel.'''
132 for channel in self.channels:
133 size += channel.size
138 for channel in self.channels:
139 if channel.size:
147 for channel in self.channels[1:]:
148 if channel.size and (channel.size != ref_channel.size or channel.size % 8)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 52 class Channel:
53 '''Describe the channel of a color channel.'''
132 for channel in self.channels:
133 size += channel.size
138 for channel in self.channels:
139 if channel.size:
147 for channel in self.channels[1:]:
148 if channel.size and (channel.size != ref_channel.size or channel.size % 8)
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_manager.h 49 typedef EventChannel<DirectoryManagerEvent> Channel;
74 Channel* channel() const { return channel_; } function in class:syncable::DirectoryManager
102 Channel* const channel_;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 52 Socket channel = null; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
70 int channel; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
77 public ProxyToken(int index, int type, int channel,
81 this.channel = channel;
124 public int Channel {
126 return channel;
129 channel = value;
170 if (channel != TokenChannels.Default) {
171 channelStr = ",channel=" + channel
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 55 Socket channel = null; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener
74 int channel; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
82 public ProxyToken( int index, int type, int channel,
87 this.channel = channel;
142 public int Channel
146 return channel;
150 channel = value;
204 if ( channel != TokenChannels.Default )
206 channelStr = ",channel=" + channel
    [all...]

Completed in 1268 milliseconds

1 2 3