Searched defs:BCCContext (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/libbcc/include/bcc/
H A DBCCContext.h30 * class BCCContext manages the global data across the libbcc infrastructure.
32 class BCCContext { class in namespace:bcc
36 BCCContext();
37 ~BCCContext();
45 // Global BCCContext
46 static BCCContext *GetOrCreateGlobalContext();
/frameworks/compile/libbcc/lib/Core/
H A DBCCContext.cpp17 #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)) { } function in class:BCCContext
47 BCCContext
[all...]

Completed in 80 milliseconds