/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;
|
/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...] |
/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...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
NativeObject.java | 41 class NativeObject { // package-private 57 NativeObject(long address) { 66 NativeObject(long address, long offset) { 73 protected NativeObject(int size, boolean pageAligned) { 108 NativeObject subObject(int offset) { 109 return new NativeObject(offset + address); 123 NativeObject getObject(int offset) { 136 return new NativeObject(newAddress); 150 void putObject(int offset, NativeObject ob) {
|
AllocatedNativeObject.java | 35 extends NativeObject
|
AbstractPollSelectorImpl.java | 154 // Grow the NativeObject poll array
|
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/objectal/ |
ALSource.java | 24 import org.robovm.rt.bro.NativeObject;
|
/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,
|
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/ |
IOSInput.java | 42 import org.robovm.rt.bro.NativeObject; 64 HANDLE_OFFSET = VM.getInstanceFieldOffset(VM.getFieldAddress(NativeObject.class.getDeclaredField("handle")));
|
/prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/ |
htmlunit-core-js-2.14-sources.jar | |
htmlunit-core-js-2.14.jar | |
/external/libgdx/backends/gdx-backend-moe/libs/ |
intel-moe-ios.jar | |
/prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/ |
rhino-1.7R3.jar | |
/libcore/ |
openjdk_java_files.mk | [all...] |
/prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-htmlunit-driver/2.42.2/ |
selenium-htmlunit-driver-2.42.2.jar | |