Home | History | Annotate | Download | only in android

Lines Matching defs:Android

5  * Copyright 2014 The Android Open Source Project
21 * \brief Access to Android internals that are not a part of the NDK.
30 namespace Android
133 static android::android_native_base_t* getAndroidNativeBase (android::GraphicBuffer* gb)
136 return pointerToOffset<android::android_native_base_t>(gb, 2 * DE_PTR_SIZE);
152 static deUint32 getNativeBaseMagic (android::android_native_base_t* base)
158 static deUint32 getNativeBaseVersion (android::android_native_base_t* base)
164 static NativeBaseFunctions::incRefFunc getNativeBaseIncRefFunc (android::android_native_base_t* base)
170 static NativeBaseFunctions::decRefFunc getNativeBaseDecRefFunc (android::android_native_base_t* base)
175 static android::GraphicBuffer* createGraphicBuffer (const GraphicBufferFunctions& functions, NativeBaseFunctions& baseFunctions, deUint32 w, deUint32 h, PixelFormat format, deUint32 usage)
185 android::GraphicBuffer* const gb = callConstructor4<android::GraphicBuffer, deUint32, deUint32, PixelFormat, deUint32>(functions.constructor,
192 android::android_native_base_t* const base = getAndroidNativeBase(gb);
198 callDestructor<android::GraphicBuffer>(functions.destructor, gb);
276 } // Android