OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nativeObject
(Results
1 - 9
of
9
) sorted by null
/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
...]
Surface.java
44
private static native long nativeLockCanvas(long
nativeObject
, Canvas canvas, Rect dirty)
46
private static native void nativeUnlockCanvasAndPost(long
nativeObject
, Canvas canvas);
48
private static native void nativeRelease(long
nativeObject
);
49
private static native boolean nativeIsValid(long
nativeObject
);
50
private static native boolean nativeIsConsumerRunningBehind(long
nativeObject
);
51
private static native long nativeReadFromParcel(long
nativeObject
, Parcel source);
52
private static native void nativeWriteToParcel(long
nativeObject
, Parcel dest);
54
private static native void nativeAllocateBuffers(long
nativeObject
);
56
private static native int nativeGetWidth(long
nativeObject
);
57
private static native int nativeGetHeight(long
nativeObject
);
[
all
...]
SurfaceControl.java
37
private static native void nativeRelease(long
nativeObject
);
38
private static native void nativeDestroy(long
nativeObject
);
39
private static native void nativeDisconnect(long
nativeObject
);
52
private static native void nativeSetLayer(long
nativeObject
, int zorder);
53
private static native void nativeSetPosition(long
nativeObject
, float x, float y);
54
private static native void nativeSetGeometryAppliesWithResize(long
nativeObject
);
55
private static native void nativeSetSize(long
nativeObject
, int w, int h);
56
private static native void nativeSetTransparentRegionHint(long
nativeObject
, Region region);
57
private static native void nativeSetAlpha(long
nativeObject
, float alpha);
58
private static native void nativeSetMatrix(long
nativeObject
, float dsdx, float dtdx, float dsdy, float dtdy)
[
all
...]
/frameworks/base/media/jni/
android_media_MediaMuxer.cpp
44
JNIEnv *env, jclass /* clazz */, jlong
nativeObject
, jobjectArray keys,
46
sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(
nativeObject
));
74
JNIEnv *env, jclass /* clazz */, jlong
nativeObject
, jint trackIndex,
76
sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(
nativeObject
));
149
JNIEnv *env, jclass /* clazz */, jlong
nativeObject
, jint degrees) {
150
sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(
nativeObject
));
167
JNIEnv *env, jclass /* clazz */, jlong
nativeObject
, jint latitude, jint longitude) {
168
MediaMuxer* muxer = reinterpret_cast<MediaMuxer *>(
nativeObject
);
179
jlong
nativeObject
) {
180
sp<MediaMuxer> muxer(reinterpret_cast<MediaMuxer *>(
nativeObject
));
[
all
...]
/frameworks/base/core/jni/
android_view_SurfaceControl.cpp
108
static void nativeRelease(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
109
sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(
nativeObject
));
113
static void nativeDestroy(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
114
sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(
nativeObject
));
119
static void nativeDisconnect(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
120
SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(
nativeObject
);
235
static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong
nativeObject
, jint zorder) {
236
SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(
nativeObject
);
243
static void nativeSetPosition(JNIEnv* env, jclass clazz, jlong
nativeObject
, jfloat x, jfloat y) {
244
SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(
nativeObject
);
[
all
...]
android_view_Surface.cpp
255
static void nativeRelease(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
256
sp<Surface> sur(reinterpret_cast<Surface *>(
nativeObject
));
260
static jboolean nativeIsValid(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
261
sp<Surface> sur(reinterpret_cast<Surface *>(
nativeObject
));
265
static jboolean nativeIsConsumerRunningBehind(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
266
sp<Surface> sur(reinterpret_cast<Surface *>(
nativeObject
));
292
jlong
nativeObject
, jobject canvasObj, jobject dirtyRectObj) {
293
sp<Surface> surface(reinterpret_cast<Surface *>(
nativeObject
));
361
jlong
nativeObject
, jobject canvasObj) {
362
sp<Surface> surface(reinterpret_cast<Surface *>(
nativeObject
));
[
all
...]
android_view_GraphicBuffer.cpp
255
jlong
nativeObject
= env->GetLongField(obj, gGraphicBufferClassInfo.mNativeObject);
256
GraphicBufferWrapper* wrapper = (GraphicBufferWrapper*)
nativeObject
;
/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
...]
/frameworks/base/media/java/android/media/
MediaMuxer.java
99
private static native void nativeRelease(long
nativeObject
);
100
private static native void nativeStart(long
nativeObject
);
101
private static native void nativeStop(long
nativeObject
);
103
long
nativeObject
, @NonNull String[] keys, @NonNull Object[] values);
105
long
nativeObject
, int degrees);
106
private static native void nativeSetLocation(long
nativeObject
, int latitude, int longitude);
108
long
nativeObject
, int trackIndex, @NonNull ByteBuffer byteBuf,
Completed in 458 milliseconds