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

12345

/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;
H A Dcli-chansession.c37 static void cli_closechansess(struct Channel *channel);
38 static int cli_initchansess(struct Channel *channel);
39 static void cli_chansessreq(struct Channel *channel);
41 static void start_channel_request(struct Channel *channel, unsigned char *type);
43 static void send_chansess_pty_req(struct Channel *channel);
44 static void send_chansess_shell_req(struct Channel *channel);
57 static void cli_chansessreq(struct Channel *channel) {
84 static void cli_closechansess(struct Channel *UNUSED(channel)) {
95 static void start_channel_request(struct Channel *channel,
267 struct Channel *channe
[all...]
H A Dcommon-channel.c40 static void send_msg_channel_open_confirmation(struct Channel* channel,
43 static void writechannel(struct Channel* channel, int fd, circbuffer *cbuf);
44 static void send_msg_channel_window_adjust(struct Channel *channel,
46 static void send_msg_channel_data(struct Channel *channel, int isextended);
47 static void send_msg_channel_eof(struct Channel *channel);
48 static void send_msg_channel_close(struct Channel *channel);
49 static void remove_channel(struct Channel *channel);
50 static void delete_channel(struct Channel *channel);
51 static void check_in_progress(struct Channel *channel);
52 static unsigned int write_pending(struct Channel * channe
[all...]
/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) {
H A DClassicToken.cs63 channel = oldToken.Channel;
114 public int Channel { property in class:Antlr.Runtime.ClassicToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIToken.cs65 int Channel property in interface:Antlr.Runtime.IToken
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 DClassicToken.cs67 channel = oldToken.Channel;
132 public int Channel property in class:Antlr.Runtime.ClassicToken
/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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelManager.java32 * ChannelManager. Please read the comments in Channel.java.
47 private final List<Channel> channels = new Vector<Channel>();
65 private Channel getChannel(int id)
69 for (Channel c : channels)
82 for (Channel c : channels)
93 private int addChannel(Channel c)
102 private void waitUntilChannelOpen(Channel c) throws IOException
108 while (c.state == Channel.STATE_OPENING)
120 if (c.state != Channel
[all...]
H A DStreamForwarder.java25 byte[] buffer = new byte[Channel.CHANNEL_BUFFER_SIZE];
26 Channel c;
31 StreamForwarder(Channel c, StreamForwarder sibling, Socket s, InputStream is, OutputStream os, String mode)
/external/chromium/chrome/browser/importer/
H A Dfirefox_importer_unittest_utils.h16 class Channel;
53 scoped_ptr<IPC::Channel> channel_;
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DLocalStreamForwarder.java12 import ch.ethz.ssh2.channel.Channel;
27 private Channel cn;
/external/llvm/lib/Target/R600/
H A DR600RegisterInfo.h47 /// \returns the sub reg enum value for the given \p Channel
49 unsigned getSubRegFromChannel(unsigned Channel) const;
/external/opencv/otherlibs/highgui/
H A Dgrfmt_exr.h80 const Channel *m_red;
81 const Channel *m_green;
82 const Channel *m_blue;
/external/chromium/chrome/browser/
H A Dgpu_process_host_ui_shim.h53 : public IPC::Channel::Listener,
54 public IPC::Channel::Sender,
71 // IPC::Channel::Sender implementation.
74 // IPC::Channel::Listener implementation.
123 IPC::Channel::Sender* ui_thread_sender_;
/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/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimToken.cs100 public int Channel property in struct:Antlr.Runtime.SlimToken

Completed in 566 milliseconds

12345