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