HomeSort by relevance Sort by last modified time
    Searched defs:nativeObject (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/jni/
android_view_GraphicBuffer.cpp 255 jlong nativeObject = env->GetLongField(obj, gGraphicBufferClassInfo.mNativeObject);
256 GraphicBufferWrapper* wrapper = (GraphicBufferWrapper*) nativeObject;
  /frameworks/base/core/java/android/view/
GraphicBuffer.java 80 long nativeObject = nCreateGraphicBuffer(width, height, format, usage);
81 if (nativeObject != 0) {
82 return new GraphicBuffer(width, height, format, usage, nativeObject);
90 private GraphicBuffer(int width, int height, int format, int usage, long nativeObject) {
95 mNativeObject = nativeObject;
274 long nativeObject = nReadGraphicBufferFromParcel(in);
275 if (nativeObject != 0) {
276 return new GraphicBuffer(width, height, format, usage, nativeObject);
287 private static native void nDestroyGraphicBuffer(long nativeObject);
288 private static native void nWriteGraphicBufferToParcel(long nativeObject, Parcel dest)
    [all...]
  /external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViEAndroidGLES20.java 40 private long nativeObject = 0;
320 if(0 != CreateOpenGLNative(nativeObject, viewWidth, viewHeight)) {
325 DrawNative(nativeObject); // Draw the new frame
336 if(CreateOpenGLNative(nativeObject,width,height) == 0)
345 public void RegisterNativeObject(long nativeObject) {
347 this.nativeObject = nativeObject;
356 this.nativeObject = 0;
367 private native int CreateOpenGLNative(long nativeObject,
369 private native void DrawNative(long nativeObject);
    [all...]

Completed in 68 milliseconds