• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/dyld-353.2.1/src/

Lines Matching defs:orgPath

2513 static ImageLoader* loadPhase5load(const char* path, const char* orgPath, const LoadContext& context, std::vector<const char*>* exceptions)
2586 static ImageLoader* loadPhase5load(const char* path, const char* orgPath, const LoadContext& context, std::vector<const char*>* exceptions)
2642 static ImageLoader* loadPhase5check(const char* path, const char* orgPath, const LoadContext& context)
2644 //dyld::log("%s(%s, %s)\n", __func__ , path, orgPath);
2670 if ( (orgPath[0] == '@') && (strncmp(orgPath, "@rpath/", 7) == 0) ) {
2674 if ( strcmp(orgPath, installPath) == 0 )
2687 static ImageLoader* loadPhase5(const char* path, const char* orgPath, const LoadContext& context, std::vector<const char*>* exceptions)
2700 return loadPhase5load(path, orgPath, context, exceptions);
2702 return loadPhase5check(path, orgPath, context);
2706 static ImageLoader* loadPhase4(const char* path, const char* orgPath, const LoadContext& context, std::vector<const char*>* exceptions)
2713 image = loadPhase5(pathWithSuffix, orgPath, context, exceptions);
2716 image = loadPhase5(path, orgPath, context, exceptions);
2720 static ImageLoader* loadPhase2(const char* path, const char* orgPath, const LoadContext& context,
2726 static ImageLoader* loadPhase3(const char* path, const char* orgPath, const LoadContext& context, std::vector<const char*>* exceptions)
2743 image = loadPhase4(newPath, orgPath, context, exceptions);
2757 image = loadPhase4(newRealPath, orgPath, context, exceptions);
2774 image = loadPhase4(newPath, orgPath, context, exceptions);
2788 image = loadPhase4(newRealPath, orgPath, context, exceptions);
2804 image = loadPhase4(newPath, orgPath, context, exceptions);
2807 dyld::log("RPATH successful expansion of %s to: %s\n", orgPath, newPath);
2809 dyld::log("RPATH failed to expanding %s to: %s\n", orgPath, newPath);
2819 image = loadPhase2(trailingPath, orgPath, context, NULL, sEnv.LD_LIBRARY_PATH, exceptions);
2832 return loadPhase4(path, orgPath, context, exceptions);
2837 static ImageLoader* loadPhase2(const char* path, const char* orgPath, const LoadContext& context,
2853 image = loadPhase4(npath, orgPath, context, exceptions);
2870 image = loadPhase4(libpath, orgPath, context, exceptions);
2879 static ImageLoader* loadPhase1(const char* path, const char* orgPath, const LoadContext& context, std::vector<const char*>* exceptions)
2886 image = loadPhase2(path, orgPath, context, NULL, sEnv.LD_LIBRARY_PATH, exceptions);
2893 image = loadPhase2(path, orgPath, context, sEnv.DYLD_FRAMEWORK_PATH, sEnv.DYLD_LIBRARY_PATH, exceptions);
2899 image = loadPhase3(path, orgPath, context, exceptions);
2908 image = loadPhase2(path, orgPath, context, sEnv.DYLD_FALLBACK_FRAMEWORK_PATH, fallbackLibraryPaths, exceptions);
2917 static ImageLoader* loadPhase0(const char* path, const char* orgPath, const LoadContext& context, std::vector<const char*>* exceptions)
2927 ImageLoader* image = loadPhase1(newPath, orgPath, context, exceptions);
2934 return loadPhase1(path, orgPath, context, exceptions);
2964 const char* orgPath = path;
2975 ImageLoader* image = loadPhase0(path, orgPath, context, NULL);
2983 image = loadPhase0(path, orgPath, context, &exceptions);