OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nativebuffer
(Results
1 - 25
of
33
) sorted by null
1
2
/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
;
65
*
NativeBuffer
. The
NativeBuffer
returned is only valid for as long as the frame is alive. If
82
// Make sure it is a
NativeBuffer
subclass
83
if (!
NativeBuffer
.class.isAssignableFrom(structClass)) {
85
"
NativeBuffer
!");
89
NativeBuffer
structData = null;
91
structData = (
NativeBuffer
)structClass.newInstance();
246
private native boolean getNativeBuffer(
NativeBuffer
buffer);
/frameworks/native/libs/gui/
CpuConsumer.cpp
70
status_t CpuConsumer::lockNextBuffer(LockedBuffer *
nativeBuffer
) {
73
if (!
nativeBuffer
) return BAD_VALUE;
169
nativeBuffer
->data =
171
nativeBuffer
->width = mSlots[buf].mGraphicBuffer->getWidth();
172
nativeBuffer
->height = mSlots[buf].mGraphicBuffer->getHeight();
173
nativeBuffer
->format = mSlots[buf].mGraphicBuffer->getPixelFormat();
174
nativeBuffer
->stride = (ycbcr.y != NULL) ?
178
nativeBuffer
->crop = b.mCrop;
179
nativeBuffer
->transform = b.mTransform;
180
nativeBuffer
->scalingMode = b.mScalingMode
[
all
...]
/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/base/media/mca/filterfw/jni/
jni_native_buffer.cpp
21
jclass base_class = env->FindClass("android/filterfw/core/
NativeBuffer
");
40
jclass base_class = env->FindClass("android/filterfw/core/
NativeBuffer
");
jni_native_buffer.h
24
* Given a Java
NativeBuffer
instance, get access to the underlying C pointer and its size. The
30
* Attach a given C data buffer and its size to a given allocated Java
NativeBuffer
instance. After
/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/native/include/gui/
CpuConsumer.h
99
status_t lockNextBuffer(LockedBuffer *
nativeBuffer
);
105
status_t unlockBuffer(const LockedBuffer &
nativeBuffer
);
/frameworks/native/include/ui/
FramebufferNativeWindow.h
43
class
NativeBuffer
;
83
sp<
NativeBuffer
> buffers[MAX_NUM_FRAME_BUFFERS];
84
sp<
NativeBuffer
> front;
/hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.h
79
DECLARE_HANDLER(OMXVideoDecoderBase,
NativeBuffer
);
OMXVideoDecoderBase.cpp
[
all
...]
/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"\
/frameworks/rs/
rsAllocation.h
70
ANativeWindowBuffer *
nativeBuffer
;
rsGrallocConsumer.cpp
129
mAlloc->mHal.state.
nativeBuffer
= mAcquiredBuffer.mGraphicBuffer->getNativeBuffer();
rs_hal.h
181
* The new gralloc handle is provided in mHal.state.
nativeBuffer
/prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsAllocation.h
70
ANativeWindowBuffer *
nativeBuffer
;
rs_hal.h
162
* The new gralloc handle is provided in mHal.state.
nativeBuffer
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsAllocation.h
70
ANativeWindowBuffer *
nativeBuffer
;
rs_hal.h
162
* The new gralloc handle is provided in mHal.state.
nativeBuffer
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsAllocation.h
70
ANativeWindowBuffer *
nativeBuffer
;
rs_hal.h
162
* The new gralloc handle is provided in mHal.state.
nativeBuffer
/frameworks/rs/driver/runtime/
rs_structs.h
46
void *
nativeBuffer
;
/frameworks/native/include/media/hardware/
HardwareAPI.h
128
const sp<ANativeWindowBuffer>&
nativeBuffer
;
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
omx_vdec.h
756
struct
nativebuffer
{
struct in class:omx_vdec
761
nativebuffer
native_buffer[MAX_NUM_INPUT_OUTPUT_BUFFERS];
[
all
...]
omx_vdec_hevc.h
679
struct
nativebuffer
{
struct in class:omx_vdec
684
nativebuffer
native_buffer[MAX_NUM_INPUT_OUTPUT_BUFFERS];
[
all
...]
Completed in 382 milliseconds
1
2