OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g_loaded_libs
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/content/child/npapi/
plugin_lib.cc
22
static std::vector<scoped_refptr<PluginLib> >*
g_loaded_libs
;
member in namespace:content
28
if (!
g_loaded_libs
)
29
g_loaded_libs
= new std::vector<scoped_refptr<PluginLib> >;
31
for (size_t i = 0; i <
g_loaded_libs
->size(); ++i) {
32
if ((*
g_loaded_libs
)[i]->plugin_info().path == filename)
33
return (*
g_loaded_libs
)[i].get();
44
if (
g_loaded_libs
) {
48
std::vector<scoped_refptr<PluginLib> > loaded_libs(*
g_loaded_libs
);
52
if (
g_loaded_libs
&&
g_loaded_libs
->empty())
[
all
...]
plugin_lib_unittest.cc
15
// if UnloadAllPlugins() simply iterates through the
g_loaded_libs
global
27
// For the creation of the
g_loaded_libs
global variable.
Completed in 166 milliseconds