Searched refs:tlist (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.10/OpenSSL098-52/src/test/
H A Dcms-examples.pl149 my ( $file, $tlist ) = @$_;
151 if ( $tlist =~ /encode/ ) {
154 if ( $tlist =~ /certsout/ ) {
157 if ( $tlist =~ /dataout/ ) {
160 if ( $tlist =~ /verify/ ) {
161 run_verify_test( $exdir, $tlist, $file );
163 if ( $tlist =~ /digest/ ) {
164 run_digest_test( $exdir, $tlist, $file );
166 if ( $tlist =~ /encrypted/ ) {
167 run_encrypted_test( $exdir, $tlist,
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dsdb012.tcl56 # First test locking w/o txns. If any in tlist are 'none',
74 set tlist [list $t1 $t2 $r1 $r2]
76 [lsearch -all $tlist none]]
81 $encargs $sdb$tlet $tlist
102 set tlist $args
103 error_check_good tlist [llength $tlist] 4
104 sdb012_body $testdir $omethod $largs $encargs $sdb$tlet $tlist
108 # This proc checks the tlist values and returns the flags
112 proc sdb012_subsys { tlist } {
[all...]
/macosx-10.10/less-25/less/
H A Dedit.c64 init_textlist(tlist, str)
65 struct textlist *tlist;
76 tlist->string = skipsp(str);
77 tlist->endstring = tlist->string + strlen(tlist->string);
78 for (s = str; s < tlist->endstring; s++)
84 } else if (esclen > 0 && s + esclen < tlist->endstring &&
108 forw_textlist(tlist, prev)
109 struct textlist *tlist;
[all...]
H A Dmain.c225 struct textlist tlist; local
229 init_textlist(&tlist, gfilename);
231 while ((filename = forw_textlist(&tlist, filename)) != NULL)
H A Ddecode.c338 add_cmd_table(tlist, buf, len)
339 struct tablelist **tlist;
359 t->t_next = *tlist;
360 *tlist = t;
404 add_var_table(tlist, buf, len)
405 struct tablelist **tlist;
409 if (add_cmd_table(tlist, buf, len) < 0)
509 cmd_decode(tlist, cmd, sp)
510 struct tablelist *tlist;
521 for (t = tlist;
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dgen_template.c252 struct tlist { struct
256 ASN1_TAILQ_ENTRY(tlist) tmembers;
259 ASN1_TAILQ_HEAD(tlisthead, tlist);
261 static void tlist_header(struct tlist *, const char *, ...) __attribute__((__format__(__printf__, 2, 3)));
264 static int tlist_cmp(const struct tlist *, const struct tlist *);
273 static struct tlist *
276 struct tlist *tl = calloc(1, sizeof(*tl));
283 tlist_header(struct tlist *t, const char *fmt, ...)
293 tlist_count(struct tlist *t
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dalias.c210 register BUCKET_CONTENTS *tlist; local
221 for (tlist = hash_items (i, aliases); tlist; tlist = tlist->next)
223 alias = (alias_t *)tlist->data;
H A Dredir.c301 register WORD_LIST *t, *tlist; local
322 tlist = expand_string (redirectee->word, Q_HERE_DOCUMENT);
323 if (tlist)
337 for (t = tlist; t; t = t->next)
343 if (t != tlist)
352 dispose_words (tlist);
356 dispose_words (tlist);
H A Dpcomplete.c711 #define GEN_COMPS(bmap, flag, it, text, glist, tlist) \
715 tlist = gen_matches_from_itemlist (it, text); \
716 if (tlist) \
718 glist = strlist_append (glist, tlist); \
719 strlist_dispose (tlist); \
724 #define GEN_XCOMPS(bmap, flag, text, func, cmatches, glist, tlist) \
729 tlist = completions_to_stringlist (cmatches); \
730 glist = strlist_append (glist, tlist); \
732 strlist_dispose (tlist); \
H A Dvariables.c2686 register BUCKET_CONTENTS *tlist; local
2695 for (tlist = hash_items (i, var_hash_table); tlist; tlist = tlist->next)
2697 var = (SHELL_VAR *)tlist->data;
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dsetattr.c77 WORD_LIST *nlist, *tlist; local
171 tlist = list->next;
178 list->next = tlist;
H A Dpushd.c424 WORD_LIST *tlist; local
429 tlist = make_word_list (make_word ("--"), dir);
430 result = cd_builtin (tlist);
431 dispose_words (tlist);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/struct/
H A Dprioqueue.tcl520 set tlist [lsort -increasing -dictionary [list $prio $newPrio]]
521 set e1 [string equal [lindex $tlist 0] $prio]
522 set e2 [string equal [lindex $tlist 1] $prio]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dtridpars.cpp469 UVector tlist(ec);
473 tlist.setDeleter(_deleteTransliteratorTrIDPars);
491 tlist.addElement(t, ec);
500 if (tlist.size() == 0) {
506 tlist.addElement(t, ec);
520 while (tlist.size() > 0) {
521 t = (Transliterator*) tlist.orphanElementAt(0);
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/utils/
H A Dsmtptest.c164 void fillin_interactions(sasl_interact_t *tlist) argument
166 while (tlist->id != SASL_CB_LIST_END)
168 interaction(tlist->id, tlist->prompt,
169 (void *) &(tlist->result),
170 &(tlist->len));
171 tlist++;
H A Dtestsuite.c1170 void fillin_correctly(sasl_interact_t *tlist) argument
1172 while (tlist->id!=SASL_CB_LIST_END)
1174 interaction(tlist->id, tlist->prompt,
1175 (void *) &(tlist->result),
1176 &(tlist->len));
1177 tlist++;
/macosx-10.10/tcsh-65/tcsh/
H A Dtw.init.c49 tlist, /* Total space in list */ member in struct:__anon14091
113 if (sl->tlist <= sl->nlist) {
115 sl->tlist += TW_INCR;
116 sl->list = xrealloc(sl->list, sl->tlist * sizeof(Char *));
150 sl->tlist = sl->nlist = 0;
/macosx-10.10/vim-55/runtime/
H A Doptwin.vim226 call append("$", "cpoptions\tlist of flags to specify Vi compatibility")
238 call append("$", "runtimepath\tlist of directories used for runtime files and plugins")
245 call append("$", "whichwrap\tlist of flags specifying which commands wrap to another line")
255 call append("$", "path\tlist of directory names used for file searching")
258 call append("$", "cdpath\tlist of directory names used for :cd")
296 call append("$", "tags\tlist of file names to search for tags")
365 call append("$", "listchars\tlist of strings used for list mode")
421 call append("$", "spelllang\tlist of accepted languages")
561 call append("$", "mouse\tlist of flags for using the mouse")
584 call append("$", "guifont\tlist o
[all...]
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DHardLinkCheck.c667 struct HardLinkList *tlist = NULL; local
736 tlist = realloc(li->list, (count + 10) * sizeof(struct HardLinkList));
737 if (tlist == NULL) {
743 li->list = tlist; // May be the same
/macosx-10.10/ksh-23/ksh/src/lib/libast/cdt/
H A Ddttree.c143 static Void_t* tlist(Dt_t* dt, Dtlink_t* list, int type) function
145 static Void_t* tlist(dt, list, type)
278 if((list = (Dtlink_t*)tlist(dt, NIL(Void_t*), DT_FLATTEN)) )
417 DTRETURN(obj, tlist(dt, (Dtlink_t*)obj, type));
/macosx-10.10/swig-12/Lib/
H A Dswig.swg107 #define %catches(tlist...) %feature("catches","("`tlist`")")
/macosx-10.10/system_cmds-643.1.1/shutdown.tproj/
H A Dshutdown.c97 } tlist[] = { variable in typeref:struct:interval
313 tp = tlist;
/macosx-10.10/tcl-105/tcl_ext/thread/thread/lib/
H A Dttrace.tcl389 set tlist [_getthreads]
392 if {[_dropepoch $epoch $tlist] == 0} {
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dterm.c368 char **tlist = el->el_term.t_str; local
369 char **tmp, **str = &tlist[t - tstr];
401 for (tmp = tlist; tmp < &tlist[T_str]; tmp++)
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dterm.c393 char **tlist = el->el_term.t_str; local
394 char **tmp, **str = &tlist[t - tstr];
427 for (tmp = tlist; tmp < &tlist[T_str]; tmp++)

Completed in 359 milliseconds

12