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

  /frameworks/compile/libbcc/lib/
BCCContext.cpp 17 #include "bcc/BCCContext.h"
27 static BCCContext *GlobalContext = nullptr;
29 BCCContext *BCCContext::GetOrCreateGlobalContext() {
31 GlobalContext = new (std::nothrow) BCCContext();
33 ALOGE("Out of memory when allocating global BCCContext!");
39 void BCCContext::DestroyGlobalContext() {
44 BCCContext::BCCContext() : mImpl(new BCCContextImpl(*this)) { }
46 BCCContext::~BCCContext()
    [all...]
  /frameworks/compile/libbcc/include/bcc/
BCCContext.h 30 * class BCCContext manages the global data across the libbcc infrastructure.
32 class BCCContext {
36 BCCContext();
37 ~BCCContext();
45 // Global BCCContext
46 static BCCContext *GetOrCreateGlobalContext();

Completed in 4239 milliseconds