Searched refs:tln (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/bmake/lst.lib/
H A DlstFindFrom.c74 ListNode tln; local
80 tln = ln;
83 if ((*cProc)(tln->datum, d) == 0)
84 return (tln);
85 tln = tln->nextPtr;
86 } while (tln != ln && tln != NULL);
H A DlstDeQueue.c73 ListNode tln; local
75 tln = Lst_First(l);
76 if (tln == NULL) {
80 rd = tln->datum;
81 if (Lst_Remove(l, tln) == FAILURE) {
H A DlstForEachFrom.c76 ListNode tln = ln; local
92 next = tln->nextPtr;
103 (void) tln->useCount++;
104 result = (*proc) (tln->datum, d);
105 (void) tln->useCount--;
112 if (next != tln->nextPtr) {
113 next = tln->nextPtr;
117 if (tln->flags & LN_DELETED) {
118 free((char *)tln);
120 tln
[all...]
H A DlstNext.c78 ListNode tln; local
95 list->curPtr = tln = list->firstPtr;
98 tln = NULL;
102 tln = list->curPtr->nextPtr;
103 list->curPtr = tln;
105 if (tln == list->firstPtr || tln == NULL) {
118 return (tln);
H A DlstDestroy.c74 ListNode tln = NULL; local
88 for (ln = list->firstPtr; ln != NULL; ln = tln) {
89 tln = ln->nextPtr;
94 for (ln = list->firstPtr; ln != NULL; ln = tln) {
95 tln = ln->nextPtr;
/freebsd-9.3-release/usr.bin/make/
H A Dtarg.c368 const LstNode *tln; local
401 LST_FOREACH(tln, &gn->iParents)
403 Lst_Datum(tln))->name);
409 LST_FOREACH(tln, &gn->parents)
411 Lst_Datum(tln))->name);
430 LST_FOREACH(tln, &gn->children)
431 printf("%s ", ((const GNode *)Lst_Datum(tln))->name);
433 LST_FOREACH(tln, &gn->commands)
434 printf("\t%s\n", (const char *)Lst_Datum(tln));
437 LST_FOREACH(tln,
453 const LstNode *tln; local
[all...]
H A Dlst.c181 LstNode *tln; local
183 tln = Lst_First(l);
184 if (tln == NULL) {
188 rd = tln->datum;
189 Lst_Remove(l, tln);
H A Dsuff.c990 const LstNode *tln; local
993 LST_FOREACH(tln, &s->cp)
994 printf("%p ", (const void *)Lst_Datum(tln));
2160 const LstNode *tln; local
2182 LST_FOREACH(tln, &s->parents)
2183 printf("`%s' ", ((const Suff *)Lst_Datum(tln))->name);
2186 LST_FOREACH(tln, &s->children)
2187 printf("`%s' ", ((const Suff *)Lst_Datum(tln))->name);
2201 LST_FOREACH(tln, &gn->commands)
2202 printf("\t%s\n", (const char *)Lst_Datum(tln));
[all...]

Completed in 106 milliseconds