Home | History | Annotate | Download | only in MakeDeps

Lines Matching defs:List

32 // Structure to maintain a linked list of strings

112 // Here's all our globals. We need a linked list of include paths, a linked
113 // list of source files, a linked list of subdirectories (appended to each
128 BOOLEAN NoDupes; // to not list duplicate dependency files (for timing purposes)
237 // Go through the list of source files and process each.
243 // Clear out our list of processed files
300 // Free up our processed files list
360 ProcessedFiles - list of processed files.
486 // and add it to the list.
737 ProcessedFiles - list of processed files.
801 // and add it to the list.
951 STRING_LIST *List;
956 // Traverse the list of paths and try to find the file
959 List = mGlobals.ParentPaths;
960 while (List != NULL) {
964 if (strlen (List->Str) + strlen (FileName) + 1 > sizeof (FullFileName)) {
971 List->Str,
979 strcpy (FullFileName, List->Str);
997 List = List->Next;
1001 List = mGlobals.IncludePaths;
1002 while (List != NULL) {
1006 if (strlen (List->Str) + strlen (FileName) + 1 > sizeof (FullFileName)) {
1013 List->Str,
1021 strcpy (FullFileName, List->Str);
1043 strcpy (FullFileName, List->Str);
1060 List = List->Next;
1110 // Allocate memory for a new list element, fill it in, and
1111 // add it to our list of include paths. Always make sure it
1133 // Add it to the end of the our list of include paths
1159 // Allocate memory for a new list element, fill it in, and
1160 // add it to our list of source files.
1197 // -s subdir add subdirectory subdir to list of subdirecties to scan.
1202 // Allocate memory for a new list element, fill it in, and
1203 // add it to our list of subdirectory include paths. Always
1268 // Add it to the list
1306 // Path/xxx.dep exists, list Path/xxx.dep as a dependency rather than
1333 // -o OutputFileName - specify an output filename for dependency list
1449 // Traverse the subdirectory list, freeing each
1505 " -f SourceFile add SourceFile to list of files to scan",
1506 " -i IncludePath add IncludePath to list of search paths",