Searched refs:istate (Results 1 – 9 of 9) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | nchan.c | 95 if (c->istate > CHAN_INPUT_CLOSED || next > CHAN_INPUT_CLOSED) in chan_set_istate() 96 fatal("chan_set_istate: bad state %d -> %d", c->istate, next); in chan_set_istate() 97 debug2("channel %d: input %s -> %s", c->self, istates[c->istate], in chan_set_istate() 99 c->istate = next; in chan_set_istate() 116 switch (c->istate) { in chan_read_failed() 123 c->self, c->istate); in chan_read_failed() 137 switch (c->istate) { in chan_ibuf_empty() 145 c->self, c->istate); in chan_ibuf_empty() 175 switch (c->istate) { in chan_rcvd_eow() 189 switch (c->istate) { in chan_send_eof2() [all …]
|
H A D | channels.c | 525 c->istate = CHAN_INPUT_OPEN; in channel_new() 752 other->istate = CHAN_INPUT_CLOSED; in channel_free() 1024 c->istate, sshbuf_len(c->input), in channel_format_status() 1264 if (c->istate == CHAN_INPUT_OPEN && in channel_pre_open() 1283 if (c->efd != -1 && !(c->istate == CHAN_INPUT_CLOSED && in channel_pre_open() 1377 if (c->istate == CHAN_INPUT_OPEN) in channel_force_close() 1379 if (c->istate == CHAN_INPUT_WAIT_DRAIN) { in channel_force_close() 1414 c->self, c->istate, c->ostate); in channel_pre_x11_open() 1423 if (c->istate == CHAN_INPUT_OPEN && !c->mux_pause && in channel_pre_mux_client() 1426 if (c->istate == CHAN_INPUT_WAIT_DRAIN) { in channel_pre_mux_client() [all …]
|
H A D | channels.h | 131 u_int istate; /* input from channel (state of receive half) */ member
|
H A D | mux.c | 232 if (sc->istate == CHAN_INPUT_OPEN) in mux_master_control_cleanup_cb()
|
/freebsd/share/examples/scsi_target/ |
H A D | scsi_cmds.c | 109 struct initiator_state *istate; in tcmd_init() local 119 istate = tcmd_get_istate(i); in tcmd_init() 120 bzero(istate, sizeof(*istate)); in tcmd_init() 121 istate->pending_ua = UA_POWER_ON; in tcmd_init() 134 struct initiator_state *istate; in tcmd_handle() local 177 istate = tcmd_get_istate(ctio->init_id); in tcmd_handle() 178 if (istate == NULL) { in tcmd_handle() 184 if (istate->pending_ca == 0 && istate->pending_ua != 0 && in tcmd_handle() 187 0x29, istate->pending_ua == UA_POWER_ON ? 1 : 2); in tcmd_handle() 188 istate->pending_ca = CA_UNIT_ATTN; in tcmd_handle() [all …]
|
/freebsd/contrib/sendmail/src/ |
H A D | collect.c | 340 #define ISTATE istates[istate] 367 int istate; local 414 istate = IS_BOL; 485 if (istate == IS_BOL) 515 !(IS_CR == istate || IS_DOTCR == istate)) 530 switch (istate) 535 istate = IS_DOT; 545 istate = IS_DOTCR; 590 istate = IS_BOL; 611 istate = IS_NORM; [all …]
|
/freebsd/contrib/ofed/infiniband-diags/src/ |
H A D | iblinkinfo.c | 116 int iwidth, ispeed, fdr10, espeed, istate, iphystate, cap_mask; in print_port() local 148 istate = mad_get_field(port->info, 0, IB_PORT_STATE_F); in print_port() 157 if (istate == IB_LINK_DOWN in print_port() 165 if (istate != IB_LINK_DOWN) { in print_port() 180 mad_dump_val(IB_PORT_STATE_F, state, 64, &istate), in print_port() 185 mad_dump_val(IB_PORT_STATE_F, state, 64, &istate), in print_port() 191 if (add_sw_settings && istate != IB_LINK_DOWN) { in print_port() 227 if (istate == IB_LINK_DOWN) in print_port()
|
H A D | ibqueryerrors.c | 191 int iwidth, ispeed, fdr10, espeed, istate, iphystate, cap_mask; in print_port_config() local 214 istate = mad_get_field(port->info, 0, IB_PORT_STATE_F); in print_port_config() 225 if (istate != IB_LINK_DOWN) { in print_port_config() 239 mad_dump_val(IB_PORT_STATE_F, state, 64, &istate), in print_port_config() 243 mad_dump_val(IB_PORT_STATE_F, state, 64, &istate), in print_port_config()
|
/freebsd/sys/dev/liquidio/base/ |
H A D | lio_device.c | 238 int32_t istate = (int32_t)atomic_load_acq_int(state_ptr); in lio_get_state_string() local 240 if (istate > LIO_DEV_STATES || istate < 0) in lio_get_state_string() 243 return (lio_state_str[istate]); in lio_get_state_string()
|