Searched refs:ti (Results 1 - 25 of 184) sorted by relevance

12345678

/freebsd-current/sys/kern/
H A Dtty_inq.c85 #define TTYINQ_INSERT_TAIL(ti, tib) do { \
86 if (ti->ti_end == 0) { \
88 tib->tib_next = ti->ti_firstblock; \
89 ti->ti_firstblock = tib; \
91 tib->tib_prev = ti->ti_lastblock; \
92 tib->tib_next = ti->ti_lastblock->tib_next; \
93 ti->ti_lastblock->tib_next = tib; \
97 ti->ti_nblocks++; \
100 #define TTYINQ_REMOVE_HEAD(ti) do { \
101 ti
115 ttyinq_setsize(struct ttyinq *ti, struct tty *tp, size_t size) argument
147 ttyinq_free(struct ttyinq *ti) argument
163 ttyinq_read_uio(struct ttyinq *ti, struct tty *tp, struct uio *uio, size_t rlen, size_t flen) argument
287 ttyinq_write(struct ttyinq *ti, const void *buf, size_t nbytes, int quote) argument
335 ttyinq_write_nofrag(struct ttyinq *ti, const void *buf, size_t nbytes, int quote) argument
350 ttyinq_canonicalize(struct ttyinq *ti) argument
362 ttyinq_canonicalize_break(struct ttyinq *ti, const char *breakc) argument
407 ttyinq_findchar(struct ttyinq *ti, const char *breakc, size_t maxlen, char *lastc) argument
433 ttyinq_flush(struct ttyinq *ti) argument
450 ttyinq_peekchar(struct ttyinq *ti, char *c, int *quote) argument
468 ttyinq_unputchar(struct ttyinq *ti) argument
485 ttyinq_reprintpos_set(struct ttyinq *ti) argument
493 ttyinq_reprintpos_reset(struct ttyinq *ti) argument
501 ttyinq_line_iterate(struct ttyinq *ti, ttyinq_line_iterator_t *iterator, void *data, unsigned int offset, struct ttyinq_block *tib) argument
526 ttyinq_line_iterate_from_linestart(struct ttyinq *ti, ttyinq_line_iterator_t *iterator, void *data) argument
535 ttyinq_line_iterate_from_reprintpos(struct ttyinq *ti, ttyinq_line_iterator_t *iterator, void *data) argument
[all...]
/freebsd-current/crypto/openssl/crypto/bf/
H A Dbf_cfb64.c32 BF_LONG ti[2]; local
40 ti[0] = v0;
42 ti[1] = v1;
43 BF_encrypt((BF_LONG *)ti, schedule);
45 t = ti[0];
47 t = ti[1];
60 ti[0] = v0;
62 ti[1] = v1;
63 BF_encrypt((BF_LONG *)ti, schedule);
65 t = ti[
[all...]
H A Dbf_ofb64.c33 BF_LONG ti[2]; local
40 ti[0] = v0;
41 ti[1] = v1;
47 BF_encrypt((BF_LONG *)ti, schedule);
49 t = ti[0];
51 t = ti[1];
59 v0 = ti[0];
60 v1 = ti[1];
65 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-current/crypto/openssl/crypto/des/
H A Dcfb64enc.c31 DES_LONG ti[2]; local
39 ti[0] = v0;
41 ti[1] = v1;
42 DES_encrypt1(ti, schedule, DES_ENCRYPT);
44 v0 = ti[0];
46 v0 = ti[1];
59 ti[0] = v0;
61 ti[1] = v1;
62 DES_encrypt1(ti, schedule, DES_ENCRYPT);
64 v0 = ti[
[all...]
H A Dofb64enc.c32 DES_LONG ti[2]; local
39 ti[0] = v0;
40 ti[1] = v1;
46 DES_encrypt1(ti, schedule, DES_ENCRYPT);
48 t = ti[0];
50 t = ti[1];
58 v0 = ti[0];
59 v1 = ti[1];
64 t = v0 = v1 = ti[0] = ti[
[all...]
H A Dofb64ede.c33 DES_LONG ti[2]; local
40 ti[0] = v0;
41 ti[1] = v1;
47 /* ti[0]=v0; */
48 /* ti[1]=v1; */
49 DES_encrypt3(ti, k1, k2, k3);
50 v0 = ti[0];
51 v1 = ti[1];
66 v0 = v1 = ti[0] = ti[
[all...]
H A Dofb_enc.c32 DES_LONG ti[2]; local
54 ti[0] = v0;
55 ti[1] = v1;
57 ti[0] = v0;
58 ti[1] = v1;
59 DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
60 vv0 = ti[0];
61 vv1 = ti[1];
87 v0 = v1 = d0 = d1 = ti[0] = ti[
[all...]
H A Dcfb64ede.c32 DES_LONG ti[2]; local
42 ti[0] = v0;
43 ti[1] = v1;
44 DES_encrypt3(ti, ks1, ks2, ks3);
45 v0 = ti[0];
46 v1 = ti[1];
64 ti[0] = v0;
65 ti[1] = v1;
66 DES_encrypt3(ti, ks1, ks2, ks3);
67 v0 = ti[
99 DES_LONG ti[2]; local
[all...]
H A Dcfb_enc.c38 DES_LONG ti[2]; local
60 ti[0] = v0;
61 ti[1] = v1;
62 DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
65 d0 ^= ti[0];
66 d1 ^= ti[1];
107 ti[0] = v0;
108 ti[1] = v1;
109 DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
146 d0 ^= ti[
[all...]
/freebsd-current/crypto/openssl/crypto/idea/
H A Di_cfb64.c33 unsigned long ti[2]; local
46 ti[0] = v0;
48 ti[1] = v1;
49 IDEA_encrypt((unsigned long *)ti, schedule);
51 t = ti[0];
53 t = ti[1];
66 ti[0] = v0;
68 ti[1] = v1;
69 IDEA_encrypt((unsigned long *)ti, schedule);
71 t = ti[
[all...]
H A Di_ofb64.c34 unsigned long ti[2]; local
46 ti[0] = v0;
47 ti[1] = v1;
53 IDEA_encrypt((unsigned long *)ti, schedule);
55 t = ti[0];
57 t = ti[1];
65 v0 = ti[0];
66 v1 = ti[1];
71 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-current/crypto/openssl/crypto/cast/
H A Dc_cfb64.c32 CAST_LONG ti[2]; local
40 ti[0] = v0;
42 ti[1] = v1;
43 CAST_encrypt((CAST_LONG *)ti, schedule);
45 t = ti[0];
47 t = ti[1];
60 ti[0] = v0;
62 ti[1] = v1;
63 CAST_encrypt((CAST_LONG *)ti, schedule);
65 t = ti[
[all...]
H A Dc_ofb64.c33 CAST_LONG ti[2]; local
40 ti[0] = v0;
41 ti[1] = v1;
47 CAST_encrypt((CAST_LONG *)ti, schedule);
49 t = ti[0];
51 t = ti[1];
59 v0 = ti[0];
60 v1 = ti[1];
65 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-current/crypto/openssl/crypto/rc2/
H A Drc2cfb64.c32 unsigned long ti[2]; local
40 ti[0] = v0;
42 ti[1] = v1;
43 RC2_encrypt((unsigned long *)ti, schedule);
45 t = ti[0];
47 t = ti[1];
60 ti[0] = v0;
62 ti[1] = v1;
63 RC2_encrypt((unsigned long *)ti, schedule);
65 t = ti[
[all...]
H A Drc2ofb64.c33 unsigned long ti[2]; local
40 ti[0] = v0;
41 ti[1] = v1;
47 RC2_encrypt((unsigned long *)ti, schedule);
49 t = ti[0];
51 t = ti[1];
59 v0 = ti[0];
60 v1 = ti[1];
65 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-current/crypto/openssl/crypto/rc5/
H A Drc5cfb64.c32 unsigned long ti[2]; local
40 ti[0] = v0;
42 ti[1] = v1;
43 RC5_32_encrypt((unsigned long *)ti, schedule);
45 t = ti[0];
47 t = ti[1];
60 ti[0] = v0;
62 ti[1] = v1;
63 RC5_32_encrypt((unsigned long *)ti, schedule);
65 t = ti[
[all...]
H A Drc5ofb64.c33 unsigned long ti[2]; local
40 ti[0] = v0;
41 ti[1] = v1;
47 RC5_32_encrypt((unsigned long *)ti, schedule);
49 t = ti[0];
51 t = ti[1];
59 v0 = ti[0];
60 v1 = ti[1];
65 t = v0 = v1 = ti[0] = ti[
[all...]
/freebsd-current/sys/sys/
H A Dttyqueue.h72 int ttyinq_setsize(struct ttyinq *ti, struct tty *tp, size_t len);
73 void ttyinq_free(struct ttyinq *ti);
74 int ttyinq_read_uio(struct ttyinq *ti, struct tty *tp, struct uio *uio,
76 size_t ttyinq_write(struct ttyinq *ti, const void *buf, size_t len,
78 int ttyinq_write_nofrag(struct ttyinq *ti, const void *buf, size_t len,
80 void ttyinq_canonicalize(struct ttyinq *ti);
81 void ttyinq_canonicalize_break(struct ttyinq *ti, const char *breakc);
82 size_t ttyinq_findchar(struct ttyinq *ti, const char *breakc, size_t maxlen,
84 void ttyinq_flush(struct ttyinq *ti);
85 int ttyinq_peekchar(struct ttyinq *ti, cha
91 ttyinq_getsize(struct ttyinq *ti) argument
97 ttyinq_getallocatedsize(struct ttyinq *ti) argument
104 ttyinq_bytesleft(struct ttyinq *ti) argument
116 ttyinq_bytescanonicalized(struct ttyinq *ti) argument
124 ttyinq_bytesline(struct ttyinq *ti) argument
[all...]
/freebsd-current/sys/security/audit/
H A Daudit_trigger.c82 struct trigger_info *ti; local
88 ti = TAILQ_FIRST(&trigger_list);
89 TAILQ_REMOVE(&trigger_list, ti, list);
90 free(ti, M_AUDITTRIGGER);
101 struct trigger_info *ti = NULL; local
111 ti = TAILQ_FIRST(&trigger_list);
112 TAILQ_REMOVE(&trigger_list, ti, list);
116 error = uiomove(&ti->trigger, sizeof(ti->trigger), uio);
117 free(ti, M_AUDITTRIGGE
133 struct trigger_info *ti; local
[all...]
/freebsd-current/sys/contrib/dev/athk/ath11k/
H A Dhal_tx.c38 struct hal_tx_info *ti)
43 FIELD_PREP(BUFFER_ADDR_INFO0_ADDR, ti->paddr);
46 ((uint64_t)ti->paddr >> HAL_ADDR_MSB_REG_SHIFT));
48 FIELD_PREP(BUFFER_ADDR_INFO1_RET_BUF_MGR, ti->rbm_id) |
49 FIELD_PREP(BUFFER_ADDR_INFO1_SW_COOKIE, ti->desc_id);
52 FIELD_PREP(HAL_TCL_DATA_CMD_INFO0_DESC_TYPE, ti->type) |
53 FIELD_PREP(HAL_TCL_DATA_CMD_INFO0_ENCAP_TYPE, ti->encap_type) |
55 ti->encrypt_type) |
57 ti->search_type) |
59 ti
37 ath11k_hal_tx_cmd_desc_setup(struct ath11k_base *ab, void *cmd, struct hal_tx_info *ti) argument
[all...]
/freebsd-current/sys/contrib/dev/athk/ath12k/
H A Dhal_tx.c34 struct hal_tx_info *ti)
37 le32_encode_bits(ti->paddr, BUFFER_ADDR_INFO0_ADDR);
39 le32_encode_bits(((uint64_t)ti->paddr >> HAL_ADDR_MSB_REG_SHIFT),
42 le32_encode_bits((ti->rbm_id), BUFFER_ADDR_INFO1_RET_BUF_MGR) |
43 le32_encode_bits(ti->desc_id, BUFFER_ADDR_INFO1_SW_COOKIE);
46 le32_encode_bits(ti->type, HAL_TCL_DATA_CMD_INFO0_DESC_TYPE) |
47 le32_encode_bits(ti->bank_id, HAL_TCL_DATA_CMD_INFO0_BANK_ID);
50 le32_encode_bits(ti->meta_data_flags,
53 tcl_cmd->info2 = cpu_to_le32(ti->flags0) |
54 le32_encode_bits(ti
32 ath12k_hal_tx_cmd_desc_setup(struct ath12k_base *ab, struct hal_tcl_data_cmd *tcl_cmd, struct hal_tx_info *ti) argument
[all...]
/freebsd-current/sbin/ipf/ipsend/
H A Diptest.c64 struct tcpiphdr *ti; local
76 ti = (struct tcpiphdr *)ip;
160 ip_test1(dev, mtu, (ip_t *)ti, gwip, pointtest);
163 ip_test2(dev, mtu, (ip_t *)ti, gwip, pointtest);
166 ip_test3(dev, mtu, (ip_t *)ti, gwip, pointtest);
169 ip_test4(dev, mtu, (ip_t *)ti, gwip, pointtest);
172 ip_test5(dev, mtu, (ip_t *)ti, gwip, pointtest);
175 ip_test6(dev, mtu, (ip_t *)ti, gwip, pointtest);
178 ip_test7(dev, mtu, (ip_t *)ti, gwip, pointtest);
181 ip_test1(dev, mtu, (ip_t *)ti, gwi
[all...]
/freebsd-current/sys/netpfil/ipfw/
H A Dip_fw_table.h76 struct table_info *ti, char *data, uint8_t tflags);
77 typedef void (ta_destroy)(void *ta_state, struct table_info *ti);
82 typedef int (ta_add)(void *ta_state, struct table_info *ti,
84 typedef int (ta_del)(void *ta_state, struct table_info *ti,
89 typedef int (ta_need_modify)(void *ta_state, struct table_info *ti,
92 typedef int (ta_fill_mod)(void *ta_state, struct table_info *ti,
94 typedef void (ta_modify)(void *ta_state, struct table_info *ti,
98 typedef void (ta_change_ti)(void *ta_state, struct table_info *ti);
99 typedef void (ta_print_config)(void *ta_state, struct table_info *ti, char *buf,
103 typedef void ta_foreach(void *ta_state, struct table_info *ti, ta_foreach_
[all...]
H A Dip_fw_table_algo.c85 * struct table_info *ti, char *data, uint8_t tflags);
93 * inside @ti fields. Note that it is not correct to save
94 * @ti pointer at this moment. Use -change_ti hook for that.
95 * * Caller has to fill in ti->lookup to appropriate function
101 * typedef void (ta_destroy)(void *ta_state, struct table_info *ti);
133 * typedef int (ta_add)(void *ta_state, struct table_info *ti,
153 * typedef int (ta_del)(void *ta_state, struct table_info *ti,
178 * typedef int ta_find_tentry(void *ta_state, struct table_info *ti,
188 * -need_modify: checks if @ti has enough space to hold another @count items.
189 * typedef int (ta_need_modify)(void *ta_state, struct table_info *ti,
411 ta_lookup_addr_radix(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
447 ta_init_addr_radix(struct ip_fw_chain *ch, void **ta_state, struct table_info *ti, char *data, uint8_t tflags) argument
481 ta_destroy_addr_radix(void *ta_state, struct table_info *ti) argument
503 ta_dump_addr_radix_tinfo(void *ta_state, struct table_info *ti, ipfw_ta_tinfo *tinfo) argument
519 ta_dump_addr_radix_tentry(void *ta_state, struct table_info *ti, void *e, ipfw_obj_tentry *tent) argument
550 ta_find_addr_radix_tentry(void *ta_state, struct table_info *ti, ipfw_obj_tentry *tent) argument
580 ta_foreach_addr_radix(void *ta_state, struct table_info *ti, ta_foreach_f *f, void *arg) argument
714 ta_add_addr_radix(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
815 ta_del_addr_radix(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
866 ta_need_modify_radix(void *ta_state, struct table_info *ti, uint32_t count, uint64_t *pflags) argument
1059 ta_lookup_chash_slow(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
1104 ta_lookup_chash_aligned(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
1153 ta_lookup_chash_64(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
1245 ta_print_chash_config(void *ta_state, struct table_info *ti, char *buf, size_t bufsize) argument
1277 ta_init_chash(struct ip_fw_chain *ch, void **ta_state, struct table_info *ti, char *data, uint8_t tflags) argument
1331 ta_destroy_chash(void *ta_state, struct table_info *ti) argument
1354 ta_dump_chash_tinfo(void *ta_state, struct table_info *ti, ipfw_ta_tinfo *tinfo) argument
1372 ta_dump_chash_tentry(void *ta_state, struct table_info *ti, void *e, ipfw_obj_tentry *tent) argument
1460 ta_find_chash_tentry(void *ta_state, struct table_info *ti, ipfw_obj_tentry *tent) argument
1516 ta_foreach_chash(void *ta_state, struct table_info *ti, ta_foreach_f *f, void *arg) argument
1557 ta_add_chash(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
1643 ta_del_chash(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
1711 ta_need_modify_chash(void *ta_state, struct table_info *ti, uint32_t count, uint64_t *pflags) argument
1777 ta_fill_mod_chash(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t *pflags) argument
1789 ta_modify_chash(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t pflags) argument
1927 struct table_info *ti; member in struct:iftable_cfg
2073 ifidx_find(struct table_info *ti, void *key) argument
2084 ta_lookup_ifidx(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
2100 ta_init_ifidx(struct ip_fw_chain *ch, void **ta_state, struct table_info *ti, char *data, uint8_t tflags) argument
2124 ta_change_ti_ifidx(void *ta_state, struct table_info *ti) argument
2152 ta_destroy_ifidx(void *ta_state, struct table_info *ti) argument
2176 ta_dump_ifidx_tinfo(void *ta_state, struct table_info *ti, ipfw_ta_tinfo *tinfo) argument
2225 ta_add_ifidx(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
2307 ta_del_ifidx(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
2380 struct table_info *ti; local
2419 ta_need_modify_ifidx(void *ta_state, struct table_info *ti, uint32_t count, uint64_t *pflags) argument
2461 ta_fill_mod_ifidx(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t *pflags) argument
2485 ta_modify_ifidx(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t pflags) argument
2517 ta_dump_ifidx_tentry(void *ta_state, struct table_info *ti, void *e, ipfw_obj_tentry *tent) argument
2532 ta_find_ifidx_tentry(void *ta_state, struct table_info *ti, ipfw_obj_tentry *tent) argument
2575 ta_foreach_ifidx(void *ta_state, struct table_info *ti, ta_foreach_f *f, void *arg) argument
2691 numarray_find(struct table_info *ti, void *key) argument
2702 ta_lookup_numarray(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
2718 ta_init_numarray(struct ip_fw_chain *ch, void **ta_state, struct table_info *ti, char *data, uint8_t tflags) argument
2740 ta_destroy_numarray(void *ta_state, struct table_info *ti) argument
2756 ta_dump_numarray_tinfo(void *ta_state, struct table_info *ti, ipfw_ta_tinfo *tinfo) argument
2785 ta_add_numarray(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
2835 ta_del_numarray(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
2876 ta_need_modify_numarray(void *ta_state, struct table_info *ti, uint32_t count, uint64_t *pflags) argument
2918 ta_fill_mod_numarray(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t *pflags) argument
2942 ta_modify_numarray(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t pflags) argument
2974 ta_dump_numarray_tentry(void *ta_state, struct table_info *ti, void *e, ipfw_obj_tentry *tent) argument
2988 ta_find_numarray_tentry(void *ta_state, struct table_info *ti, ipfw_obj_tentry *tent) argument
3004 ta_foreach_numarray(void *ta_state, struct table_info *ti, ta_foreach_f *f, void *arg) argument
3191 ta_lookup_fhash(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
3258 ta_init_fhash(struct ip_fw_chain *ch, void **ta_state, struct table_info *ti, char *data, uint8_t tflags) argument
3312 ta_destroy_fhash(void *ta_state, struct table_info *ti) argument
3332 ta_dump_fhash_tinfo(void *ta_state, struct table_info *ti, ipfw_ta_tinfo *tinfo) argument
3347 ta_dump_fhash_tentry(void *ta_state, struct table_info *ti, void *e, ipfw_obj_tentry *tent) argument
3423 ta_find_fhash_tentry(void *ta_state, struct table_info *ti, ipfw_obj_tentry *tent) argument
3468 ta_foreach_fhash(void *ta_state, struct table_info *ti, ta_foreach_f *f, void *arg) argument
3513 ta_add_fhash(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
3586 ta_del_fhash(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
3641 ta_need_modify_fhash(void *ta_state, struct table_info *ti, uint32_t count, uint64_t *pflags) argument
3684 ta_fill_mod_fhash(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t *pflags) argument
3696 ta_modify_fhash(void *ta_state, struct table_info *ti, void *ta_buf, uint64_t pflags) argument
3796 ta_lookup_kfib(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
3856 ta_print_kfib_config(void *ta_state, struct table_info *ti, char *buf, size_t bufsize) argument
3867 ta_init_kfib(struct ip_fw_chain *ch, void **ta_state, struct table_info *ti, char *data, uint8_t tflags) argument
3889 ta_destroy_kfib(void *ta_state, struct table_info *ti) argument
3898 ta_dump_kfib_tinfo(void *ta_state, struct table_info *ti, ipfw_ta_tinfo *tinfo) argument
3937 ta_find_kfib_tentry(void *ta_state, struct table_info *ti, ipfw_obj_tentry *tent) argument
3976 ta_dump_kfib_tentry(void *ta_state, struct table_info *ti, void *e, ipfw_obj_tentry *tent) argument
3994 ta_foreach_kfib(void *ta_state, struct table_info *ti, ta_foreach_f *f, void *arg) argument
4032 ta_lookup_mac_radix(struct table_info *ti, void *key, uint32_t keylen, uint32_t *val) argument
4053 ta_init_mac_radix(struct ip_fw_chain *ch, void **ta_state, struct table_info *ti, char *data, uint8_t tflags) argument
4070 ta_destroy_mac_radix(void *ta_state, struct table_info *ti) argument
4152 ta_add_mac_radix(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
4234 ta_del_mac_radix(void *ta_state, struct table_info *ti, struct tentry_info *tei, void *ta_buf, uint32_t *pnum) argument
4262 ta_foreach_mac_radix(void *ta_state, struct table_info *ti, ta_foreach_f *f, void *arg) argument
4272 ta_dump_mac_radix_tinfo(void *ta_state, struct table_info *ti, ipfw_ta_tinfo *tinfo) argument
4285 ta_dump_mac_radix_tentry(void *ta_state, struct table_info *ti, void *e, ipfw_obj_tentry *tent) argument
4299 ta_find_mac_radix_tentry(void *ta_state, struct table_info *ti, ipfw_obj_tentry *tent) argument
[all...]
/freebsd-current/usr.sbin/ngctl/
H A Dtypes.c91 struct typeinfo *const ti = &tlist->typeinfo[k]; local
92 printf("%15s %5d\n", ti->type_name, ti->numnodes);

Completed in 205 milliseconds

12345678