Lines Matching refs:dylib

1417       if (dl.dylib.name < dl.cmdsize) {  in PrintDylibs()
1418 const char *p = (const char *)(Load.Ptr) + dl.dylib.name; in PrintDylibs()
1424 << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "." in PrintDylibs()
1425 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "." in PrintDylibs()
1426 << (dl.dylib.compatibility_version & 0xff) << ","; in PrintDylibs()
1428 << ((dl.dylib.current_version >> 16) & 0xffff) << "." in PrintDylibs()
1429 << ((dl.dylib.current_version >> 8) & 0xff) << "." in PrintDylibs()
1430 << (dl.dylib.current_version & 0xff); in PrintDylibs()
1442 outs() << "\tBad offset (" << dl.dylib.name << ") for name of "; in PrintDylibs()
10024 if (dl.dylib.name < dl.cmdsize) { in PrintDylibCommand()
10025 const char *P = (const char *)(Ptr) + dl.dylib.name; in PrintDylibCommand()
10026 outs() << " name " << P << " (offset " << dl.dylib.name << ")\n"; in PrintDylibCommand()
10028 outs() << " name ?(bad offset " << dl.dylib.name << ")\n"; in PrintDylibCommand()
10030 outs() << " time stamp " << dl.dylib.timestamp << " "; in PrintDylibCommand()
10031 time_t t = dl.dylib.timestamp; in PrintDylibCommand()
10034 if (dl.dylib.current_version == 0xffffffff) in PrintDylibCommand()
10037 outs() << ((dl.dylib.current_version >> 16) & 0xffff) << "." in PrintDylibCommand()
10038 << ((dl.dylib.current_version >> 8) & 0xff) << "." in PrintDylibCommand()
10039 << (dl.dylib.current_version & 0xff) << "\n"; in PrintDylibCommand()
10041 if (dl.dylib.compatibility_version == 0xffffffff) in PrintDylibCommand()
10044 outs() << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "." in PrintDylibCommand()
10045 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "." in PrintDylibCommand()
10046 << (dl.dylib.compatibility_version & 0xff) << "\n"; in PrintDylibCommand()