Home
last modified time | relevance | path

Searched refs:Globals (Results 1 – 25 of 47) sorted by relevance

12

/external/chromium_org/third_party/android_crazy_linker/src/src/
Dcrazy_linker_globals.cpp15 Globals* g_globals = NULL;
18 void CreateGlobalsInstance() { g_globals = new Globals(); } in CreateGlobalsInstance()
22 Globals::Globals() : search_paths_(), rdebug_() { in Globals() function in crazy::Globals
27 Globals::~Globals() { pthread_mutex_destroy(&lock_); } in ~Globals()
29 Globals* Globals::Get() { in Get()
Dcrazy_linker_globals.h19 class Globals {
21 Globals();
22 ~Globals();
28 static Globals* Get();
46 ScopedGlobalLock() { Globals::Get()->Lock(); } in ScopedGlobalLock()
48 ~ScopedGlobalLock() { Globals::Get()->Unlock(); } in ~ScopedGlobalLock()
Dcrazy_linker_globals_unittest.cpp13 TEST(Globals, Get) { in TEST() argument
15 ASSERT_TRUE(Globals::Get()); in TEST()
16 ASSERT_TRUE(Globals::GetLibraries()); in TEST()
17 ASSERT_TRUE(Globals::GetSearchPaths()); in TEST()
18 ASSERT_TRUE(Globals::GetRDebug()); in TEST()
Dcrazy_linker_wrappers.cpp77 LibraryList* lib_list = Globals::GetLibraries(); in WrapDlopen()
83 Globals::GetSearchPaths(), in WrapDlopen()
99 Globals::GetLibraries()->AddLibrary(wrap_lib); in WrapDlopen()
148 LibraryList* lib_list = Globals::GetLibraries(); in WrapDlsym()
169 LibraryList* lib_list = Globals::GetLibraries(); in WrapDladdr()
202 LibraryList* lib_list = Globals::GetLibraries(); in WrapDlclose()
217 LibraryList* list = Globals::GetLibraries(); in WrapDl_unwind_find_exidx()
230 LibraryList* list = Globals::GetLibraries(); in WrapDl_iterate_phdr()
Dcrazy_linker_api.cpp22 using crazy::Globals;
166 crazy::Globals::GetRDebug()->SetDelayedCallbackPoster(&PostFromContext, in ScopedDelayedCallbackPoster()
176 crazy::Globals::GetRDebug()->SetDelayedCallbackPoster(NULL, NULL); in ~ScopedDelayedCallbackPoster()
203 crazy::Globals::GetLibraries()->LoadLibrary(lib_name, in crazy_library_open()
217 crazy::Globals::GetLibraries()->UnloadLibrary(wrap); in crazy_library_open()
234 crazy::Globals::GetLibraries()->LoadLibraryInZipFile( in crazy_library_open_in_zip_file()
249 crazy::Globals::GetLibraries()->UnloadLibrary(wrap); in crazy_library_open_in_zip_file()
333 Globals::GetLibraries()->FindLibraryByName(library_name); in crazy_library_find_by_name()
364 LibraryView* wrap = Globals::GetLibraries()->FindLibraryForAddress(address); in crazy_library_find_from_address()
386 Globals::GetLibraries()->UnloadLibrary(wrap); in crazy_library_close_with_context()
Dcrazy_linker_library_view.cpp32 LibraryList* lib_list = Globals::GetLibraries(); in LookupSymbol()
Dcrazy_linker_library_list.cpp215 Globals::GetRDebug()->DelEntry(&lib->link_map_); in UnloadLibrary()
349 Globals::GetRDebug()->AddEntry(&lib->link_map_); in LoadLibrary()
Dcrazy_linker_shared_library.cpp295 reinterpret_cast<uintptr_t>(Globals::GetRDebug()->GetAddress()); in Load()
357 reinterpret_cast<ELF::Addr>(Globals::GetRDebug()->GetAddress()); in Load()
/external/llvm/lib/CodeGen/
DGlobalMerge.cpp97 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
143 bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals, in doMerge() argument
154 std::stable_sort(Globals.begin(), Globals.end(), in doMerge()
164 assert(Globals.size() > 1); in doMerge()
173 for (size_t i = 0, e = Globals.size(); i != e; ) { in doMerge()
182 Type *Ty = Globals[j]->getType()->getElementType(); in doMerge()
188 Inits.push_back(Globals[j]->getInitializer()); in doMerge()
190 if (Globals[j]->hasExternalLinkage() && !HasExternal) { in doMerge()
192 TheFirstExternal = Globals[j]; in doMerge()
215 GlobalValue::LinkageTypes Linkage = Globals[k]->getLinkage(); in doMerge()
[all …]
/external/chromium_org/chrome/browser/
Dio_thread.h91 struct Globals { struct
114 explicit SystemRequestContextLeakChecker(Globals* globals); argument
118 Globals* const globals_;
121 Globals();
122 ~Globals();
222 Globals* globals(); argument
227 void SetGlobalsForTesting(Globals* globals);
265 const Globals& globals,
293 Globals* globals);
335 Globals* globals);
[all …]
Dio_thread.cc237 ConstructProxyScriptFetcherContext(IOThread::Globals* globals, in ConstructProxyScriptFetcherContext()
267 ConstructSystemRequestContext(IOThread::Globals* globals, in ConstructSystemRequestContext()
415 IOThread::Globals::
417 Globals* globals) in SystemRequestContextLeakChecker()
422 IOThread::Globals::
428 IOThread::Globals::Globals() in Globals() function in IOThread::Globals
437 IOThread::Globals::~Globals() {} in ~Globals()
509 IOThread::Globals* IOThread::globals() { in globals()
514 void IOThread::SetGlobalsForTesting(Globals* globals) { in SetGlobalsForTesting()
557 globals_ = new Globals; in InitAsync()
[all …]
Dio_thread_unittest.cc23 IOThread::Globals* globals) { in ConfigureQuicGlobals()
29 const IOThread::Globals& globals, in InitializeNetworkSessionParamsFromGlobals()
35 IOThread::Globals* globals) { in ConfigureSpdyFromTrial()
56 IOThread::Globals globals_;
/external/nanopb-c/generator/
Dnanopb_generator.py907 class Globals: class
920 for namemask, options in Globals.separate_options:
922 Globals.matched_namemasks.add(namemask)
941 if Globals.verbose_options:
1013 Globals.separate_options = read_options_file(open(optfilename, "rU"))
1015 Globals.separate_options = []
1016 Globals.matched_namemasks = set()
1040 unmatched = [n for n,o in Globals.separate_options if n not in Globals.matched_namemasks]
1044 if not Globals.verbose_options:
1062 Globals.verbose_options = options.verbose
[all …]
/external/clang/test/CodeGen/
D2003-06-26-CFECrash.c8 typedef struct Globals { struct
/external/chromium_org/win8/metro_driver/
Dchrome_app_view.h148 struct Globals { struct
170 extern Globals globals; argument
/external/llvm/test/Transforms/GlobalOpt/
D2010-10-19-WeakOdr.ll3 ; PR8389: Globals with weak_odr linkage type must not be modified
/external/llvm/lib/IR/
DCMakeLists.txt21 Globals.cpp
DAndroid.mk23 Globals.cpp \
/external/chromium_org/chrome/test/base/
Dtesting_io_thread_state.cc84 io_thread_state_->SetGlobalsForTesting(new IOThread::Globals()); in Initialize()
/external/clang/test/CodeGenObjC/
Dobjc2-write-barrier-2.m14 // Globals
/external/chromium_org/chrome/browser/profiles/
Doff_the_record_profile_io_data.cc209 IOThread::Globals* const io_thread_globals = io_thread->globals(); in InitializeInternal()
294 IOThread::Globals* const io_thread_globals = io_thread->globals(); in InitializeExtensionsRequestContext()
/external/llvm/test/Linker/
Dtestlink1.ll64 ; Globals linked from testlink2.
/external/llvm/test/Instrumentation/AddressSanitizer/
Dglobal_metadata.ll6 ; Globals:
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp67 DenseSet<const GlobalVariable *> &Globals) { in DiscoverDependentGlobals() argument
69 Globals.insert(GV); in DiscoverDependentGlobals()
73 DiscoverDependentGlobals(U->getOperand(i), Globals); in DiscoverDependentGlobals()
1196 SmallVector<const GlobalVariable *, 8> Globals; in emitGlobals() local
1203 VisitGlobalVariableForEmission(I, Globals, GVVisited, GVVisiting); in emitGlobals()
1210 for (unsigned i = 0, e = Globals.size(); i != e; ++i) in emitGlobals()
1211 printModuleLevelGV(Globals[i], OS2); in emitGlobals()
/external/chromium_org/chrome/browser/net/
Ddns_probe_browsertest.cc358 IOThread::Globals* globals = io_thread_->globals(); in SetUpOnIOThread()
375 IOThread::Globals* globals = io_thread_->globals(); in CleanUpOnIOThreadAndDeleteHelper()

12