Lines Matching defs:gb
49 GraphicBufferFunctions& gb = m_functions.graphicBuffer;
51 setFuncPtr(gb.constructor, m_library, "_ZN7android13GraphicBufferC1Ejjij");
52 setFuncPtr(gb.destructor, m_library, "_ZN7android13GraphicBufferD1Ev");
53 setFuncPtr(gb.getNativeBuffer, m_library, "_ZNK7android13GraphicBuffer15getNativeBufferEv");
54 setFuncPtr(gb.lock, m_library, "_ZN7android13GraphicBuffer4lockEjPPv");
55 setFuncPtr(gb.unlock, m_library, "_ZN7android13GraphicBuffer6unlockEv");
56 setFuncPtr(gb.initCheck, m_library, "_ZNK7android13GraphicBuffer9initCheckEv");
133 static android::android_native_base_t* getAndroidNativeBase (android::GraphicBuffer* gb)
136 return pointerToOffset<android::android_native_base_t>(gb, 2 * DE_PTR_SIZE);
185 android::GraphicBuffer* const gb = callConstructor4<android::GraphicBuffer, deUint32, deUint32, PixelFormat, deUint32>(functions.constructor,
192 android::android_native_base_t* const base = getAndroidNativeBase(gb);
193 status_t ctorStatus = functions.initCheck(gb);
198 callDestructor<android::GraphicBuffer>(functions.destructor, gb);
230 return gb;