Home | History | Annotate | Download | only in cpu_ref

Lines Matching full:cachedir

85 static void *loadSOHelper(const char *origName, const char *cacheDir,
111 std::string newName(cacheDir);
115 ALOGE("Could not verify or create cache dir: %s", cacheDir);
143 // Load the shared library referred to by cacheDir and resName. If we have
148 static void *loadSharedLibrary(const char *cacheDir, const char *resName) {
152 std::string scriptSOName(cacheDir);
157 ALOGE("Found peculiar cacheDir (missing \"cache\"): %s", cacheDir);
168 loaded = loadSOHelper(scriptSOName.c_str(), cacheDir, resName);
182 loaded = loadSOHelper(scriptSONameSystem.c_str(), cacheDir,
220 const char* cacheDir, const char* resName, const char* core_lib,
222 rsAssert(cacheDir && resName && core_lib);
227 args->push_back(cacheDir);
379 bool RsdCpuScriptImpl::init(char const *resName, char const *cacheDir,
382 //ALOGE("rsdScriptCreate %p %p %p %p %i %i %p", rsc, resName, cacheDir, bitcode, bitcodeSize, flags, lookupFunc);
434 android::String8 bcFileName(cacheDir);
440 setCompileArguments(&compileArguments, bcFileName, cacheDir, resName, core_lib,
448 mExecutable = bcc::RSCompilerDriver::loadScript(cacheDir, resName, (const char*)bitcode,
462 mExecutable = bcc::RSCompilerDriver::loadScript(cacheDir, resName, (const char*)bitcode,
498 mScriptSO = loadSharedLibrary(cacheDir, resName);