Searched refs:transactionObj (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/jni/ |
D | android_view_SurfaceControl.cpp | 330 static void nativeApplyTransaction(JNIEnv* env, jclass clazz, jlong transactionObj, jboolean sync) { in nativeApplyTransaction() argument 331 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj); in nativeApplyTransaction() 336 jlong transactionObj, jlong otherTransactionObj) { in nativeMergeTransaction() argument 337 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj); in nativeMergeTransaction() 343 static void nativeSetAnimationTransaction(JNIEnv* env, jclass clazz, jlong transactionObj) { in nativeSetAnimationTransaction() argument 344 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj); in nativeSetAnimationTransaction() 348 static void nativeSetEarlyWakeup(JNIEnv* env, jclass clazz, jlong transactionObj) { in nativeSetEarlyWakeup() argument 349 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj); in nativeSetEarlyWakeup() 353 static void nativeSetLayer(JNIEnv* env, jclass clazz, jlong transactionObj, in nativeSetLayer() argument 355 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj); in nativeSetLayer() [all …]
|
/frameworks/base/core/java/android/view/ |
D | SurfaceControl.java | 98 private static native void nativeApplyTransaction(long transactionObj, boolean sync); in nativeApplyTransaction() argument 99 private static native void nativeMergeTransaction(long transactionObj, in nativeMergeTransaction() argument 101 private static native void nativeSetAnimationTransaction(long transactionObj); in nativeSetAnimationTransaction() argument 102 private static native void nativeSetEarlyWakeup(long transactionObj); in nativeSetEarlyWakeup() argument 104 private static native void nativeSetLayer(long transactionObj, long nativeObject, int zorder); in nativeSetLayer() argument 105 private static native void nativeSetRelativeLayer(long transactionObj, long nativeObject, in nativeSetRelativeLayer() argument 107 private static native void nativeSetPosition(long transactionObj, long nativeObject, in nativeSetPosition() argument 109 private static native void nativeSetGeometryAppliesWithResize(long transactionObj, in nativeSetGeometryAppliesWithResize() argument 111 private static native void nativeSetSize(long transactionObj, long nativeObject, int w, int h); in nativeSetSize() argument 112 private static native void nativeSetTransparentRegionHint(long transactionObj, in nativeSetTransparentRegionHint() argument [all …]
|