Lines Matching defs:dl
64 struct dllist dl;
117 dl.ldfd = open(filename, O_RDONLY, 0);
118 if (dl.ldfd == -1)
121 if ((error = CheckElfFile(dl.ldfd)) == 0) {
122 if (GetElfFileInfo(&dl) < 0) {
126 } else if ((error = CheckAOutFile(dl.ldfd)) == 0) {
127 if (GetAOutFileInfo(&dl) < 0) {
131 } else if ((error = CheckMopFile(dl.ldfd)) == 0) {
132 if (GetMopFileInfo(&dl) < 0) {
138 (void) close(dl.ldfd);