Searched defs:origName (Results 1 - 1 of 1) sorted by relevance

/frameworks/rs/cpu_ref/
H A DrsCpuScript.cpp82 // Attempt to load the shared library from origName, but then fall back to
85 static void *loadSOHelper(const char *origName, const char *cacheDir, argument
98 if (access(origName, F_OK) != 0) {
103 if (LoadedLibraries.find(origName) == LoadedLibraries.end()) {
104 loaded = dlopen(origName, RTLD_NOW | RTLD_LOCAL);
106 LoadedLibraries.insert(origName);
126 int r = symlink(origName, newName.c_str());
128 ALOGE("Could not create symlink %s -> %s", newName.c_str(), origName);

Completed in 58 milliseconds