Home | History | Annotate | Download | only in chrome_frame

Lines Matching refs:heap_

28   ExecutableHeap() : heap_(NULL) {
32 if (heap_ != NULL) {
33 BOOL ret = ::HeapDestroy(heap_);
34 heap_ = NULL;
39 if (!heap_)
42 DCHECK(heap_);
44 return ::HeapAlloc(heap_, 0, size);
48 DCHECK(heap_ != NULL);
49 ::HeapFree(heap_, 0, ptr);
55 if (heap_ == NULL)
56 heap_ = ::HeapCreate(HEAP_CREATE_ENABLE_EXECUTE, 0, 0);
61 HANDLE heap_;
65 ExecutableHeap heap_;
112 reinterpret_cast<FunctionStub*>(heap_.Allocate(sizeof(FunctionStub)));
140 heap_.Free(stub);