Searched refs:te (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-13-stable/usr.sbin/bsnmpd/modules/snmp_bridge/
H A Dbridge_addrs.c177 bridge_addrs_bif_insert(struct tp_entries *headp, struct tp_entry *te, argument
183 bridge_addrs_insert_at(headp, te, f_tpa);
185 temp = bridge_addrs_find_pos(headp, te->sysindex);
188 TAILQ_INSERT_HEAD(headp, te, tp_e);
190 TAILQ_INSERT_AFTER(headp, temp, te, tp_e);
191 *f_tpa = te;
229 bridge_addrs_next(struct tp_entry *te) argument
231 return (TAILQ_NEXT(te, tp_e));
247 bridge_addrs_bif_next(struct tp_entry *te) argument
251 if ((te_next = TAILQ_NEXT(te, tp_
262 bridge_addrs_remove(struct tp_entry *te, struct bridge_if *bif) argument
277 struct tp_entry *te; local
301 struct tp_entry *te; local
319 struct tp_entry *te; local
339 bridge_addrs_index_append(struct asn_oid *oid, uint sub, const struct tp_entry *te) argument
381 static struct tp_entry *te; local
404 struct tp_entry *te; local
458 bridge_addrs_begemot_index_append(struct asn_oid *oid, uint sub, const struct tp_entry *te) argument
551 struct tp_entry *te; local
[all...]
H A Dbridge_sys.c1371 struct tp_entry *te; local
1379 if ((te = bridge_new_addrs(addr_req->ifba_dst, bif)) != NULL)
1380 bridge_addrs_info_ifaddrlist(addr_req, te);
1396 struct tp_entry *te, *te_next; local
1408 if ((te = bridge_addrs_find(addr_req->ifba_dst, bif)) == NULL) {
1411 if ((te = bridge_new_addrs(addr_req->ifba_dst, bif))
1417 bridge_addrs_info_ifaddrlist(addr_req, te);
1418 te-> flags |= BA_FOUND;
1422 for (te = bridge_addrs_bif_first(bif); te !
[all...]
H A Dbridge_snmp.h255 void bridge_addrs_remove(struct tp_entry *te, struct bridge_if *bif);
261 struct tp_entry *bridge_addrs_bif_next(struct tp_entry *te);
/freebsd-13-stable/sys/tests/framework/
H A Dkern_testfrwk.c180 struct kern_test_list *li, *te = NULL; local
204 te = li;
208 if (te == NULL) {
241 struct kern_test_list *li, *te = NULL; local
248 te = malloc(sizeof(struct kern_test_list), M_KTFRWK, M_WAITOK);
249 if (te == NULL) {
258 free(te, M_KTFRWK);
263 te->func = func;
264 strcpy(te->name, name);
265 TAILQ_INSERT_TAIL(&kfrwk.kfrwk_testlist, te, nex
274 struct kern_test_list *li, *te = NULL; local
[all...]
/freebsd-13-stable/contrib/libevent/test/
H A Dbench_cascade.c85 static struct timeval ts, te, tv_timeout; local
124 evutil_gettimeofday(&te, NULL);
125 evutil_timersub(&te, &ts, &te);
136 return (&te);
H A Dbench.c101 static struct timeval ts, te; local
126 evutil_gettimeofday(&te, NULL);
131 evutil_timersub(&te, &ts, &te);
133 return (&te);
/freebsd-13-stable/contrib/ntp/sntp/libevent/test/
H A Dbench_cascade.c85 static struct timeval ts, te, tv_timeout; local
124 evutil_gettimeofday(&te, NULL);
125 evutil_timersub(&te, &ts, &te);
136 return (&te);
H A Dbench.c101 static struct timeval ts, te; local
126 evutil_gettimeofday(&te, NULL);
131 evutil_timersub(&te, &ts, &te);
133 return (&te);
/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_condwait.c53 struct timespec ts, to, te, twmin, twmax; local
80 ATF_REQUIRE_EQ(clock_gettime(clck, &te), 0);
81 timespecsub(&te, &to, &to);
84 (long long)te.tv_sec, te.tv_nsec);
/freebsd-13-stable/sys/dev/cxgbe/tom/
H A Dt4_tom.c502 struct tcb_histent *te; local
506 te = malloc(sizeof(*te), M_CXGBE, M_ZERO | flags);
507 if (te == NULL)
509 mtx_init(&te->te_lock, "TCB entry", NULL, MTX_DEF);
510 callout_init_mtx(&te->te_callout, &te->te_lock, 0);
511 te->te_adapter = sc;
512 te->te_tid = tid;
514 return (te);
518 free_tcb_histent(struct tcb_histent *te) argument
531 struct tcb_histent *te = NULL; local
565 remove_tcb_histent(struct tcb_histent *te) argument
582 struct tcb_histent *te; local
608 release_tcb_histent(struct tcb_histent *te) argument
622 struct tcb_histent *te = arg; local
635 update_tcb_histent(struct tcb_histent *te, const uint64_t *tcb) argument
694 struct tcb_histent *te; local
759 fill_tcp_info_from_history(struct adapter *sc, struct tcb_histent *te, struct tcp_info *ti) argument
798 struct tcb_histent *te; local
[all...]
/freebsd-13-stable/lib/libutil/
H A Dlogin_ok.c134 struct ttyent *te; local
138 te = getttynam(tty); /* Need group name */
139 grp = te ? te->ty_group : NULL;
/freebsd-13-stable/sys/netgraph/
H A Dng_car.c65 int64_t te; /* exceeded/peak token bucket counter */ member in struct:hookinfo
206 priv->upper.te = priv->upper.conf.ebs = NG_CAR_EBS_MIN;
221 priv->lower.te = priv->lower.conf.ebs = NG_CAR_EBS_MIN;
353 hinfo->te = 0;
360 } else if (hinfo->te + (len - hinfo->tc) < hinfo->conf.ebs &&
364 hinfo->te += len - hinfo->tc;
373 hinfo->te = 0;
381 if (hinfo->te - len >= 0 && col <= QOS_COLOR_YELLOW) {
384 hinfo->te -= len;
532 priv->upper.te
[all...]
/freebsd-13-stable/usr.sbin/uhsoctl/
H A Duhsoctl.c202 struct timer_entry *te, *te2; local
204 te = TAILQ_FIRST(&tmrs->head);
205 if (te == NULL)
208 te->timeout -= tmrs->res;
209 while (te->timeout <= 0) {
210 te2 = TAILQ_NEXT(te, next);
211 TAILQ_REMOVE(&tmrs->head, te, next);
212 te->func(te->id, te
224 struct timer_entry *te, *te2, *te3; local
[all...]
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_read_disk_posix.c2094 struct tree_entry *te; local
2096 te = calloc(1, sizeof(*te));
2097 te->next = t->stack;
2098 te->parent = t->current;
2099 if (te->parent)
2100 te->depth = te->parent->depth + 1;
2101 t->stack = te;
2102 archive_string_init(&te
2250 struct tree_entry *te; local
2333 struct tree_entry *te; local
2623 struct tree_entry *te; local
[all...]
/freebsd-13-stable/sys/contrib/dpdk_rte_lpm/
H A Drte_lpm.c114 struct rte_tailq_entry *te;
120 TAILQ_FOREACH(te, lpm_list, next) {
121 l = te->data;
127 if (te == NULL) {
145 //struct rte_tailq_entry *te;
172 TAILQ_FOREACH(te, lpm_list, next) {
173 lpm = te->data;
178 if (te != NULL) {
185 te = rte_zmalloc("LPM_TAILQ_ENTRY", sizeof(*te),
[all...]
H A Drte_lpm6.c249 //struct rte_tailq_entry *te;
322 TAILQ_FOREACH(te, lpm_list, next) {
323 lpm = (struct rte_lpm6 *) te->data;
328 if (te != NULL) {
334 te = rte_zmalloc("LPM6_TAILQ_ENTRY", sizeof(*te), 0);
335 if (te == NULL) {
348 //rte_free(te);
364 //te->data = (void *) lpm;
366 //TAILQ_INSERT_TAIL(lpm_list, te, nex
[all...]
/freebsd-13-stable/sys/netinet/
H A Dtcp_reass.c532 struct tseg_qent *te = NULL; local
1023 te = uma_zalloc(tcp_reass_zone, M_NOWAIT);
1024 if (te == NULL) {
1041 te->tqe_m = m;
1042 te->tqe_flags = th->th_flags;
1043 te->tqe_len = *tlenp;
1044 te->tqe_start = th->th_seq;
1045 te->tqe_last = mlast;
1046 te->tqe_mbuf_cnt = lenofoh;
1047 tp->t_segqmbuflen += te
[all...]
H A Dtcp_ratelimit.c1557 const struct tcp_hwrate_limit_table *te, int *err)
1595 if (te == NULL) {
1626 if (te->rate > FIVE_HUNDRED_MBPS)
1628 if (te->rate == bw) {
1632 te->rate, te->time_between, (uint32_t)0,
1638 if (res > te->time_between) {
1642 delta = res - te->time_between;
1652 te->rate, te
1556 tcp_get_pacing_burst_size(struct tcpcb *tp, uint64_t bw, uint32_t segsiz, int can_use_1mss, const struct tcp_hwrate_limit_table *te, int *err) argument
[all...]
H A Dtcp_ratelimit.h175 const struct tcp_hwrate_limit_table *te, int *err);
/freebsd-13-stable/sys/dev/ath/
H A Dif_ath_tx_edma.c642 struct ath_tx_edma_fifo *te = &sc->sc_txedma[qnum]; local
644 te->m_fifo = malloc(sizeof(struct ath_buf *) * HAL_TXFIFO_DEPTH,
647 if (te->m_fifo == NULL) {
656 te->m_fifo_head = te->m_fifo_tail = te->m_fifo_depth = 0;
664 struct ath_tx_edma_fifo *te = &sc->sc_txedma[qnum]; local
667 free(te->m_fifo, M_ATHDEV);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h262 explicit Trace(Ensemble &te, TraceBlockInfo &tbi) : TE(te), TBI(tbi) {} argument
/freebsd-13-stable/sys/cam/scsi/
H A Dscsi_cd.c2051 struct ioc_read_toc_entry *te = local
2055 u_int32_t starting_track = te->starting_track;
2064 if (te->data_len < sizeof(struct cd_toc_entry)
2065 || (te->data_len % sizeof(struct cd_toc_entry)) != 0
2066 || (te->address_format != CD_MSF_FORMAT
2067 && te->address_format != CD_LBA_FORMAT)) {
2117 if (te->data_len < len) {
2118 len = te->data_len;
2134 error = cdreadtoc(periph, te->address_format,
2152 error = cdreadtoc(periph, te
2182 struct ioc_read_toc_single_entry *te = local
[all...]
/freebsd-13-stable/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c1785 char *tp[9], *te[9]; local
1805 te[toknum] = cp1;
1853 while (cp3 != te[toknum]) {
1879 te[toknum]) {
1929 while (cp3 != te[toknum]) {
/freebsd-13-stable/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmpimport.c482 snmp_import_update_table(enum snmp_tbl_entry te, struct snmp_index_entry *tbl) argument
484 switch (te) {
/freebsd-13-stable/sys/dev/cp/
H A Dcpddk.h197 int te; /* first empty transmit buffer */ member in struct:_cp_chan_t

Completed in 166 milliseconds

12