HomeSort by relevance Sort by last modified time
    Searched refs:Globals (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_globals.cpp 15 Globals* g_globals = NULL;
18 void CreateGlobalsInstance() { g_globals = new Globals(); }
22 Globals::Globals() : search_paths_(), rdebug_() {
27 Globals::~Globals() { pthread_mutex_destroy(&lock_); }
29 Globals* Globals::Get() {
crazy_linker_globals_unittest.cpp 13 TEST(Globals, Get) {
15 ASSERT_TRUE(Globals::Get());
16 ASSERT_TRUE(Globals::GetLibraries());
17 ASSERT_TRUE(Globals::GetSearchPaths());
18 ASSERT_TRUE(Globals::GetRDebug());
crazy_linker_globals.h 15 // All crazy linker globals are declared in this header.
19 class Globals {
21 Globals();
22 ~Globals();
28 static Globals* Get();
43 // Helper class to access the globals with scoped locking.
46 ScopedGlobalLock() { Globals::Get()->Lock(); }
48 ~ScopedGlobalLock() { Globals::Get()->Unlock(); }
crazy_linker_wrappers.cpp 77 LibraryList* lib_list = Globals::GetLibraries();
83 Globals::GetSearchPaths(),
99 Globals::GetLibraries()->AddLibrary(wrap_lib);
148 LibraryList* lib_list = Globals::GetLibraries();
169 LibraryList* lib_list = Globals::GetLibraries();
202 LibraryList* lib_list = Globals::GetLibraries();
217 LibraryList* list = Globals::GetLibraries();
230 LibraryList* list = Globals::GetLibraries();
crazy_linker_library_view.cpp 32 LibraryList* lib_list = Globals::GetLibraries();
crazy_linker_api.cpp 22 using crazy::Globals;
166 crazy::Globals::GetRDebug()->SetDelayedCallbackPoster(&PostFromContext,
176 crazy::Globals::GetRDebug()->SetDelayedCallbackPoster(NULL, NULL);
203 crazy::Globals::GetLibraries()->LoadLibrary(lib_name,
217 crazy::Globals::GetLibraries()->UnloadLibrary(wrap);
301 Globals::GetLibraries()->FindLibraryByName(library_name);
332 LibraryView* wrap = Globals::GetLibraries()->FindLibraryForAddress(address);
354 Globals::GetLibraries()->UnloadLibrary(wrap);
crazy_linker_library_list.cpp 213 Globals::GetRDebug()->DelEntry(&lib->link_map_);
347 Globals::GetRDebug()->AddEntry(&lib->link_map_);
crazy_linker_shared_library.cpp 223 reinterpret_cast<uintptr_t>(Globals::GetRDebug()->GetAddress());
275 reinterpret_cast<ELF::Addr>(Globals::GetRDebug()->GetAddress());
  /ndk/sources/android/crazy_linker/src/
crazy_linker_globals.cpp 15 Globals* g_globals = NULL;
18 void CreateGlobalsInstance() { g_globals = new Globals(); }
22 Globals::Globals() : search_paths_(), rdebug_() {
27 Globals::~Globals() { pthread_mutex_destroy(&lock_); }
29 Globals* Globals::Get() {
crazy_linker_globals_unittest.cpp 13 TEST(Globals, Get) {
15 ASSERT_TRUE(Globals::Get());
16 ASSERT_TRUE(Globals::GetLibraries());
17 ASSERT_TRUE(Globals::GetSearchPaths());
18 ASSERT_TRUE(Globals::GetRDebug());
crazy_linker_globals.h 15 // All crazy linker globals are declared in this header.
19 class Globals {
21 Globals();
22 ~Globals();
28 static Globals* Get();
43 // Helper class to access the globals with scoped locking.
46 ScopedGlobalLock() { Globals::Get()->Lock(); }
48 ~ScopedGlobalLock() { Globals::Get()->Unlock(); }
crazy_linker_wrappers.cpp 77 LibraryList* lib_list = Globals::GetLibraries();
83 Globals::GetSearchPaths(),
99 Globals::GetLibraries()->AddLibrary(wrap_lib);
148 LibraryList* lib_list = Globals::GetLibraries();
169 LibraryList* lib_list = Globals::GetLibraries();
202 LibraryList* lib_list = Globals::GetLibraries();
217 LibraryList* list = Globals::GetLibraries();
230 LibraryList* list = Globals::GetLibraries();
crazy_linker_library_view.cpp 32 LibraryList* lib_list = Globals::GetLibraries();
crazy_linker_api.cpp 22 using crazy::Globals;
166 crazy::Globals::GetRDebug()->SetDelayedCallbackPoster(&PostFromContext,
176 crazy::Globals::GetRDebug()->SetDelayedCallbackPoster(NULL, NULL);
203 crazy::Globals::GetLibraries()->LoadLibrary(lib_name,
217 crazy::Globals::GetLibraries()->UnloadLibrary(wrap);
301 Globals::GetLibraries()->FindLibraryByName(library_name);
332 LibraryView* wrap = Globals::GetLibraries()->FindLibraryForAddress(address);
354 Globals::GetLibraries()->UnloadLibrary(wrap);
  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 8 typedef struct Globals {
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 1 //===-- GlobalMerge.cpp - Internal globals merging -----------------------===//
9 // This pass merges globals with internal linkage into one. This way all the
10 // globals which were merged into a biggest one can be addressed using offsets
13 // when many globals are involved.
92 STATISTIC(NumMerged , "Number of globals merged");
97 bool doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
129 return "Merge internal globals";
143 bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals,
154 std::stable_sort(Globals.begin(), Globals.end()
    [all...]
  /external/chromium_org/chrome/browser/
io_thread.h 80 struct Globals {
103 explicit SystemRequestContextLeakChecker(Globals* globals);
107 Globals* const globals_;
110 Globals();
111 ~Globals();
202 Globals* globals();
204 // Allows overriding Globals in tests where IOThread::Init() and
207 void SetGlobalsForTesting(Globals* globals)
    [all...]
io_thread.cc 221 // See IOThread::Globals for details.
223 ConstructProxyScriptFetcherContext(IOThread::Globals* globals,
227 context->set_host_resolver(globals->host_resolver.get());
228 context->set_cert_verifier(globals->cert_verifier.get());
230 globals->transport_security_state.get());
232 globals->cert_transparency_verifier.get());
234 globals->http_auth_handler_factory.get());
235 context->set_proxy_service(globals->proxy_script_fetcher_proxy_service.get());
237 globals->proxy_script_fetcher_http_transaction_factory.get())
480 IOThread::Globals* IOThread::globals() { function in class:IOThread
    [all...]
  /external/chromium_org/win8/metro_driver/
chrome_app_view.h 148 struct Globals {
170 extern Globals globals;
  /external/llvm/lib/IR/
Android.mk 23 Globals.cpp \
  /external/chromium_org/chrome/test/base/
testing_io_thread_state.cc 84 io_thread_state_->SetGlobalsForTesting(new IOThread::Globals());
92 delete io_thread_state_->globals();
  /external/chromium_org/tools/gyp/pylib/gyp/
easy_xml_test.py 70 '<PropertyGroup Label="Globals">'
86 ['PropertyGroup', {'Label': 'Globals'},
  /external/nanopb-c/generator/
nanopb_generator.py     [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 225 static class Globals extends IWallpaperManagerCallback.Stub {
232 Globals(Looper looper) {
333 private static Globals sGlobals;
338 sGlobals = new Globals(looper);
    [all...]
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_io_data.cc 191 IOThread::Globals* const io_thread_globals = io_thread->globals();
279 IOThread::Globals* const io_thread_globals = io_thread->globals();

Completed in 901 milliseconds

1 2 3