Home | History | Annotate | Download | only in make

Lines Matching defs:examine

673 	/* It is save to re-examine any nodes again */
1210 ExamineLater(GNodeList *examine, GNodeList *toBeExamined)
1222 DEBUG2(MAKE, "ExamineLater: need to examine \"%s%s\"\n",
1224 Lst_Enqueue(examine, gn);
1232 GNodeList examine = LST_INIT; /* Queue of targets to examine */
1233 Lst_AppendAll(&examine, targets);
1245 while (!Lst_IsEmpty(&examine)) {
1246 GNode *gn = Lst_Dequeue(&examine);
1252 DEBUG2(MAKE, "Make_ExpandUse: examine %s%s\n",
1256 Lst_PrependAll(&examine, &gn->cohorts);
1297 ExamineLater(&examine, &gn->children);
1300 Lst_Done(&examine);
1324 GNodeList examine;
1352 Lst_Init(&examine);
1353 Lst_Append(&examine, pgn);
1355 while (!Lst_IsEmpty(&examine)) {
1358 pgn = Lst_Dequeue(&examine);
1364 DEBUG1(MAKE, "Make_ProcessWait: examine %s\n", pgn->name);
1367 Lst_PrependAll(&examine, &pgn->cohorts);
1376 Lst_Append(&examine, cgn);
1380 Lst_Done(&examine);