Home
last modified time | relevance | path

Searched refs:jint (Results 1 – 7 of 7) sorted by relevance

/system/teeui/libteeui_jni/include/
Dcom_android_framebufferizer_NativeRenderer.h15 JNIEXPORT jint JNICALL Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo(
23 JNIEXPORT jint JNICALL Java_com_android_framebufferizer_NativeRenderer_renderBuffer(
24 JNIEnv*, jclass, jint, jint, jint, jint, jint, jintArray);
63 JNIEXPORT jint JNICALL Java_com_android_framebufferizer_NativeRenderer_onEvent(JNIEnv*, jclass,
64 jint, jint, jint);
/system/extras/module_ndk_libs/libnativehelper/include_jni/
Djni.h34 typedef int32_t jint; /* signed 32 bits */ typedef
40 typedef jint jsize;
114 jint i;
155 jint (*GetVersion)(JNIEnv *);
172 jint (*Throw)(JNIEnv*, jthrowable);
173 jint (*ThrowNew)(JNIEnv *, jclass, const char *);
179 jint (*PushLocalFrame)(JNIEnv*, jint);
188 jint (*EnsureLocalCapacity)(JNIEnv*, jint);
214 jint (*CallIntMethod)(JNIEnv*, jobject, jmethodID, ...);
215 jint (*CallIntMethodV)(JNIEnv*, jobject, jmethodID, va_list);
[all …]
/system/teeui/libteeui_jni/
Dlibteeui_jni.cpp31 using element_type = jint;
36 static constexpr void (JNIEnv::*const releaseArrayElements)(array_type, element_type*, jint) =
47 static constexpr void (JNIEnv::*const releaseArrayElements)(array_type, element_type*, jint) =
102 const jint& operator[](size_t offset) const { return buffer_[offset]; } in operator []()
134 extern "C" JNIEXPORT jint JNICALL Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo( in Java_com_android_framebufferizer_NativeRenderer_setDeviceInfo()
168 extern "C" JNIEXPORT jint JNICALL Java_com_android_framebufferizer_NativeRenderer_renderBuffer( in Java_com_android_framebufferizer_NativeRenderer_renderBuffer()
169 JNIEnv* env, jclass, jint x, jint y, jint width, jint height, jint lineStride, in Java_com_android_framebufferizer_NativeRenderer_renderBuffer()
249 extern "C" JNIEXPORT jint JNICALL Java_com_android_framebufferizer_NativeRenderer_onEvent( in Java_com_android_framebufferizer_NativeRenderer_onEvent()
250 JNIEnv*, jclass, jint x, jint y, jint event) { in Java_com_android_framebufferizer_NativeRenderer_onEvent()
252 return (jint)sCurrentExample->onEvent((uint32_t)x, (uint32_t)y, (uint32_t)event); in Java_com_android_framebufferizer_NativeRenderer_onEvent()
/system/incremental_delivery/libdataloader/include/
Ddataloader_ndk.h139 bool DataLoaderService_OnCreate(JNIEnv* env, jobject service, jint storageId, jobject control,
141 bool DataLoaderService_OnStart(JNIEnv* env, jint storageId);
142 bool DataLoaderService_OnStop(JNIEnv* env, jint storageId);
143 bool DataLoaderService_OnDestroy(JNIEnv* env, jint storageId);
145 bool DataLoaderService_OnPrepareImage(JNIEnv* env, jint storageId, jobjectArray addedFiles,
/system/incremental_delivery/libdataloader/
DDataLoaderConnector.cpp48 jint DATA_LOADER_CREATED;
49 jint DATA_LOADER_DESTROYED;
50 jint DATA_LOADER_STARTED;
51 jint DATA_LOADER_STOPPED;
52 jint DATA_LOADER_IMAGE_READY;
53 jint DATA_LOADER_IMAGE_NOT_READY;
54 jint DATA_LOADER_UNAVAILABLE;
55 jint DATA_LOADER_UNRECOVERABLE;
57 jint DATA_LOADER_TYPE_NONE;
58 jint DATA_LOADER_TYPE_STREAMING;
[all …]
DJNIHelpers.h56 static inline jint GetStaticIntFieldValueOrDie(JNIEnv* env, jclass clazz, const char* fieldName) { in GetStaticIntFieldValueOrDie()
DManagedDataLoader.cpp153 env->NewObject(jni.arrayList, jni.arrayListCtor, static_cast<jint>(files.size())); in toJavaArrayList()