Home
last modified time | relevance | path

Searched full:tlist (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/crypto/openssl/test/
H A Dcms-examples.pl105 my ( $file, $tlist ) = @$_;
107 if ( $tlist =~ /encode/ ) {
110 if ( $tlist =~ /certsout/ ) {
113 if ( $tlist =~ /dataout/ ) {
116 if ( $tlist =~ /verify/ ) {
117 run_verify_test( $exdir, $tlist, $file );
119 if ( $tlist =~ /digest/ ) {
120 run_digest_test( $exdir, $tlist, $file );
122 if ( $tlist =~ /encrypted/ ) {
123 run_encrypted_test( $exdir, $tlist, $file, $secretkey );
[all …]
/freebsd/usr.sbin/ngctl/
H A Dtypes.c60 struct typelist *tlist; in TypesCmd() local
84 tlist = (struct typelist *) resp->data; in TypesCmd()
85 printf("There are %d total types:\n", tlist->numtypes); in TypesCmd()
86 if (tlist->numtypes > 0) { in TypesCmd()
90 for (k = 0; k < tlist->numtypes; k++) { in TypesCmd()
91 struct typeinfo *const ti = &tlist->typeinfo[k]; in TypesCmd()
/freebsd/crypto/heimdal/lib/asn1/
H A Dgen_template.c246 struct tlist {
250 ASN1_TAILQ_ENTRY(tlist) tmembers;
253 ASN1_TAILQ_HEAD(tlisthead, tlist);
255 static void tlist_header(struct tlist *, const char *, ...) __attribute__((__format__(__printf__, 2, 3)));
258 static int tlist_cmp(const struct tlist *, const struct tlist *);
267 static struct tlist * in tlist_new()
270 struct tlist *tl = calloc(1, sizeof(*tl)); in tlist_new()
277 tlist_header(struct tlist *t, const char *fmt, ...) in tlist_header()
287 tlist_count(struct tlist *t in tlist_count()
244 struct tlist { global() struct
248 templatetlist global() argument
[all...]
/freebsd/usr.sbin/dumpcis/
H A Dreadcis.c121 freecis(struct tuple_list *tlist) in freecis() argument
126 while ((tl = tlist) != 0) { in freecis()
127 tlist = tl->next; in freecis()
189 static struct tuple_list *tlist; variable
199 tlist = 0; in read_tuples()
200 last_tl = tlist = read_one_tuplelist(fd, MDF_ATTR, (off_t) 0); in read_tuples()
233 if (find_tuple_in_list(tlist, CIS_NOLINK) == 0 && in read_tuples()
234 find_tuple_in_list(tlist, CIS_LINKTARGET) == 0 && in read_tuples()
239 tlist->next = read_one_tuplelist(fd, 0, 0); in read_tuples()
241 return (tlist); in read_tuples()
[all …]
H A Dprintcis.c61 dumpcis(struct tuple_list *tlist) in dumpcis() argument
69 for (tl = tlist; tl; tl = tl->next) in dumpcis()
/freebsd/crypto/krb5/src/lib/krb5/keytab/
H A Dktbase.c154 const struct krb5_kt_typelist *tlist; in krb5_kt_resolve() local
191 tlist = kt_typehead; in krb5_kt_resolve()
196 for (; tlist; tlist = tlist->next) { in krb5_kt_resolve()
197 if (strcmp (tlist->ops->prefix, pfx) == 0) { in krb5_kt_resolve()
198 err = (*tlist->ops->resolve)(context, resid, &id); in krb5_kt_resolve()
/freebsd/contrib/less/
H A Dedit.c63 public void init_textlist(struct textlist *tlist, mutable char *str) in init_textlist() argument
73 tlist->string = skipsp(str); in init_textlist()
74 tlist->endstring = tlist->string + strlen(tlist->string); in init_textlist()
75 for (s = str; s < tlist->endstring; s++) in init_textlist()
81 } else if (esclen > 0 && s + esclen < tlist->endstring && in init_textlist()
104 public constant char * forw_textlist(struct textlist *tlist, constant char *prev) in forw_textlist() argument
113 s = tlist->string; in forw_textlist()
116 while (s < tlist->endstring && *s == '\0') in forw_textlist()
118 if (s >= tlist->endstring) in forw_textlist()
123 public constant char * back_textlist(struct textlist *tlist, constant char *prev) in back_textlist() argument
[all …]
H A Ddecode.c336 static void expand_cmd_table(struct tablelist *tlist) in expand_cmd_table() argument
339 for (t = tlist; t != NULL; t = t->t_next) in expand_cmd_table()
412 static int add_cmd_table(struct tablelist **tlist, unsigned char *buf, size_t len) in add_cmd_table() argument
430 if (*tlist == NULL) in add_cmd_table()
431 *tlist = t; in add_cmd_table()
435 for (e = *tlist; e->t_next != NULL; e = e->t_next) in add_cmd_table()
445 static void pop_cmd_table(struct tablelist **tlist) in pop_cmd_table() argument
448 if (*tlist == NULL) in pop_cmd_table()
450 if ((*tlist)->t_next == NULL) in pop_cmd_table()
452 t = *tlist; in pop_cmd_table()
[all …]
H A Dmain.c391 struct textlist tlist; in main() local
397 init_textlist(&tlist, gfilename); in main()
399 while ((filename = forw_textlist(&tlist, filename)) != NULL) in main()
H A Dfuncs.h144 public void init_textlist(struct textlist *tlist, mutable char *str);
145 public constant char * forw_textlist(struct textlist *tlist, constant char *prev);
146 public constant char * back_textlist(struct textlist *tlist, constant char *prev);
/freebsd/crypto/krb5/src/lib/krb5/ccache/
H A Dccbase.c265 struct krb5_cc_typelist *tlist; in krb5int_cc_getops() local
268 for (tlist = cc_typehead; tlist; tlist = tlist->next) { in krb5int_cc_getops()
269 if (strcmp (tlist->ops->prefix, pfx) == 0) { in krb5int_cc_getops()
270 *ops = tlist->ops; in krb5int_cc_getops()
/freebsd/sys/cam/ctl/
H A Dctl_tpc.c161 struct tpc_list *list, *tlist; in tpc_timeout() local
166 TAILQ_FOREACH_SAFE(list, &lun->tpc_lists, links, tlist) { in tpc_timeout()
229 struct tpc_list *list, *tlist; in ctl_tpc_lun_clear() local
231 TAILQ_FOREACH_SAFE(list, &lun->tpc_lists, links, tlist) { in ctl_tpc_lun_clear()
1669 struct tpc_list *list, *tlist; in ctl_extended_copy_lid1() local
1786 tlist = tpc_find_list(lun, list->list_id, list->init_idx); in ctl_extended_copy_lid1()
1787 if (tlist != NULL && !tlist->completed) { in ctl_extended_copy_lid1()
1795 if (tlist != NULL) { in ctl_extended_copy_lid1()
1796 TAILQ_REMOVE(&lun->tpc_lists, tlist, links); in ctl_extended_copy_lid1()
1797 free(tlist, M_CTL); in ctl_extended_copy_lid1()
[all …]
/freebsd/sys/contrib/openzfs/module/icp/include/sys/crypto/
H A Dsched_impl.h52 #define IS_PROVIDER_TRIED(pd, tlist) \ argument
53 (tlist != NULL && is_in_triedlist(pd, tlist))
/freebsd/sys/dev/mthca/
H A Dmthca_catas.c64 LIST_HEAD(tlist); in catas_reset()
70 list_splice_init(&catas_list, &tlist); in catas_reset()
73 list_for_each_entry_safe(dev, tmpdev, &tlist, catas_err.list) { in catas_reset()
/freebsd/crypto/krb5/src/clients/ksu/
H A Dheuristic.c99 char ** tlist; in list_union() local
114 if (!(tlist = (char **) calloc( c1 + c2 + 1, sizeof ( char *)))) in list_union()
119 tlist[i] = list1[i]; in list_union()
125 tlist[i] = list2[j]; in list_union()
134 tlist[i]= NULL; in list_union()
136 *combined_list = tlist; in list_union()
/freebsd/contrib/tcsh/
H A Dtw.init.c45 tlist, /* Total space in list */ member
109 if (sl->tlist <= sl->nlist) { in tw_str_add()
111 sl->tlist += TW_INCR; in tw_str_add()
112 sl->list = xrealloc(sl->list, sl->tlist * sizeof(Char *)); in tw_str_add()
145 sl->tlist = sl->nlist = 0; in tw_str_free()
/freebsd/sys/dev/cxgbe/tom/
H A Dt4_tom.c1850 TAILQ_HEAD(, toepcb) tlist = TAILQ_HEAD_INITIALIZER(tlist); in cleanup_stranded_tids()
1870 TAILQ_SWAP(&td->stranded_atids, &tlist, toepcb, link); in cleanup_stranded_tids()
1872 while ((toep = TAILQ_FIRST(&tlist)) != NULL) { in cleanup_stranded_tids()
1873 TAILQ_REMOVE(&tlist, toep, link); in cleanup_stranded_tids()
1881 TAILQ_SWAP(&td->stranded_tids, &tlist, toepcb, link); in cleanup_stranded_tids()
1883 while ((toep = TAILQ_FIRST(&tlist)) != NULL) { in cleanup_stranded_tids()
1884 TAILQ_REMOVE(&tlist, toep, link); in cleanup_stranded_tids()
/freebsd/sbin/shutdown/
H A Dshutdown.c64 } tlist[] = { variable
275 tp = tlist; in loop()
/freebsd/contrib/libedit/
H A Dterminal.c340 char **tlist = el->el_terminal.t_str; in terminal_alloc() local
341 char **tmp, **str = &tlist[t - tstr]; in terminal_alloc()
375 for (tmp = tlist; tmp < &tlist[T_str]; tmp++) in terminal_alloc()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_skbuff.c319 db_printf("\tlist %p\n", &skb->list); in DB_SHOW_COMMAND()
/freebsd/contrib/lib9p/pytest/
H A Dprotocol.py1412 tlist = []
1423 tlist.append(item.group(1))
1431 for item in tlist:
/freebsd/usr.bin/rpcinfo/
H A Drpcinfo.c1537 static const char *tlist[3] = { local
1547 if ((handle = __rpc_setconf(tlist[i])) == NULL)
/freebsd/sys/dev/mlx4/mlx4_core/
H A Dmlx4_resource_tracker.c4707 LIST_HEAD(tlist); in rem_slave_srqs()
4773 LIST_HEAD(tlist); in rem_slave_cqs()
4836 LIST_HEAD(tlist); in rem_slave_mrs()
4904 LIST_HEAD(tlist); in rem_slave_mtts()
5093 LIST_HEAD(tlist); in rem_slave_eqs()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2249 if (Args.TList) in CollectTemplateParams()
2250 Name = Args.TList->getParam(i)->getName(); in CollectTemplateParams()
2377 const TemplateParameterList *TList = FD->getTemplateSpecializationInfo() in GetTemplateArgs() local
2380 return {{TList, FD->getTemplateSpecializationArgs()->asArray()}}; in GetTemplateArgs()
2393 const TemplateParameterList *TList = T->getTemplateParameters(); in GetTemplateArgs() local
2395 return {{TList, TA}}; in GetTemplateArgs()
H A DCGDebugInfo.h296 const TemplateParameterList *TList; member

12