/packages/inputmethods/OpenWnn/libs/libwnnDictionary/ |
jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni.h | 70 JNIEXPORT jlong JNICALL Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_createWnnWork 79 (JNIEnv *, jclass, jlong); 87 (JNIEnv *, jclass, jlong); 95 (JNIEnv *, jclass, jlong, jint, jint, jint); 103 (JNIEnv *, jclass, jlong, jint, jint, jstring); 111 (JNIEnv *, jclass, jlong, jint); 119 (JNIEnv *, jclass, jlong); 127 (JNIEnv *, jclass, jlong); 135 (JNIEnv *, jclass, jlong); 143 (JNIEnv *, jclass, jlong); [all...] |
/external/webkit/WebCore/bridge/jni/ |
jni_jsobject.h | 38 #define ptr_to_jlong(a) ((jlong)(uintptr_t)(a)) 67 jlong nativeHandle; 79 JavaJSObject(jlong nativeHandle); 81 static jlong createNative(jlong nativeHandle); 115 jlong KJS_JSCreateNativeJSObject(JNIEnv*, jclass, jstring jurl, jlong nativeHandle, jboolean ctx); 116 void KJS_JSObject_JSFinalize(JNIEnv*, jclass, jlong nativeJSObject); 117 jobject KJS_JSObject_JSObjectCall(JNIEnv*, jclass, jlong nativeJSObject, jstring jurl, jstring methodName, jobjectArray args, jboolean ctx); 118 jobject KJS_JSObject_JSObjectEval(JNIEnv*, jclass, jlong nativeJSObject, jstring jurl, jstring jscript, jboolean ctx) [all...] |
/libcore/luni/src/main/native/ |
java_util_zip_CRC32.cpp | 26 static jlong CRC32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) { 31 jlong result = crc32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len); 35 static jlong CRC32_updateByteImpl(JNIEnv*, jobject, jbyte val, jlong crc) {
|
java_lang_Double.cpp | 32 static const jlong NaN = 0x7ff8000000000000ULL; 34 static jlong Double_doubleToLongBits(JNIEnv*, jclass, jdouble val) { 41 static jlong Double_doubleToRawLongBits(JNIEnv*, jclass, jdouble val) { 47 static jdouble Double_longBitsToDouble(JNIEnv*, jclass, jlong val) {
|
java_util_zip_Adler32.cpp | 26 static jlong Adler32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) { 34 static jlong Adler32_updateByteImpl(JNIEnv*, jobject, jint val, jlong crc) {
|
NativeBidi.cpp | 59 static BiDiData* biDiData(jlong ptr) { 63 static UBiDi* uBiDi(jlong ptr) { 67 static jlong NativeBidi_ubidi_open(JNIEnv*, jclass) { 71 static void NativeBidi_ubidi_close(JNIEnv*, jclass, jlong ptr) { 75 static void NativeBidi_ubidi_setPara(JNIEnv* env, jclass, jlong ptr, jcharArray text, jint length, jint paraLevel, jbyteArray newEmbeddingLevels) { 94 static jlong NativeBidi_ubidi_setLine(JNIEnv* env, jclass, jlong ptr, jint start, jint limit) { 106 static jint NativeBidi_ubidi_getDirection(JNIEnv*, jclass, jlong ptr) { 110 static jint NativeBidi_ubidi_getLength(JNIEnv*, jclass, jlong ptr) { 114 static jbyte NativeBidi_ubidi_getParaLevel(JNIEnv*, jclass, jlong ptr) [all...] |
java_util_zip_Inflater.cpp | 32 static jlong Inflater_createStream(JNIEnv* env, jobject, jboolean noHeader) { 57 static void Inflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong handle) { 61 static jint Inflater_setFileInputImpl(JNIEnv* env, jobject, jobject javaFileDescriptor, jlong off, jint len, jlong handle) { 97 static jint Inflater_inflateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong handle) { 140 static jint Inflater_getAdlerImpl(JNIEnv*, jobject, jlong handle) { 144 static void Inflater_endImpl(JNIEnv*, jobject, jlong handle) { 150 static void Inflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlong handle) { 154 static void Inflater_resetImpl(JNIEnv* env, jobject, jlong handle) { 161 static jlong Inflater_getTotalOutImpl(JNIEnv*, jobject, jlong handle) [all...] |
java_util_zip_Deflater.cpp | 29 static void Deflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlong handle) { 33 static jlong Deflater_getTotalInImpl(JNIEnv*, jobject, jlong handle) { 37 static jlong Deflater_getTotalOutImpl(JNIEnv*, jobject, jlong handle) { 41 static jint Deflater_getAdlerImpl(JNIEnv*, jobject, jlong handle) { 46 static jlong Deflater_createStream(JNIEnv * env, jobject, jint level, jint strategy, jboolean noHeader) { 71 static void Deflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong handle) { 75 static jint Deflater_deflateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong handle, int flushParm) { 106 static void Deflater_endImpl(JNIEnv*, jobject, jlong handle) [all...] |
org_apache_harmony_luni_platform_OSFileSystem.cpp | 107 // Checks whether we can safely treat the given jlong as an off_t without 110 static bool offsetTooLarge(JNIEnv* env, jlong longOffset) { 111 if (sizeof(off_t) >= sizeof(jlong)) { 113 // smaller than jlong. off_t is signed, so we don't need to 131 static jlong translateLockLength(jlong length) { 139 static struct flock flockFromStartAndLength(jlong start, jlong length) { 151 jlong start, jlong length, jint typeFlag, jboolean waitFlag) [all...] |
org_apache_harmony_luni_platform_OSMemory.cpp | 44 gIDCache.method_trackExternalAllocation, static_cast<jlong>(size)); 52 void* block = malloc(size + sizeof(jlong)); 62 jlong* result = reinterpret_cast<jlong*>(block); 68 jlong* p = reinterpret_cast<jlong*>(static_cast<uintptr_t>(address)); 69 jlong size = *--p; 75 static void OSMemory_memset(JNIEnv*, jclass, jint dstAddress, jbyte value, jlong length) { 79 static void OSMemory_memmove(JNIEnv*, jclass, jint dstAddress, jint srcAddress, jlong length) { 232 static jlong OSMemory_getLong(JNIEnv*, jclass, jint srcAddress) [all...] |
valueOf.h | 25 jobject longValueOf(JNIEnv* env, jlong l);
|
/frameworks/base/core/jni/ |
android_os_SystemClock.cpp | 39 jobject clazz, jlong millis) 47 static jlong android_os_SystemClock_uptimeMillis(JNIEnv* env, 50 return (jlong)uptimeMillis(); 56 static jlong android_os_SystemClock_elapsedRealtime(JNIEnv* env, 59 return (jlong)elapsedRealtime(); 65 static jlong android_os_SystemClock_currentThreadTimeMillis(JNIEnv* env,
|
android_net_TrafficStats.cpp | 34 static jlong readNumber(char const* filename) { 59 static jlong tryBoth(char const* a, char const* b) { 60 jlong num = readNumber(a); 66 static jlong readTotal(char const* suffix) { 76 jlong total = -1; 82 jlong num = readNumber(filename); 98 static jlong getMobileTxPackets(JNIEnv* env, jobject clazz) { 104 static jlong getMobileRxPackets(JNIEnv* env, jobject clazz) { 110 static jlong getMobileTxBytes(JNIEnv* env, jobject clazz) { 116 static jlong getMobileRxBytes(JNIEnv* env, jobject clazz) [all...] |
android_database_SQLiteDebug.cpp | 56 static jlong getHeapSize(JNIEnv *env, jobject clazz) 61 return (jlong) info.usmblks; 74 static jlong getHeapAllocatedSize(JNIEnv *env, jobject clazz) 78 return (jlong) info.uordblks; 84 static jlong getHeapFreeSize(JNIEnv *env, jobject clazz) 88 return (jlong) info.fordblks;
|
/external/clearsilver/java-jni/ |
j_neo_util.c | 73 JNIEXPORT jlong JNICALL Java_org_clearsilver_HDF__1init( 82 return (jlong) hdf; 86 JNIEnv *env, jclass objClass, jlong hdf_obj_ptr) { 92 JNIEnv *env, jclass objClass, jlong hdf_obj_ptr, jstring j_hdfname, 112 JNIEnv *env, jclass objClass, jlong hdf_obj_ptr, jstring j_hdfname, 143 jlong hdf_obj_ptr, jstring j_hdfname, jstring j_value) { 174 jlong hdf_obj_ptr, jstring j_hdfname) { 196 jlong hdf_obj_ptr, jstring j_hdf_name_src, jstring j_hdf_name_dest) { 227 jlong hdf_obj_ptr) { 283 JNIEnv *env, jobject objClass, jlong hdf_obj_ptr, jstring j_filename [all...] |
j_neo_cs.c | 33 JNIEXPORT jlong JNICALL Java_org_clearsilver_CS__1init 34 (JNIEnv *env, jobject obj, jlong hdf_obj_ptr) { 49 return (jlong) cs; 53 (JNIEnv *env, jclass objClass, jlong cs_obj_ptr) { 60 jobject objCS, jlong cs_obj_ptr, jstring j_filename, jboolean use_cb) { 93 (JNIEnv *env, jclass objClass, jlong cs_obj_ptr, 126 (JNIEnv *env, jclass objClass, jlong cs_obj_ptr) { 176 (JNIEnv *env, jobject objclass, jlong cs_obj_ptr, jlong hdf_obj_ptr) {
|
/dalvik/libnativehelper/include/nativehelper/ |
jni.h | 39 typedef int64_t jlong; /* signed 64 bits */ typedef 48 typedef long long jlong; /* signed 64 bits */ typedef 129 jlong j; 231 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 232 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 233 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 280 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 282 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 284 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 313 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/development/ndk/platforms/android-3/include/ |
jni.h | 24 typedef int64_t jlong; /* signed 64 bits */ typedef 33 typedef long long jlong; /* signed 64 bits */ typedef 114 jlong j; 216 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 217 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 218 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 265 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 267 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 269 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 298 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
jni.h | 24 typedef int64_t jlong; /* signed 64 bits */ typedef 33 typedef long long jlong; /* signed 64 bits */ typedef 114 jlong j; 216 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 217 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 218 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 265 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 267 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 269 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 298 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
jni.h | 24 typedef int64_t jlong; /* signed 64 bits */ typedef 33 typedef long long jlong; /* signed 64 bits */ typedef 114 jlong j; 216 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 217 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 218 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 265 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 267 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 269 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 298 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/ |
jni.h | 24 typedef int64_t jlong; /* signed 64 bits */ typedef 33 typedef long long jlong; /* signed 64 bits */ typedef 114 jlong j; 216 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 217 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 218 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 265 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 267 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 269 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 298 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
jni.h | 24 typedef int64_t jlong; /* signed 64 bits */ typedef 33 typedef long long jlong; /* signed 64 bits */ typedef 114 jlong j; 216 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 217 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 218 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 265 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 267 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 269 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 298 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/ |
jni.h | 24 typedef int64_t jlong; /* signed 64 bits */ typedef 33 typedef long long jlong; /* signed 64 bits */ typedef 114 jlong j; 216 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 217 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 218 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 265 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 267 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 269 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 298 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
jni.h | 24 typedef int64_t jlong; /* signed 64 bits */ typedef 33 typedef long long jlong; /* signed 64 bits */ typedef 114 jlong j; 216 jlong (*CallLongMethod)(JNIEnv*, jobject, jmethodID, ...); 217 jlong (*CallLongMethodV)(JNIEnv*, jobject, jmethodID, va_list); 218 jlong (*CallLongMethodA)(JNIEnv*, jobject, jmethodID, jvalue*); 265 jlong (*CallNonvirtualLongMethod)(JNIEnv*, jobject, jclass, 267 jlong (*CallNonvirtualLongMethodV)(JNIEnv*, jobject, jclass, 269 jlong (*CallNonvirtualLongMethodA)(JNIEnv*, jobject, jclass, 298 jlong (*GetLongField)(JNIEnv*, jobject, jfieldID) [all...] |
/external/webkit/WebCore/platform/android/ |
GeolocationServiceBridge.h | 51 static void newLocationAvailable(JNIEnv *env, jclass, jlong nativeObject, jobject location); 52 static void newErrorAvailable(JNIEnv *env, jclass, jlong nativeObject, jstring message);
|