Home
last modified time | relevance | path

Searched refs:pluginPath (Results 1 – 5 of 5) sorted by relevance

/aosp12/hardware/interfaces/cas/1.0/default/
H A DFactoryLoader.h110 String8 pluginPath = dirPath + "/" + pEntry->d_name; in findFactoryForScheme() local
111 if (pluginPath.getPathExtension() == ".so") { in findFactoryForScheme()
113 pluginPath, CA_system_id, library, factory)) { in findFactoryForScheme()
114 mCASystemIdToLibraryPathMap.add(CA_system_id, pluginPath); in findFactoryForScheme()
152 String8 pluginPath = dirPath + "/" + pEntry->d_name; in enumeratePlugins() local
153 if (pluginPath.getPathExtension() == ".so") { in enumeratePlugins()
154 queryPluginsFromPath(pluginPath, results); in enumeratePlugins()
/aosp12/hardware/interfaces/cas/1.1/default/
H A DFactoryLoader.h102 String8 pluginPath = dirPath + "/" + pEntry->d_name; in findFactoryForScheme() local
103 if (pluginPath.getPathExtension() == ".so") { in findFactoryForScheme()
104 if (loadFactoryForSchemeFromPath(pluginPath, CA_system_id, library, factory)) { in findFactoryForScheme()
105 mCASystemIdToLibraryPathMap.add(CA_system_id, pluginPath); in findFactoryForScheme()
141 String8 pluginPath = dirPath + "/" + pEntry->d_name; in enumeratePlugins() local
142 if (pluginPath.getPathExtension() == ".so") { in enumeratePlugins()
143 queryPluginsFromPath(pluginPath, results); in enumeratePlugins()
/aosp12/hardware/interfaces/cas/1.2/default/
H A DFactoryLoader.h102 String8 pluginPath = dirPath + "/" + pEntry->d_name; in findFactoryForScheme() local
103 if (pluginPath.getPathExtension() == ".so") { in findFactoryForScheme()
104 if (loadFactoryForSchemeFromPath(pluginPath, CA_system_id, library, factory)) { in findFactoryForScheme()
105 mCASystemIdToLibraryPathMap.add(CA_system_id, pluginPath); in findFactoryForScheme()
141 String8 pluginPath = dirPath + "/" + pEntry->d_name; in enumeratePlugins() local
142 if (pluginPath.getPathExtension() == ".so") { in enumeratePlugins()
143 queryPluginsFromPath(pluginPath, results); in enumeratePlugins()
/aosp12/frameworks/av/media/codec2/hidl/plugin/
H A DDefaultFilterPlugin.cpp36 DefaultFilterPlugin::DefaultFilterPlugin(const char *pluginPath) in DefaultFilterPlugin() argument
41 mHandle = dlopen(pluginPath, RTLD_NOW | RTLD_NODELETE); in DefaultFilterPlugin()
/aosp12/frameworks/av/media/codec2/hidl/plugin/internal/
H A DDefaultFilterPlugin.h29 explicit DefaultFilterPlugin(const char *pluginPath);