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
);
145
private Surface(long
nativeObject
) {
147
setNativeObjectLocked(
nativeObject
);
[
all
...]
SurfaceControl.java
37
private static native void nativeRelease(long
nativeObject
);
38
private static native void nativeDestroy(long
nativeObject
);
51
private static native void nativeSetLayer(long
nativeObject
, int zorder);
52
private static native void nativeSetPosition(long
nativeObject
, float x, float y);
53
private static native void nativeSetSize(long
nativeObject
, int w, int h);
54
private static native void nativeSetTransparentRegionHint(long
nativeObject
, Region region);
55
private static native void nativeSetAlpha(long
nativeObject
, float alpha);
56
private static native void nativeSetMatrix(long
nativeObject
, float dsdx, float dtdx, float dsdy, float dtdy);
57
private static native void nativeSetFlags(long
nativeObject
, int flags, int mask);
58
private static native void nativeSetWindowCrop(long
nativeObject
, int l, int t, int r, int b)
[
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/media/java/android/media/
MediaMuxer.java
85
private static native void nativeRelease(long
nativeObject
);
86
private static native void nativeStart(long
nativeObject
);
87
private static native void nativeStop(long
nativeObject
);
88
private static native int nativeAddTrack(long
nativeObject
, String[] keys,
90
private static native void nativeSetOrientationHint(long
nativeObject
,
92
private static native void nativeSetLocation(long
nativeObject
, int latitude, int longitude);
93
private static native void nativeWriteSampleData(long
nativeObject
,
/frameworks/base/core/jni/
android_view_Surface.cpp
154
static void nativeRelease(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
155
sp<Surface> sur(reinterpret_cast<Surface *>(
nativeObject
));
159
static jboolean nativeIsValid(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
160
sp<Surface> sur(reinterpret_cast<Surface *>(
nativeObject
));
164
static jboolean nativeIsConsumerRunningBehind(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
165
sp<Surface> sur(reinterpret_cast<Surface *>(
nativeObject
));
191
jlong
nativeObject
, jobject canvasObj, jobject dirtyRectObj) {
192
sp<Surface> surface(reinterpret_cast<Surface *>(
nativeObject
));
264
jlong
nativeObject
, jobject canvasObj) {
265
sp<Surface> surface(reinterpret_cast<Surface *>(
nativeObject
));
[
all
...]
android_view_SurfaceControl.cpp
107
static void nativeRelease(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
108
sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(
nativeObject
));
112
static void nativeDestroy(JNIEnv* env, jclass clazz, jlong
nativeObject
) {
113
sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(
nativeObject
));
228
static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong
nativeObject
, jint zorder) {
229
SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(
nativeObject
);
236
static void nativeSetPosition(JNIEnv* env, jclass clazz, jlong
nativeObject
, jfloat x, jfloat y) {
237
SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(
nativeObject
);
244
static void nativeSetSize(JNIEnv* env, jclass clazz, jlong
nativeObject
, jint w, jint h) {
245
SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(
nativeObject
);
[
all
...]
android_view_GraphicBuffer.cpp
266
jlong
nativeObject
= env->GetLongField(obj, gGraphicBufferClassInfo.mNativeObject);
267
GraphicBufferWrapper* wrapper = (GraphicBufferWrapper*)
nativeObject
;
/external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViEAndroidGLES20.java
39
private long
nativeObject
= 0;
319
if(0 != CreateOpenGLNative(
nativeObject
, viewWidth, viewHeight)) {
324
DrawNative(
nativeObject
); // Draw the new frame
335
if(CreateOpenGLNative(
nativeObject
,width,height) == 0)
344
public void RegisterNativeObject(long
nativeObject
) {
346
this.
nativeObject
=
nativeObject
;
355
this.
nativeObject
= 0;
366
private native int CreateOpenGLNative(long
nativeObject
,
368
private native void DrawNative(long
nativeObject
);
[
all
...]
Completed in 5918 milliseconds