HomeSort by relevance Sort by last modified time
    Searched refs:NativeBuffer (Results 1 - 8 of 8) sorted by null

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeBuffer.java 25 public class NativeBuffer {
36 public NativeBuffer() {
39 public NativeBuffer(int count) {
44 public NativeBuffer mutableCopy() {
45 NativeBuffer result = null;
48 result = (NativeBuffer)myClass.newInstance();
54 throw new RuntimeException("Failed to copy NativeBuffer to mutable instance!");
71 public NativeBuffer retain() {
80 public NativeBuffer release() {
128 private native boolean nativeCopyTo(NativeBuffer buffer)
    [all...]
NativeFrame.java 24 import android.filterfw.core.NativeBuffer;
67 * NativeBuffer. The NativeBuffer returned is only valid for as long as the frame is alive. If
84 // Make sure it is a NativeBuffer subclass
85 if (!NativeBuffer.class.isAssignableFrom(structClass)) {
87 "NativeBuffer!");
91 NativeBuffer structData = null;
93 structData = (NativeBuffer)structClass.newInstance();
248 private native boolean getNativeBuffer(NativeBuffer buffer);
SimpleFrame.java 23 import android.filterfw.core.NativeBuffer;
SerializedFrame.java 23 import android.filterfw.core.NativeBuffer;
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 41 class NativeBuffer;
81 sp<NativeBuffer> buffers[MAX_NUM_FRAME_BUFFERS];
82 sp<NativeBuffer> front;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
ObjectFormat.java 22 import android.filterfw.core.NativeBuffer;
60 if (!NativeBuffer.class.isAssignableFrom(clazz)) {
62 "NativeBuffer subclass! (Received class: " + clazz + ").");
65 return ((NativeBuffer)clazz.newInstance()).getElementSize();
  /frameworks/native/libs/ui/
FramebufferNativeWindow.cpp 44 class NativeBuffer
47 NativeBuffer,
48 LightRefBase<NativeBuffer> >
51 NativeBuffer(int w, int h, int f, int u) : BASE() {
58 friend class LightRefBase<NativeBuffer>;
59 ~NativeBuffer() { }; // this class cannot be overloaded
119 buffers[i] = new NativeBuffer(
280 buffer_handle_t handle = static_cast<NativeBuffer*>(buffer)->handle;
287 self->front = static_cast<NativeBuffer*>(buffer);
  /frameworks/base/media/mca/
structgen.py 49 jclass base_class = (*env)->FindClass(env, "android/filterfw/core/NativeBuffer");
81 import android.filterfw.core.NativeBuffer;
275 return "public class %s extends NativeBuffer {\n\n"\

Completed in 86 milliseconds