Lines Matching refs:ln

352 	CachedDirListNode *ln = odirs->list.first;  in OpenDirs_Done()  local
355 while (ln != NULL) { in OpenDirs_Done()
356 CachedDirListNode *next = ln->next; in OpenDirs_Done()
357 CachedDir *dir = ln->datum; in OpenDirs_Done()
361 ln = next; in OpenDirs_Done()
371 CachedDirListNode *ln = HashTable_FindValue(&odirs->table, name); in OpenDirs_Find() local
372 return ln != NULL ? ln->datum : NULL; in OpenDirs_Find()
388 CachedDirListNode *ln; in OpenDirs_Remove() local
391 ln = HashEntry_Get(he); in OpenDirs_Remove()
393 Lst_Remove(&odirs->list, ln); in OpenDirs_Remove()
537 CachedDirListNode *ln; in Dir_SetPATH() local
542 if ((ln = dirSearchPath.dirs.first) != NULL) { in Dir_SetPATH()
543 CachedDir *dir = ln->datum; in Dir_SetPATH()
557 for (ln = dirSearchPath.dirs.first; ln != NULL; ln = ln->next) { in Dir_SetPATH()
558 CachedDir *dir = ln->datum; in Dir_SetPATH()
578 CachedDirListNode *ln; in Dir_SetSYSPATH() local
584 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in Dir_SetSYSPATH()
585 CachedDir *dir = ln->datum; in Dir_SetSYSPATH()
816 CachedDirListNode *ln; in DirExpandPath() local
817 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in DirExpandPath()
818 CachedDir *dir = ln->datum; in DirExpandPath()
827 StringListNode *ln; in PrintExpansions() local
828 for (ln = expansions->first; ln != NULL; ln = ln->next) { in PrintExpansions()
829 const char *word = ln->datum; in PrintExpansions()
1058 CachedDirListNode *ln; in FindFileRelative() local
1075 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in FindFileRelative()
1076 CachedDir *dir = ln->datum; in FindFileRelative()
1121 CachedDirListNode *ln; in FindFileAbsolute() local
1129 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in FindFileAbsolute()
1130 CachedDir *dir = ln->datum; in FindFileAbsolute()
1195 CachedDirListNode *ln; in FindFile() local
1212 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in FindFile()
1213 CachedDir *dir = ln->datum; in FindFile()
1510 CachedDirListNode *ln; in SearchPath_Add() local
1513 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in SearchPath_Add()
1514 CachedDir *pathDir = ln->datum; in SearchPath_Add()
1543 CachedDirListNode *ln; in Dir_CopyDirSearchPath() local
1544 for (ln = dirSearchPath.dirs.first; ln != NULL; ln = ln->next) { in Dir_CopyDirSearchPath()
1545 CachedDir *dir = ln->datum; in Dir_CopyDirSearchPath()
1561 CachedDirListNode *ln; in SearchPath_ToFlags() local
1566 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in SearchPath_ToFlags()
1567 CachedDir *dir = ln->datum; in SearchPath_ToFlags()
1581 CachedDirListNode *ln; in SearchPath_Free() local
1583 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in SearchPath_Free()
1584 CachedDir *dir = ln->datum; in SearchPath_Free()
1612 CachedDirListNode *ln; in SearchPath_AddAll() local
1614 for (ln = src->dirs.first; ln != NULL; ln = ln->next) { in SearchPath_AddAll()
1615 CachedDir *dir = ln->datum; in SearchPath_AddAll()
1630 CachedDirListNode *ln; in Dir_PrintDirectories() local
1639 for (ln = openDirs.list.first; ln != NULL; ln = ln->next) { in Dir_PrintDirectories()
1640 CachedDir *dir = ln->datum; in Dir_PrintDirectories()
1649 CachedDirListNode *ln; in SearchPath_Print() local
1651 for (ln = path->dirs.first; ln != NULL; ln = ln->next) { in SearchPath_Print()
1652 const CachedDir *dir = ln->datum; in SearchPath_Print()