Lines Matching refs:path
61 const String8 &path,
67 const String8 &path,
70 bool openFactory(const String8 &path);
152 const String8 &path, int32_t CA_system_id, in loadFactoryForSchemeFromPath() argument
156 if (!openFactory(path) || !mFactory->isSystemIdSupported(CA_system_id)) { in loadFactoryForSchemeFromPath()
172 const String8 &path, vector<HidlCasPluginDescriptor>* results) { in queryPluginsFromPath() argument
176 if (!openFactory(path) || mFactory->queryPlugins(&descriptors) != OK) { in queryPluginsFromPath()
190 bool FactoryLoader<T>::openFactory(const String8 &path) { in openFactory() argument
192 ssize_t index = mLibraryPathToOpenLibraryMap.indexOfKey(path); in openFactory()
196 index = mLibraryPathToOpenLibraryMap.add(path, NULL); in openFactory()
200 mLibrary = new SharedLibrary(path); in openFactory()