| /freebsd-14-stable/contrib/lib9p/pytest/ |
| HD | client.py | 182 def __init__(self, name, tstate): argument 186 self.tstate = tstate 221 self.tstate.logger.log(level, ' ' + msg, *args, **kwargs) 227 ret = self.tstate.ccs() 235 self.tstate.logger.log(logging.DEBUG, 'ENTER: %s', self.name) 240 tstate = self.tstate 261 tstate.failures += 1 262 tstate.exceptions += 1 268 tstate.successes += 1 271 tstate.skips += 1 [all …]
|
| /freebsd-14-stable/sys/kern/ |
| HD | kern_ktr.c | 411 struct tstate { struct 415 static struct tstate tstate; variable 422 tstate.cur = (ktr_idx - 1) % ktr_entries; in DB_SHOW_COMMAND_FLAGS() 423 tstate.first = -1; in DB_SHOW_COMMAND_FLAGS() 444 if (tstate.cur == tstate.first || ktr_buf == NULL) { in db_mach_vtrace() 448 kp = &ktr_buf[tstate.cur]; in db_mach_vtrace() 455 db_printf("%d (%p", tstate.cur, kp->ktr_thread); in db_mach_vtrace() 472 if (tstate.first == -1) in db_mach_vtrace() 473 tstate.first = tstate.cur; in db_mach_vtrace() 475 if (--tstate.cur < 0) in db_mach_vtrace() [all …]
|
| /freebsd-14-stable/sys/net/ |
| HD | slcompress.c | 67 struct cstate *tstate = comp->tstate; in sl_compress_init() local 74 bzero((char *)comp->tstate, sizeof(comp->tstate)); in sl_compress_init() 78 tstate[i].cs_id = i; in sl_compress_init() 79 tstate[i].cs_next = &tstate[i - 1]; in sl_compress_init() 81 tstate[0].cs_next = &tstate[max_state]; in sl_compress_init() 82 tstate[0].cs_id = 0; in sl_compress_init() 83 comp->last_cs = &tstate[0]; in sl_compress_init()
|
| HD | slcompress.h | 146 struct cstate tstate[MAX_STATES]; /* xmit connection states */ member
|
| /freebsd-14-stable/sbin/ipfw/ |
| HD | ipfw2.c | 70 ipfw_obj_ctlv *tstate; /* table state data */ member 418 static uint16_t pack_object(struct tidx *tstate, const char *name, int otype); 419 static uint16_t pack_table(struct tidx *tstate, const char *name); 1306 t = table_search_ctlv(fo->tstate, in print_ip() 1317 t = table_search_ctlv(fo->tstate, in print_ip() 1430 t = table_search_ctlv(fo->tstate, cmd->arg1); in print_mac_lookup() 1705 table_search_ctlv(fo->tstate, in print_instruction() 1714 s = table_search_ctlv(fo->tstate, cmd->arg1); in print_instruction() 1830 object_search_ctlv(fo->tstate, cmd->arg1, in print_instruction() 1840 object_search_ctlv(fo->tstate, cmd->arg1, in print_instruction() [all …]
|
| HD | ipv6.c | 328 fill_ip6(ipfw_insn_ip6 *cmd, char *av, int cblen, struct tidx *tstate) in fill_ip6() argument 350 fill_table(&cmd->o, av, O_IP_DST_LOOKUP, tstate); in fill_ip6() 478 add_srcip6(ipfw_insn *cmd, char *av, int cblen, struct tidx *tstate) in add_srcip6() argument 481 fill_ip6((ipfw_insn_ip6 *)cmd, av, cblen, tstate); in add_srcip6() 500 add_dstip6(ipfw_insn *cmd, char *av, int cblen, struct tidx *tstate) in add_dstip6() argument 503 fill_ip6((ipfw_insn_ip6 *)cmd, av, cblen, tstate); in add_dstip6()
|
| HD | ipfw2.h | 444 struct tidx *tstate); 446 struct tidx *tstate); 456 struct tidx *tstate);
|
| /freebsd-14-stable/usr.sbin/ppp/ |
| HD | slcompress.c | 87 register struct cstate *tstate = comp->tstate; in sl_compress_init() local 91 tstate[i].cs_id = i; in sl_compress_init() 92 tstate[i].cs_next = &tstate[i - 1]; in sl_compress_init() 94 tstate[0].cs_next = &tstate[max_state]; in sl_compress_init() 95 tstate[0].cs_id = 0; in sl_compress_init() 96 comp->last_cs = &tstate[0]; in sl_compress_init()
|
| HD | slcompress.h | 135 struct cstate tstate[MAX_VJ_STATES]; /* xmit connection states */ member
|
| /freebsd-14-stable/sys/dev/aic7xxx/ |
| HD | aic79xx_osm.c | 485 struct ahd_tmode_tstate *tstate; in ahd_action() local 488 status = ahd_find_tmode_devs(ahd, sim, ccb, &tstate, in ahd_action() 494 tstate = NULL; in ahd_action() 527 struct ahd_tmode_tstate *tstate; in ahd_action() local 542 target_id, &tstate); in ahd_action() 615 struct ahd_tmode_tstate *tstate; in ahd_action() local 619 status = ahd_find_tmode_devs(ahd, sim, ccb, &tstate, in ahd_action() 739 struct ahd_tmode_tstate *tstate; in ahd_set_tran_settings() local 753 devinfo.target, &tstate); in ahd_set_tran_settings() 757 discenable = &tstate->discenable; in ahd_set_tran_settings() [all …]
|
| HD | aic7xxx.c | 495 struct ahc_tmode_tstate *tstate; in ahc_handle_seqint() local 512 &tstate); in ahc_handle_seqint() 564 tstate, targ_info, in ahc_handle_seqint() 567 if (tstate->auto_negotiate & devinfo.target_mask) { in ahc_handle_seqint() 1309 struct ahc_tmode_tstate *tstate; in ahc_handle_scsiint() local 1319 &tstate); in ahc_handle_scsiint() 1411 struct ahc_tmode_tstate *tstate; in ahc_force_renegotiation() local 1417 &tstate); in ahc_force_renegotiation() 1418 ahc_update_neg_request(ahc, devinfo, tstate, in ahc_force_renegotiation() 1574 struct ahc_tmode_tstate *tstate; in ahc_alloc_tstate() local [all …]
|
| HD | aic7xxx_osm.c | 467 struct ahc_tmode_tstate *tstate; in ahc_action() local 470 status = ahc_find_tmode_devs(ahc, sim, ccb, &tstate, in ahc_action() 476 tstate = NULL; in ahc_action() 578 struct ahc_tmode_tstate *tstate; in ahc_action() local 582 status = ahc_find_tmode_devs(ahc, sim, ccb, &tstate, in ahc_action() 612 struct ahc_tmode_tstate *tstate; in ahc_action() local 627 devinfo.target, &tstate); in ahc_action() 631 discenable = &tstate->discenable; in ahc_action() 632 tagenable = &tstate->tagenable; in ahc_action() 836 struct ahc_tmode_tstate *tstate; in ahc_get_tran_settings() local [all …]
|
| HD | aic79xx.c | 1058 struct ahd_tmode_tstate *tstate; in ahd_handle_seqint() local 1091 &tstate); in ahd_handle_seqint() 2273 struct ahd_tmode_tstate *tstate; in ahd_handle_nonpkt_busfree() local 2291 devinfo.target, &tstate); in ahd_handle_nonpkt_busfree() 2554 struct ahd_tmode_tstate *tstate; in ahd_force_renegotiation() local 2566 &tstate); in ahd_force_renegotiation() 2567 ahd_update_neg_request(ahd, devinfo, tstate, in ahd_force_renegotiation() 2801 struct ahd_tmode_tstate *tstate; in ahd_alloc_tstate() local 2809 tstate = malloc(sizeof(*tstate), M_DEVBUF, M_NOWAIT); in ahd_alloc_tstate() 2810 if (tstate == NULL) in ahd_alloc_tstate() [all …]
|
| HD | aic7xxx_inline.h | 240 struct ahc_tmode_tstate **tstate); 286 u_int remote_id, struct ahc_tmode_tstate **tstate) in ahc_fetch_transinfo() argument 296 *tstate = ahc->enabled_targets[our_id]; in ahc_fetch_transinfo() 297 return (&(*tstate)->transinfo[remote_id]); in ahc_fetch_transinfo()
|
| HD | aic79xx_inline.h | 429 struct ahd_tmode_tstate **tstate); 502 u_int remote_id, struct ahd_tmode_tstate **tstate) in ahd_fetch_transinfo() argument 512 *tstate = ahd->enabled_targets[our_id]; in ahd_fetch_transinfo() 513 return (&(*tstate)->transinfo[remote_id]); in ahd_fetch_transinfo()
|
| HD | aic7xxx.h | 1339 struct ahc_tmode_tstate **tstate,
|
| HD | aic79xx.h | 1548 struct ahd_tmode_tstate **tstate,
|
| /freebsd-14-stable/sys/netgraph/ |
| HD | ng_vjc.c | 351 index = sl0->last_cs - sl0->tstate; in ng_vjc_rcvmsg() 356 struct cstate *const cs = &sl->tstate[i]; in ng_vjc_rcvmsg() 358 index = sl0->tstate[i].cs_next - sl0->tstate; in ng_vjc_rcvmsg()
|
| /freebsd-14-stable/sys/dev/isp/ |
| HD | isp_freebsd.h | 150 typedef struct tstate { struct 151 SLIST_ENTRY(tstate) next; 191 SLIST_HEAD(tslist, tstate);
|
| HD | isp_freebsd.c | 867 SLIST_REMOVE(&fc->lun_hash[LUN_HASH_FUNC(tptr->ts_lun)], tptr, tstate, next); in destroy_lun_state()
|
| /freebsd-14-stable/usr.sbin/bhyve/ |
| HD | smbiostbl.c | 203 uint8_t tstate; /* thermal state */ member
|
| /freebsd-14-stable/sys/netpfil/ipfw/ |
| HD | ip_fw_sockopt.c | 2928 ipfw_obj_ctlv *ctlv, *rtlv, *tstate; in add_rules() local 2941 tstate = NULL; in add_rules() 2987 tstate = ctlv; in add_rules() 3038 ci->ctlv = tstate; in add_rules()
|
| /freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| HD | SparcRegisterInfo.td | 123 def TSTATE : SparcCtrlReg< 2, "tstate">;
|