/external/chromium/chrome/common/extensions/docs/server/ |
D | chromeextensionsdocs.py | 20 class Channel(): class 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] 37 Channel.TRUNK = Channel("trunk", "") 38 Channel.DEFAULT = Channel.STABLE 67 if (url[1] is not Channel.TRUNK) and (url[0] != "http://src.chromium.org/favicon.ico"): 109 channel = Channel.DEFAULT 110 if(Channel.DEFAULT == Channel.TRUNK): [all …]
|
/external/openssh/ |
D | channels.h | 60 struct Channel; 61 typedef struct Channel Channel; typedef 65 typedef int channel_infilter_fn(struct Channel *, char *, int); 67 typedef u_char *channel_outfilter_fn(struct Channel *, u_char **, u_int *); 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 202 Channel *channel_by_id(int); 203 Channel *channel_lookup(int); [all …]
|
D | nchan.c | 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) in chan_set_istate() 100 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() 114 chan_rcvd_oclose1(Channel *c) in chan_rcvd_oclose1() [all …]
|
D | channels.c | 87 static Channel **channels = NULL; 167 static void port_open_helper(Channel *c, char *rtype); 175 Channel * 178 Channel *c; in channel_by_id() 196 Channel * 199 Channel *c; in channel_lookup() 224 channel_register_fds(Channel *c, int rfd, int wfd, int efd, in channel_register_fds() 264 Channel * 270 Channel *c; in channel_new() 275 channels = xcalloc(channels_alloc, sizeof(Channel *)); in channel_new() [all …]
|
D | clientloop.h | 53 int client_simple_escape_filter(Channel *, char *, int); 76 void mux_exit_message(Channel *, int); 77 void mux_tty_alloc_failed(Channel *);
|
D | mux.c | 134 static Channel *mux_listener_channel = NULL; 165 static int process_mux_master_hello(u_int, Channel *, Buffer *, Buffer *); 166 static int process_mux_new_session(u_int, Channel *, Buffer *, Buffer *); 167 static int process_mux_alive_check(u_int, Channel *, Buffer *, Buffer *); 168 static int process_mux_terminate(u_int, Channel *, Buffer *, Buffer *); 169 static int process_mux_open_fwd(u_int, Channel *, Buffer *, Buffer *); 170 static int process_mux_close_fwd(u_int, Channel *, Buffer *, Buffer *); 171 static int process_mux_stdio_fwd(u_int, Channel *, Buffer *, Buffer *); 172 static int process_mux_stop_listening(u_int, Channel *, Buffer *, Buffer *); 176 int (*handler)(u_int, Channel *, Buffer *, Buffer *); [all …]
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/ |
D | ChannelManager.java | 47 private final List<Channel> channels = new Vector<Channel>(); 65 private Channel getChannel(int id) in getChannel() 69 for (Channel c : channels) in getChannel() 82 for (Channel c : channels) in removeChannel() 93 private int addChannel(Channel c) in addChannel() 102 private void waitUntilChannelOpen(Channel c) throws IOException in waitUntilChannelOpen() 108 while (c.state == Channel.STATE_OPENING) in waitUntilChannelOpen() 120 if (c.state != Channel.STATE_OPEN) in waitUntilChannelOpen() 180 private void waitForChannelSuccessOrFailure(Channel c) throws IOException in waitForChannelSuccessOrFailure() 190 if (c.state != Channel.STATE_OPEN) in waitForChannelSuccessOrFailure() [all …]
|
D | StreamForwarder.java | 25 byte[] buffer = new byte[Channel.CHANNEL_BUFFER_SIZE]; 26 Channel c; 31 …StreamForwarder(Channel c, StreamForwarder sibling, Socket s, InputStream is, OutputStream os, Str… in StreamForwarder()
|
/external/dropbear/ |
D | common-channel.c | 40 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 * channel); [all …]
|
D | channel.h | 60 struct Channel { struct 97 int (*inithandler)(struct Channel*); argument 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 *channel, int fd,
|
D | cli-chansession.c | 37 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) { in cli_chansessreq() 84 static void cli_closechansess(struct Channel *UNUSED(channel)) { in cli_closechansess() 95 static void start_channel_request(struct Channel *channel, in start_channel_request() 267 struct Channel *channel = NULL; in cli_chansess_winchange() [all …]
|
D | svr-chansession.c | 43 static int sessioncommand(struct Channel *channel, struct ChanSess *chansess, 47 static int noptycommand(struct Channel *channel, struct ChanSess *chansess); 48 static int ptycommand(struct Channel *channel, struct ChanSess *chansess); 53 static void closechansess(struct Channel *channel); 54 static int newchansess(struct Channel *channel); 55 static void chansessionrequest(struct Channel *channel); 57 static void send_exitsignalstatus(struct Channel *channel); 58 static void send_msg_chansess_exitstatus(struct Channel * channel, 60 static void send_msg_chansess_exitsignal(struct Channel * channel, 68 static int sesscheckclose(struct Channel *channel) { in sesscheckclose() [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | ChannelSystem.java | 24 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/tcpdump/tests/ |
D | lmp.new | 2 LMPv1, msg-type: Begin Verify, Flags: [Control Channel Down], length: 56 18 LMPv1, msg-type: Hello, Flags: [Control Channel Down], length: 28 19 Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 20 Control Channel ID: 1 (0x00000001) 25 LMPv1, msg-type: Config NACK, Flags: [Control Channel Down], length: 56 26 Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 27 Control Channel ID: 1 (0x00000001) 30 Control Channel ID Object (1), Class-Type: Remote (2) Flags: [non-negotiable], length: 8 31 Control Channel ID: 2 (0x00000002) 40 LMPv1, msg-type: Config ACK, Flags: [Control Channel Down], length: 48 [all …]
|
D | lmp.out | 2 LMPv1, msg-type: Begin Verify, Flags: [Control Channel Down], length: 56 18 LMPv1, msg-type: Hello, Flags: [Control Channel Down], length: 28 19 Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 20 Control Channel ID: 1 (0x00000001) 25 LMPv1, msg-type: Config NACK, Flags: [Control Channel Down], length: 56 26 Control Channel ID Object (1), Class-Type: Local (1) Flags: [non-negotiable], length: 8 27 Control Channel ID: 1 (0x00000001) 30 Control Channel ID Object (1), Class-Type: Remote (2) Flags: [non-negotiable], length: 8 31 Control Channel ID: 2 (0x00000002) 40 LMPv1, msg-type: Config ACK, Flags: [Control Channel Down], length: 48 [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | CommonTokenStream.cs | 65 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/openssh/openbsd-compat/ |
D | port-tun.h | 20 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/browser/importer/ |
D | firefox_importer_unittest_utils_mac.cc | 33 const IPC::Channel& channel, base::ProcessHandle* handle) { in LaunchNSSDecrypterChildProcess() 67 class FFDecryptorServerChannelListener : public IPC::Channel::Listener { 130 channel_.reset(new IPC::Channel(kTestChannelID, in Setup() 131 IPC::Channel::MODE_SERVER, in Setup() 212 class FFDecryptorClientChannelListener : public IPC::Channel::Listener { 260 IPC::Channel channel(kTestChannelID, IPC::Channel::MODE_CLIENT, &listener); in MULTIPROCESS_TEST_MAIN()
|
D | firefox_importer_unittest_utils.h | 16 class Channel; variable 53 scoped_ptr<IPC::Channel> channel_;
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_exr.h | 80 const Channel *m_red; 81 const Channel *m_green; 82 const Channel *m_blue;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | CommonTokenStream.cs | 70 public int Channel property in Antlr.Runtime.CommonTokenStream 150 while (_tokens[i].Channel != _channel) in SkipOffTokenChannels() 161 while (i >= 0 && ((IToken)_tokens[i]).Channel != _channel) in SkipOffTokenChannelsReverse()
|
/external/chromium/chrome/browser/ |
D | gpu_process_host_ui_shim.h | 53 : public IPC::Channel::Listener, 54 public IPC::Channel::Sender, 123 IPC::Channel::Sender* ui_thread_sender_;
|
/external/chromium/chrome/browser/sync/syncable/ |
D | directory_manager.h | 49 typedef EventChannel<DirectoryManagerEvent> Channel; typedef 74 Channel* channel() const { return channel_; } in channel() 102 Channel* const channel_;
|
/external/chromium/chrome/common/deprecated/ |
D | event_sys_unittest.cc | 39 typedef EventChannel<TestEventTraits> Channel; typedef in __anondafb35020111::Pair 42 event_channel_ = new Channel(shutdown); in Pair() 60 Channel* event_channel() const { return event_channel_; } in event_channel() 66 Channel* event_channel_; 77 void Hookup(const std::string name, Pair::Channel* channel) { in Hookup()
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
D | LocalStreamForwarder.java | 12 import ch.ethz.ssh2.channel.Channel; 27 private Channel cn;
|