| /openbsd-src/usr.bin/ssh/ |
| H A D | channels.h | 86 struct Channel; 87 typedef struct Channel Channel; typedef 91 typedef int channel_infilter_fn(struct ssh *, struct Channel *, char *, int); 93 typedef u_char *channel_outfilter_fn(struct ssh *, struct Channel *, 96 /* Channel success/failure callbacks */ 97 typedef void channel_confirm_cb(struct ssh *, int, struct Channel *, void *); 98 typedef void channel_confirm_abandon_cb(struct ssh *, struct Channel *, void *); 115 typedef int mux_callback_fn(struct ssh *, struct Channel *); 124 struct Channel { struct 125 typeChannel global() argument 127 selfChannel global() argument 128 remote_idChannel global() argument 129 have_remote_idChannel global() argument 131 istateChannel global() argument 132 ostateChannel global() argument 133 flagsChannel global() argument 134 rfdChannel global() argument 135 wfdChannel global() argument 136 efdChannel global() argument 137 sockChannel global() argument 138 io_wantChannel global() argument 139 io_readyChannel global() argument 140 pfdsChannel global() argument 141 ctl_chanChannel global() argument 142 isattyChannel global() argument 143 client_ttyChannel global() argument 144 force_drainChannel global() argument 145 notbeforeChannel global() argument 146 delayedChannel global() argument 151 restore_blockChannel global() argument 152 restore_flagsChannel global() argument 153 inputChannel global() argument 155 outputChannel global() argument 157 extendedChannel global() argument 159 pathChannel global() argument 161 listening_portChannel global() argument 162 listening_addrChannel global() argument 163 host_portChannel global() argument 164 remote_nameChannel global() argument 166 remote_windowChannel global() argument 167 remote_maxpacketChannel global() argument 168 local_windowChannel global() argument 169 local_window_exceededChannel global() argument 170 local_window_maxChannel global() argument 171 local_consumedChannel global() argument 172 local_maxpacketChannel global() argument 173 extended_usageChannel global() argument 174 single_connectionChannel global() argument 176 ctypeChannel global() argument 177 xctypeChannel global() argument 180 open_confirmChannel global() argument 181 open_confirm_ctxChannel global() argument 182 detach_userChannel global() argument 183 detach_closeChannel global() argument 184 status_confirmsChannel global() argument 187 input_filterChannel global() argument 188 output_filterChannel global() argument 189 filter_ctxChannel global() argument 190 filter_cleanupChannel global() argument 193 datagramChannel global() argument 197 connect_ctxChannel global() argument 200 mux_rcbChannel global() argument 201 mux_ctxChannel global() argument 202 mux_pauseChannel global() argument 203 mux_downstream_idChannel global() argument 208 lastusedChannel global() argument 210 inactive_deadlineChannel global() argument [all...] |
| H A D | nchan.c | 43 * SSH Protocol 1.5 aka New Channel Protocol 75 static void chan_send_eof2(struct ssh *, Channel *); 76 static void chan_send_eow2(struct ssh *, Channel *); 79 static void chan_shutdown_write(struct ssh *, Channel *); 80 static void chan_shutdown_read(struct ssh *, Channel *); 81 static void chan_shutdown_extended_read(struct ssh *, Channel *); 91 chan_set_istate(Channel *c, u_int next) in chan_set_istate() 101 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() 111 chan_read_failed(struct ssh *ssh, Channel *c) in chan_read_failed() 127 chan_ibuf_empty(struct ssh *ssh, Channel * [all...] |
| H A D | channels.c | 95 typedef void chan_fn(struct ssh *, Channel *c); 112 Channel *downstream; /* Downstream mux*/ 153 Channel **channels; 201 /* Channel timeouts by type */ 210 static void port_open_helper(struct ssh *ssh, Channel *c, char *rtype); 216 static Channel *rdynamic_connect_prepare(struct ssh *, char *, char *); 217 static int rdynamic_connect_finish(struct ssh *, Channel *); 239 Channel * in channel_by_id() 242 Channel *c; in channel_by_id() 256 Channel * in channel_by_remote_id() [all...] |
| H A D | clientloop.h | 55 int client_simple_escape_filter(struct ssh *, Channel *, char *, int); 81 void mux_exit_message(struct ssh *, Channel *, int); 82 void mux_tty_alloc_failed(struct ssh *ssh, Channel *);
|
| H A D | mux.c | 106 static Channel *mux_listener_channel = NULL; 141 Channel *, struct sshbuf *, struct sshbuf *); 143 Channel *, struct sshbuf *, struct sshbuf *); 145 Channel *, struct sshbuf *, struct sshbuf *); 147 Channel *, struct sshbuf *, struct sshbuf *); 149 Channel *, struct sshbuf *, struct sshbuf *); 151 Channel *, struct sshbuf *, struct sshbuf *); 153 Channel *, struct sshbuf *, struct sshbuf *); 155 Channel *, struct sshbuf *, struct sshbuf *); 157 Channel *, struc [all...] |
| H A D | serverloop.c | 386 static Channel * 389 Channel *c = NULL; in server_request_direct_tcpip() 434 static Channel * 437 Channel *c = NULL; in server_request_direct_streamlocal() 477 static Channel * 480 Channel *c = NULL; in server_request_tun() 541 static Channel * 544 Channel *c; in server_request_session() 577 Channel *c = NULL; in server_input_channel_open() 826 Channel * in server_input_channel_req() [all...] |
| H A D | clientloop.c | 806 client_status_confirm(struct ssh *ssh, int type, Channel *c, void *ctx) in client_status_confirm() 870 client_abandon_status_confirm(struct ssh *ssh, Channel *c, void *ctx) in client_abandon_status_confirm() 1162 process_escapes(struct ssh *ssh, Channel *c, in process_escapes() 1411 client_simple_escape_filter(struct ssh *ssh, Channel *c, char *buf, int len) in client_simple_escape_filter() 1678 static Channel * in client_request_forwarded_tcpip() 1682 Channel *c = NULL; in client_request_forwarded_tcpip() 1738 static Channel * in client_request_forwarded_streamlocal() 1742 Channel *c = NULL; in client_request_forwarded_streamlocal() 1760 static Channel * in client_request_x11() 1763 Channel * in client_request_x11() [all...] |
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | LogChannelDWARF.cpp | 27 static Log::Channel g_channel(g_categories, DWARFLog::DebugInfo); 29 template <> Log::Channel &lldb_private::LogChannelFor<DWARFLog>() { in LogChannelFor()
|
| H A D | LogChannelDWARF.h | 33 template <> Log::Channel &LogChannelFor<DWARFLog>();
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
| H A D | Log.h | 146 class Channel { 155 constexpr Channel(llvm::ArrayRef<Log::Category> categories, in Channel() function 177 static void Register(llvm::StringRef name, Channel &channel); 214 Log(Channel &channel) : m_channel(channel) {} in Log() 254 Channel &m_channel; 303 template <typename Cat> Log::Channel &LogChannelFor() = delete;
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/POSIX/ |
| H A D | ProcessPOSIXLog.cpp | 25 static Log::Channel g_channel(g_categories, POSIXLog::Process); 27 template <> Log::Channel &lldb_private::LogChannelFor<POSIXLog>() { in LogChannelFor()
|
| H A D | ProcessPOSIXLog.h | 36 template <> Log::Channel &LogChannelFor<POSIXLog>();
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDPLog.cpp | 32 static Log::Channel g_channel(g_categories, KDPLog::Packets); 34 template <> Log::Channel &lldb_private::LogChannelFor<KDPLog>() { in LogChannelFor()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessWindowsLog.cpp | 24 static Log::Channel g_channel(g_categories, WindowsLog::Process); 26 template <> Log::Channel &lldb_private::LogChannelFor<WindowsLog>() { in LogChannelFor()
|
| H A D | ProcessWindowsLog.h | 36 template <> Log::Channel &LogChannelFor<WindowsLog>();
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemoteLog.cpp | 36 static Log::Channel g_channel(g_categories, GDBRLog::Packets); 38 template <> Log::Channel &lldb_private::LogChannelFor<GDBRLog>() { in LogChannelFor()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | R600RegisterInfo.cpp | 24 unsigned R600RegisterInfo::getSubRegFromChannel(unsigned Channel) { in getSubRegFromChannel() argument 32 assert(Channel < std::size(SubRegFromChannelTable)); in getSubRegFromChannel() 33 return SubRegFromChannelTable[Channel]; in getSubRegFromChannel()
|
| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | LLDBLog.cpp | 68 static Log::Channel g_log_channel(g_categories, 76 template <> Log::Channel &lldb_private::LogChannelFor<LLDBLog>() { in LogChannelFor()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerUtilFuchsia.cpp | 232 ScopedHandle Channel; in CrashHandler() local 235 Self, ZX_EXCEPTION_CHANNEL_DEBUGGER, &Channel.Handle), in CrashHandler() 252 .handle = Channel.Handle, in CrashHandler() 265 ExitOnErr(_zx_channel_read(Channel.Handle, 0, &ExceptionInfo, in CrashHandler()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/rdi-share/ |
| H A D | hostchan.c | 51 static struct Channel { struct 191 struct Channel *ch; in FireCallback() 316 struct Channel *ch = channels + chan; in Adp_OpenDevice() 395 struct Channel *ch; in Adp_ChannelRead() 444 struct Channel *ch; in ChannelWrite()
|
| /openbsd-src/sys/dev/usb/ |
| H A D | if_atureg.h | 309 uByte Channel; member 328 uByte Channel; member 363 uByte Channel; member
|
| /openbsd-src/share/snmp/ |
| H A D | IANAifType-MIB.txt | 458 fibreChannel(56), -- Fibre Channel 478 ibm370parChan(72), -- IBM System 360/370 OEMI Channel 554 dvbRccDownstream (147), -- DVB-RCC Downstream Channel 555 dvbRccUpstream (148), -- DVB-RCC Upstream Channel 595 sonetOverheadChannel (185), -- SONET Overhead Channel 605 opticalChannel (195), -- Optical Channel 615 docsCableUpstreamChannel (205), -- CATV Upstream Channel 629 opticalChannelGroup (219), -- Optical Channel Group 692 docsCableScte55d1FwdOob (283), -- Cable SCTE 55-1 OOB Forward Channel 693 docsCableScte55d1RetOob (284), -- Cable SCTE 55-1 OOB Return Channel [all …]
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | sniffer | 121 >20 belong 122 (RFC 2625 IP over Fibre Channel 168 >20 belong 224 (Fibre Channel FC-2 169 >20 belong 225 (Fibre Channel FC-2 with frame delimiters 226 >20 lelong 122 (RFC 2625 IP over Fibre Channel 273 >20 lelong 224 (Fibre Channel FC-2 274 >20 lelong 225 (Fibre Channel FC-2 with frame delimiters
|
| /openbsd-src/share/misc/ |
| H A D | scsi_modes | 236 {Output Port 0 Channel Selection} t4 239 {Output Port 1 Channel Selection} t4 242 {Output Port 2 Channel Selection} t4 245 {Output Port 3 Channel Selection} t4
|
| /openbsd-src/regress/lib/libssl/interop/botan/ |
| H A D | client.cpp | 112 void set_channel(Botan::TLS::Channel &channel) { in set_channel() 118 Botan::TLS::Channel *m_channel = nullptr;
|