Home | History | Annotate | Download | only in Core

Lines Matching defs:BCCContext

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() {
56 void BCCContext::addSource(Source &pSource)
59 void BCCContext::removeSource(Source &pSource)
62 llvm::LLVMContext &BCCContext::getLLVMContext()
65 const llvm::LLVMContext &BCCContext::getLLVMContext() const