Searched refs:Channel (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/features/
H A Dfeature_channel.cc11 const VersionInfo::Channel kDefaultChannel = VersionInfo::CHANNEL_STABLE;
12 VersionInfo::Channel g_current_channel = kDefaultChannel;
18 VersionInfo::Channel GetCurrentChannel() {
22 void SetCurrentChannel(VersionInfo::Channel channel) {
26 VersionInfo::Channel GetDefaultChannel() {
H A 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)
37 chrome::VersionInfo::Channel original_channel_;
/external/openssh/openbsd-compat/
H A Dport-tun.h20 struct Channel;
29 int sys_tun_infilter(struct Channel *, char *, int);
30 u_char *sys_tun_outfilter(struct Channel *, u_char **, u_int *);
/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/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...]
H A Dcli-channel.c36 struct Channel *channel;
/external/openssh/
H A Dchannels.h60 struct Channel;
61 typedef struct Channel Channel; typedef in typeref:struct:Channel
65 typedef int channel_infilter_fn(struct Channel *, char *, int);
67 typedef u_char *channel_outfilter_fn(struct Channel *, u_char **, u_int *);
69 /* Channel success/failure callbacks */
70 typedef void channel_confirm_cb(int, struct Channel *, void *);
71 typedef void channel_confirm_abandon_cb(struct Channel *, void *);
88 typedef int mux_callback_fn(struct Channel *);
90 struct Channel { struct
[all...]
H A Dclientloop.h53 int client_simple_escape_filter(Channel *, char *, int);
59 /* Channel request confirmation callbacks */
76 void mux_exit_message(Channel *, int);
77 void mux_tty_alloc_failed(Channel *);
H A Dnchan.c45 * SSH Protocol 1.5 aka New Channel Protocol
77 static void chan_send_ieof1(Channel *);
78 static void chan_send_oclose1(Channel *);
79 static void chan_send_close2(Channel *);
80 static void chan_send_eof2(Channel *);
81 static void chan_send_eow2(Channel *);
84 static void chan_shutdown_write(Channel *);
85 static void chan_shutdown_read(Channel *);
91 chan_set_istate(Channel *c, u_int next)
100 chan_set_ostate(Channel *
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIToken.cs59 int Channel { property in interface:Antlr.Runtime.IToken
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) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIToken.cs65 int Channel property in interface:Antlr.Runtime.IToken
/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/chromium_org/content/renderer/pepper/
H A Dpepper_in_process_router.h80 class Channel;
81 scoped_ptr<Channel> browser_channel_;
84 scoped_ptr<Channel> host_to_plugin_router_;
87 scoped_ptr<Channel> plugin_to_host_router_;
/external/chromium_org/chrome/common/
H A Dchrome_version_info_chromeos.cc9 static VersionInfo::Channel chromeos_channel = VersionInfo::CHANNEL_UNKNOWN;
31 VersionInfo::Channel VersionInfo::GetChannel() {
H A Dchrome_version_info.h22 enum Channel { enum in class:chrome::VersionInfo
75 static Channel GetChannel();
/external/chromium_org/ipc/
H A Dipc_channel_posix_unittest.cc100 IPC::Channel::Mode mode);
141 IPC::Channel::Mode mode) {
156 if (mode == IPC::Channel::MODE_NAMED_SERVER) {
171 } else if (mode == IPC::Channel::MODE_NAMED_CLIENT) {
199 SetUpSocket(&handle, IPC::Channel::MODE_NAMED_SERVER);
201 IPC::Channel channel(handle, IPC::Channel::MODE_NAMED_SERVER, NULL);
218 IPC::Channel channel(handle, IPC::Channel::MODE_SERVER, NULL);
226 IPC::Channel 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_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...]
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.cc25 std::string Channel::GenerateUniqueRandomChannelID() {
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...]
/external/chromium_org/content/renderer/
H A Drender_thread_impl_browsertest.cc43 std::string channel_id = IPC::Channel::GenerateVerifiedChannelID(
46 IPC::Channel channel(channel_id, IPC::Channel::MODE_SERVER, &dummy_listener);
/external/chromium_org/cloud_print/service/win/
H A Dservice_listener.h18 class Channel;
36 scoped_ptr<IPC::Channel> channel_;
/external/chromium_org/content/common/
H A Dfont_cache_dispatcher_win.h30 virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
38 IPC::Channel* channel_;

Completed in 605 milliseconds

1234567891011>>