HomeSort by relevance Sort by last modified time
    Searched defs:Globals (Results 1 - 16 of 16) sorted by null

  /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.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(); }
  /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.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(); }
  /external/clang/test/CodeGen/
2003-06-26-CFECrash.c 8 typedef struct Globals {
  /external/chromium_org/win8/metro_driver/
chrome_app_view.h 148 struct Globals {
170 extern Globals globals;
chrome_app_view_ash.cc 72 struct Globals {
76 } globals; variable in typeref:struct:Globals
528 globals.previous_state =
931 globals.app_exit->Exit();
940 globals.app_exit->Exit();
    [all...]
  /external/chromium_org/chrome/browser/
io_thread.cc 235 // See IOThread::Globals for details.
237 ConstructProxyScriptFetcherContext(IOThread::Globals* globals,
241 context->set_host_resolver(globals->host_resolver.get());
242 context->set_cert_verifier(globals->cert_verifier.get());
244 globals->transport_security_state.get());
246 globals->cert_transparency_verifier.get());
248 globals->http_auth_handler_factory.get());
249 context->set_proxy_service(globals->proxy_script_fetcher_proxy_service.get());
251 globals->proxy_script_fetcher_http_transaction_factory.get())
509 IOThread::Globals* IOThread::globals() { function in class:IOThread
    [all...]
io_thread.h 91 struct Globals {
114 explicit SystemRequestContextLeakChecker(Globals* globals);
118 Globals* const globals_;
121 Globals();
122 ~Globals();
222 Globals* globals();
224 // Allows overriding Globals in tests where IOThread::Init() and
227 void SetGlobalsForTesting(Globals* globals)
    [all...]
  /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/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 67 DenseSet<const GlobalVariable *> &Globals) {
69 Globals.insert(GV);
73 DiscoverDependentGlobals(U->getOperand(i), Globals);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 11 // taken. If obviously true, it marks read/write globals as constant, deletes
51 STATISTIC(NumMarked , "Number of globals marked constant");
52 STATISTIC(NumUnnamed , "Number of globals marked unnamed_addr");
53 STATISTIC(NumSRA , "Number of aggregate globals broken into scalars");
55 STATISTIC(NumSubstitute,"Number of globals with initializers stored into them");
56 STATISTIC(NumDeleted , "Number of globals deleted");
59 STATISTIC(NumLocalized , "Number of globals localized");
188 // memory pointed to by globals at exit. This is popular because it also
190 // before other threads that are still expecting to use those globals. To
482 Module::GlobalListType &Globals = GV->getParent()->getGlobalList()
    [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 32 /// Holds all the vbtable globals for a given class.
35 SmallVector<llvm::GlobalVariable *, 2> Globals;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 133 // This flag may need to be replaced with -f[no]asan-globals.
134 static cl::opt<bool> ClGlobals("asan-globals",
188 static cl::opt<bool> ClOptGlobals("asan-opt-globals",
189 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
222 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
223 if (!Globals)
225 for (auto MDN : Globals->operands()) {
356 // Redzone used for stack and globals is at least 32 bytes.
    [all...]

Completed in 426 milliseconds