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

  /frameworks/compile/libbcc/lib/Core/
BCCContext.cpp 17 #include "bcc/BCCContext.h"
28 static BCCContext *GlobalContext = NULL;
30 BCCContext *BCCContext::GetOrCreateGlobalContext() {
32 GlobalContext = new (std::nothrow) BCCContext();
34 ALOGE("Out of memory when allocating global BCCContext!");
40 void BCCContext::DestroyGlobalContext() {
45 BCCContext::BCCContext() : mImpl(new BCCContextImpl(*this)) { }
47 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 60 milliseconds