Home | History | Annotate | Download | only in android

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");
125 static android::android_native_base_t* getAndroidNativeBase (android::GraphicBuffer* gb)
128 return pointerToOffset<android::android_native_base_t>(gb, 2 * DE_PTR_SIZE);
177 android::GraphicBuffer* const gb = callConstructor4<android::GraphicBuffer, deUint32, deUint32, PixelFormat, deUint32>(functions.constructor,
184 android::android_native_base_t* const base = getAndroidNativeBase(gb);
185 status_t ctorStatus = functions.initCheck(gb);
190 callDestructor<android::GraphicBuffer>(functions.destructor, gb);
222 return gb;