Home | History | Annotate | Download | only in android

Lines Matching defs:m_module

57     DynamicLibraryCloser(PlatformModule *module) : m_module(module) { }
61 if (m_module && *m_module)
63 dlclose(*m_module);
64 *m_module = 0;
67 void ok() { m_module = NULL; }
70 PlatformModule *m_module;
201 ASSERT(m_module);
211 ASSERT(m_module == NULL);
222 m_module = handle;
223 PLUGIN_LOG("Fetch Info Loaded %p\n", m_module);
226 // This object will call dlclose() and set m_module to NULL
228 DynamicLibraryCloser dlCloser(&m_module);
232 if(!getEntryPoint(m_module, "NP_Initialize", (void **) &NP_Initialize) ||
233 !getEntryPoint(m_module, "NP_Shutdown", (void **) &m_NPP_Shutdown)) {
278 // This object will call dlclose() and set m_module to NULL