/external/chromium_org/third_party/android_crazy_linker/src/src/ |
D | crazy_linker_globals.cpp | 15 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()
|
D | crazy_linker_globals.h | 19 class Globals { 21 Globals(); 22 ~Globals(); 28 static Globals* Get(); 46 ScopedGlobalLock() { Globals::Get()->Lock(); } in ScopedGlobalLock() 48 ~ScopedGlobalLock() { Globals::Get()->Unlock(); } in ~ScopedGlobalLock()
|
D | crazy_linker_globals_unittest.cpp | 13 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()
|
D | crazy_linker_wrappers.cpp | 77 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()
|
D | crazy_linker_api.cpp | 22 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()
|
D | crazy_linker_library_view.cpp | 32 LibraryList* lib_list = Globals::GetLibraries(); in LookupSymbol()
|
D | crazy_linker_library_list.cpp | 215 Globals::GetRDebug()->DelEntry(&lib->link_map_); in UnloadLibrary() 349 Globals::GetRDebug()->AddEntry(&lib->link_map_); in LoadLibrary()
|
D | crazy_linker_shared_library.cpp | 295 reinterpret_cast<uintptr_t>(Globals::GetRDebug()->GetAddress()); in Load() 357 reinterpret_cast<ELF::Addr>(Globals::GetRDebug()->GetAddress()); in Load()
|
/external/llvm/lib/CodeGen/ |
D | GlobalMerge.cpp | 97 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/ |
D | io_thread.h | 91 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 …]
|
D | io_thread.cc | 237 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 …]
|
D | io_thread_unittest.cc | 23 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/ |
D | nanopb_generator.py | 907 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/ |
D | 2003-06-26-CFECrash.c | 8 typedef struct Globals { struct
|
/external/chromium_org/win8/metro_driver/ |
D | chrome_app_view.h | 148 struct Globals { struct 170 extern Globals globals; argument
|
/external/llvm/test/Transforms/GlobalOpt/ |
D | 2010-10-19-WeakOdr.ll | 3 ; PR8389: Globals with weak_odr linkage type must not be modified
|
/external/llvm/lib/IR/ |
D | CMakeLists.txt | 21 Globals.cpp
|
D | Android.mk | 23 Globals.cpp \
|
/external/chromium_org/chrome/test/base/ |
D | testing_io_thread_state.cc | 84 io_thread_state_->SetGlobalsForTesting(new IOThread::Globals()); in Initialize()
|
/external/clang/test/CodeGenObjC/ |
D | objc2-write-barrier-2.m | 14 // Globals
|
/external/chromium_org/chrome/browser/profiles/ |
D | off_the_record_profile_io_data.cc | 209 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/ |
D | testlink1.ll | 64 ; Globals linked from testlink2.
|
/external/llvm/test/Instrumentation/AddressSanitizer/ |
D | global_metadata.ll | 6 ; Globals:
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 67 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/ |
D | dns_probe_browsertest.cc | 358 IOThread::Globals* globals = io_thread_->globals(); in SetUpOnIOThread() 375 IOThread::Globals* globals = io_thread_->globals(); in CleanUpOnIOThreadAndDeleteHelper()
|