/libcore/luni/src/main/native/ |
D | JniConstants.h | 32 static jclass GetBooleanClass(JNIEnv* env); 33 static jclass GetDoubleClass(JNIEnv* env); 34 static jclass GetErrnoExceptionClass(JNIEnv* env); 35 static jclass GetFileDescriptorClass(JNIEnv* env); 36 static jclass GetGaiExceptionClass(JNIEnv* env); 37 static jclass GetInet6AddressClass(JNIEnv* env); 38 static jclass GetInet6AddressHolderClass(JNIEnv* env); 39 static jclass GetInetAddressClass(JNIEnv* env); 40 static jclass GetInetAddressHolderClass(JNIEnv* env); 41 static jclass GetInetSocketAddressClass(JNIEnv* env); [all …]
|
D | JniConstants.cpp | 30 jclass findClass(JNIEnv* env, const char* name) { in findClass() 31 ScopedLocalRef<jclass> localClass(env, env->FindClass(name)); in findClass() 32 jclass result = reinterpret_cast<jclass>(env->NewGlobalRef(localClass.get())); in findClass() 47 jclass booleanClass; 48 jclass doubleClass; 49 jclass errnoExceptionClass; 50 jclass fileDescriptorClass; 51 jclass gaiExceptionClass; 52 jclass inet6AddressClass; 53 jclass inet6AddressHolderClass; [all …]
|
D | java_math_NativeBN.cpp | 98 static jlong NativeBN_BN_new(JNIEnv* env, jclass) { in NativeBN_BN_new() argument 106 static jlong NativeBN_getNativeFinalizer(JNIEnv*, jclass) { in NativeBN_getNativeFinalizer() argument 110 static void NativeBN_BN_free(JNIEnv* env, jclass, jlong a) { in NativeBN_BN_free() argument 115 static int NativeBN_BN_cmp(JNIEnv* env, jclass, jlong a, jlong b) { in NativeBN_BN_cmp() argument 120 static void NativeBN_BN_copy(JNIEnv* env, jclass, jlong to, jlong from) { in NativeBN_BN_copy() argument 127 static void NativeBN_putULongInt(JNIEnv* env, jclass, jlong a0, jlong java_dw, jboolean neg) { in NativeBN_putULongInt() argument 141 static void NativeBN_putLongInt(JNIEnv* env, jclass cls, jlong a, jlong dw) { in NativeBN_putLongInt() 149 static int NativeBN_BN_dec2bn(JNIEnv* env, jclass, jlong a0, jstring str) { in NativeBN_BN_dec2bn() argument 163 static int NativeBN_BN_hex2bn(JNIEnv* env, jclass, jlong a0, jstring str) { in NativeBN_BN_hex2bn() argument 177 static void NativeBN_BN_bin2bn(JNIEnv* env, jclass, jbyteArray arr, int len, jboolean neg, jlong re… in NativeBN_BN_bin2bn() argument [all …]
|
D | libcore_icu_ICU.cpp | 40 static jstring ICU_getScript(JNIEnv* env, jclass, jstring javaLocaleName) { in ICU_getScript() argument 57 static jstring ICU_getISO3Country(JNIEnv* env, jclass, jstring javaLanguageTag) { in ICU_getISO3Country() argument 65 static jstring ICU_getISO3Language(JNIEnv* env, jclass, jstring javaLanguageTag) { in ICU_getISO3Language() argument 73 static jobjectArray ICU_getISOCountriesNative(JNIEnv* env, jclass) { in ICU_getISOCountriesNative() argument 77 static jobjectArray ICU_getISOLanguagesNative(JNIEnv* env, jclass) { in ICU_getISOLanguagesNative() argument 81 static jobjectArray ICU_getAvailableLocalesNative(JNIEnv* env, jclass) { in ICU_getAvailableLocalesNative() argument 85 static void ICU_setDefaultLocale(JNIEnv* env, jclass, jstring javaLanguageTag) { in ICU_setDefaultLocale() argument 96 static jstring ICU_getDefaultLocale(JNIEnv* env, jclass) { in ICU_getDefaultLocale() argument
|
D | libcore_io_Memory.cpp | 95 static void Memory_memmove(JNIEnv* env, jclass, jobject dstObject, jint dstOffset, jobject srcObjec… in Memory_memmove() argument 107 static jbyte Memory_peekByte(JNIEnv*, jclass, jlong srcAddress) { in Memory_peekByte() argument 111 static void Memory_peekByteArray(JNIEnv* env, jclass, jlong srcAddress, jbyteArray dst, jint dstOff… in Memory_peekByteArray() argument 136 static void Memory_peekCharArray(JNIEnv* env, jclass, jlong srcAddress, jcharArray dst, jint dstOff… in Memory_peekCharArray() argument 140 static void Memory_peekDoubleArray(JNIEnv* env, jclass, jlong srcAddress, jdoubleArray dst, jint ds… in Memory_peekDoubleArray() argument 144 static void Memory_peekFloatArray(JNIEnv* env, jclass, jlong srcAddress, jfloatArray dst, jint dstO… in Memory_peekFloatArray() argument 148 static void Memory_peekIntArray(JNIEnv* env, jclass, jlong srcAddress, jintArray dst, jint dstOffse… in Memory_peekIntArray() argument 152 static void Memory_peekLongArray(JNIEnv* env, jclass, jlong srcAddress, jlongArray dst, jint dstOff… in Memory_peekLongArray() argument 156 static void Memory_peekShortArray(JNIEnv* env, jclass, jlong srcAddress, jshortArray dst, jint dstO… in Memory_peekShortArray() argument 160 static void Memory_pokeByte(JNIEnv*, jclass, jlong dstAddress, jbyte value) { in Memory_pokeByte() argument [all …]
|
/libcore/ojluni/src/main/native/ |
D | sun_nio_fs_UnixNativeDispatcher.h | 23 (JNIEnv *, jclass); 31 (JNIEnv *, jclass, jint); 39 (JNIEnv *, jclass, jlong, jint, jint); 47 (JNIEnv *, jclass, jint, jlong, jint, jint); 55 (JNIEnv *, jclass, jint); 63 (JNIEnv *, jclass, jlong, jlong); 71 (JNIEnv *, jclass, jlong); 79 (JNIEnv *, jclass, jlong, jlong); 87 (JNIEnv *, jclass, jlong); 95 (JNIEnv *, jclass, jint, jlong, jint); [all …]
|
D | sun_nio_ch_Net.h | 49 (JNIEnv *, jclass); 57 (JNIEnv *, jclass); 65 (JNIEnv *, jclass); 73 (JNIEnv *, jclass); 81 (JNIEnv *, jclass, jboolean, jboolean, jboolean, jboolean); 89 (JNIEnv *, jclass, jobject, jboolean, jboolean, jobject, jint); 97 (JNIEnv *, jclass, jobject, jint); 105 (JNIEnv *, jclass, jboolean, jobject, jobject, jint); 113 (JNIEnv *, jclass, jobject, jint); 121 (JNIEnv *, jclass, jobject); [all …]
|
D | java_util_zip_ZipFile.h | 58 (JNIEnv *, jclass, jlong, jbyteArray, jboolean); 66 (JNIEnv *, jclass, jlong, jlong); 74 (JNIEnv *, jclass, jlong, jint); 82 (JNIEnv *, jclass, jlong); 90 (JNIEnv *, jclass, jstring, jint, jlong, jboolean); 98 (JNIEnv *, jclass, jlong); 106 (JNIEnv *, jclass, jlong); 114 (JNIEnv *, jclass, jlong, jlong, jlong, jbyteArray, jint, jint); 122 (JNIEnv *, jclass, jlong); 130 (JNIEnv *, jclass, jlong); [all …]
|
D | sun_nio_ch_FileDispatcherImpl.h | 51 (JNIEnv *, jclass, jobject, jlong, jint); 59 (JNIEnv *, jclass, jobject, jlong, jint, jlong); 67 (JNIEnv *, jclass, jobject, jlong, jint); 75 (JNIEnv *, jclass, jobject, jlong, jint); 83 (JNIEnv *, jclass, jobject, jlong, jint, jlong); 91 (JNIEnv *, jclass, jobject, jlong, jint); 99 (JNIEnv *, jclass, jobject, jboolean); 107 (JNIEnv *, jclass, jobject, jlong); 115 (JNIEnv *, jclass, jobject); 123 (JNIEnv *, jclass, jobject, jboolean, jlong, jlong, jboolean); [all …]
|
D | jvm.h | 103 JVM_CurrentTimeMillis(JNIEnv *env, jclass ignored); 106 JVM_NanoTime(JNIEnv *env, jclass ignored); 109 JVM_ArrayCopy(JNIEnv *env, jclass ignored, jobject src, jint src_pos, 169 jobject javaLoader, jclass caller); 208 JVM_InitializeCompiler (JNIEnv *env, jclass compCls); 211 JVM_IsSilentCompiler(JNIEnv *env, jclass compCls); 214 JVM_CompileClass(JNIEnv *env, jclass compCls, jclass cls); 217 JVM_CompileClasses(JNIEnv *env, jclass cls, jstring jname); 220 JVM_CompilerCommand(JNIEnv *env, jclass compCls, jobject arg); 223 JVM_EnableCompiler(JNIEnv *env, jclass compCls); [all …]
|
D | Character.cpp | 32 Character_isLowerCaseImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isLowerCaseImpl() argument 37 Character_isUpperCaseImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isUpperCaseImpl() argument 42 Character_isTitleCaseImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isTitleCaseImpl() argument 47 Character_isDigitImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isDigitImpl() argument 52 Character_isLetterImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isLetterImpl() argument 57 Character_isLetterOrDigitImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isLetterOrDigitImpl() argument 62 Character_isAlphabeticImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isAlphabeticImpl() argument 67 Character_isIdeographicImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isIdeographicImpl() argument 72 Character_getTypeImpl(JNIEnv* env, jclass, jint codePoint) { in Character_getTypeImpl() argument 77 Character_isUnicodeIdentifierStartImpl(JNIEnv* env, jclass, jint codePoint) { in Character_isUnicodeIdentifierStartImpl() argument [all …]
|
D | StrictMath.c | 36 StrictMath_cos(JNIEnv *env, jclass unused, jdouble d) in StrictMath_cos() 42 StrictMath_sin(JNIEnv *env, jclass unused, jdouble d) in StrictMath_sin() 48 StrictMath_tan(JNIEnv *env, jclass unused, jdouble d) in StrictMath_tan() 54 StrictMath_asin(JNIEnv *env, jclass unused, jdouble d) in StrictMath_asin() 60 StrictMath_acos(JNIEnv *env, jclass unused, jdouble d) in StrictMath_acos() 66 StrictMath_atan(JNIEnv *env, jclass unused, jdouble d) in StrictMath_atan() 72 StrictMath_exp(JNIEnv *env, jclass unused, jdouble d) in StrictMath_exp() 78 StrictMath_log(JNIEnv *env, jclass unused, jdouble d) in StrictMath_log() 84 StrictMath_log10(JNIEnv *env, jclass unused, jdouble d) in StrictMath_log10() 90 StrictMath_sqrt(JNIEnv *env, jclass unused, jdouble d) in StrictMath_sqrt() [all …]
|
D | sun_nio_fs_LinuxWatchService.h | 16 (JNIEnv *, jclass); 24 (JNIEnv *, jclass); 32 (JNIEnv *, jclass); 40 (JNIEnv *, jclass, jint, jlong, jint); 48 (JNIEnv *, jclass, jint, jint); 56 (JNIEnv *, jclass, jint, jboolean); 64 (JNIEnv *, jclass, jintArray); 72 (JNIEnv *, jclass, jint, jint);
|
D | sun_nio_fs_LinuxNativeDispatcher.h | 23 (JNIEnv *, jclass, jlong, jlong); 31 (JNIEnv *, jclass, jlong, jobject); 39 (JNIEnv *, jclass, jlong); 47 (JNIEnv *, jclass, jint, jlong, jlong, jint); 55 (JNIEnv *, jclass, jint, jlong, jlong, jint); 63 (JNIEnv *, jclass, jint, jlong); 71 (JNIEnv *, jclass, jint, jlong, jint); 79 (JNIEnv *, jclass);
|
D | sun_nio_ch_EPoll.h | 24 (JNIEnv *, jclass); 32 (JNIEnv *, jclass); 40 (JNIEnv *, jclass); 48 (JNIEnv *, jclass); 56 (JNIEnv *, jclass, jint, jint, jint, jint); 64 (JNIEnv *, jclass, jint, jlong, jint);
|
D | JniConstants.cpp | 34 jclass findClass(JNIEnv* env, const char* name) { in findClass() 35 ScopedLocalRef<jclass> localClass(env, env->FindClass(name)); in findClass() 36 jclass result = reinterpret_cast<jclass>(env->NewGlobalRef(localClass.get())); in findClass() 51 jclass g_socket_tagger_class; 82 jclass JniConstants::GetSocketTaggerClass(JNIEnv* env) { in GetSocketTaggerClass()
|
D | EPoll.c | 40 Java_sun_nio_ch_EPoll_eventSize(JNIEnv* env, jclass this) in Java_sun_nio_ch_EPoll_eventSize() 46 Java_sun_nio_ch_EPoll_eventsOffset(JNIEnv* env, jclass this) in Java_sun_nio_ch_EPoll_eventsOffset() 52 Java_sun_nio_ch_EPoll_dataOffset(JNIEnv* env, jclass this) in Java_sun_nio_ch_EPoll_dataOffset() 58 Java_sun_nio_ch_EPoll_epollCreate(JNIEnv *env, jclass c) { in Java_sun_nio_ch_EPoll_epollCreate() 73 Java_sun_nio_ch_EPoll_epollCtl(JNIEnv *env, jclass c, jint epfd, in Java_sun_nio_ch_EPoll_epollCtl() 88 Java_sun_nio_ch_EPoll_epollWait(JNIEnv *env, jclass c, in Java_sun_nio_ch_EPoll_epollWait() 102 Java_sun_nio_ch_EPoll_close0(JNIEnv *env, jclass c, jint epfd) { in Java_sun_nio_ch_EPoll_close0()
|
D | sun_nio_ch_EPollPort.h | 28 (JNIEnv *, jclass, jintArray); 36 (JNIEnv *, jclass, jint); 44 (JNIEnv *, jclass, jint); 52 (JNIEnv *, jclass, jint);
|
D | LinuxWatchService.c | 55 Java_sun_nio_fs_LinuxWatchService_eventSize(JNIEnv *env, jclass clazz) in Java_sun_nio_fs_LinuxWatchService_eventSize() 61 Java_sun_nio_fs_LinuxWatchService_eventOffsets(JNIEnv *env, jclass clazz) in Java_sun_nio_fs_LinuxWatchService_eventOffsets() 79 (JNIEnv* env, jclass clazz) in Java_sun_nio_fs_LinuxWatchService_inotifyInit() 90 (JNIEnv* env, jclass clazz, jint fd, jlong address, jint mask) in Java_sun_nio_fs_LinuxWatchService_inotifyAddWatch() 104 (JNIEnv* env, jclass clazz, jint fd, jint wd) in Java_sun_nio_fs_LinuxWatchService_inotifyRmWatch() 113 (JNIEnv* env, jclass clazz, jint fd, jboolean blocking) in Java_sun_nio_fs_LinuxWatchService_configureBlocking() 125 (JNIEnv* env, jclass clazz, jintArray sv) in Java_sun_nio_fs_LinuxWatchService_socketpair() 140 (JNIEnv* env, jclass clazz, jint fd1, jint fd2) in Java_sun_nio_fs_LinuxWatchService_poll()
|
D | ZipFile.c | 63 jclass cls = (*env)->FindClass(env, "java/util/zip/ZipFile"); in ZipFile_initIDs() 87 ZipFile_open(JNIEnv *env, jclass cls, jstring name, in ZipFile_open() 138 ZipFile_getTotal(JNIEnv *env, jclass cls, jlong zfile) in ZipFile_getTotal() 146 ZipFile_startsWithLOC(JNIEnv *env, jclass cls, jlong zfile) in ZipFile_startsWithLOC() 154 ZipFile_close(JNIEnv *env, jclass cls, jlong zfile) in ZipFile_close() 160 ZipFile_getFileDescriptor(JNIEnv *env, jclass cls, jlong zfile) { in ZipFile_getFileDescriptor() 166 ZipFile_getEntry(JNIEnv *env, jclass cls, jlong zfile, in ZipFile_getEntry() 194 ZipFile_freeEntry(JNIEnv *env, jclass cls, jlong zfile, in ZipFile_freeEntry() 203 ZipFile_getNextEntry(JNIEnv *env, jclass cls, jlong zfile, in ZipFile_getNextEntry() 211 ZipFile_getEntryMethod(JNIEnv *env, jclass cls, jlong zentry) in ZipFile_getEntryMethod() [all …]
|
D | UnixNativeDispatcher.c | 181 Java_sun_nio_fs_UnixNativeDispatcher_init(JNIEnv* env, jclass this) in Java_sun_nio_fs_UnixNativeDispatcher_init() 184 jclass clazz; in Java_sun_nio_fs_UnixNativeDispatcher_init() 295 Java_sun_nio_fs_UnixNativeDispatcher_getcwd(JNIEnv* env, jclass this) { in Java_sun_nio_fs_UnixNativeDispatcher_getcwd() 314 Java_sun_nio_fs_UnixNativeDispatcher_strerror(JNIEnv* env, jclass this, jint error) in Java_sun_nio_fs_UnixNativeDispatcher_strerror() 336 Java_sun_nio_fs_UnixNativeDispatcher_dup(JNIEnv* env, jclass this, jint fd) { in Java_sun_nio_fs_UnixNativeDispatcher_dup() 348 Java_sun_nio_fs_UnixNativeDispatcher_fopen0(JNIEnv* env, jclass this, in Java_sun_nio_fs_UnixNativeDispatcher_fopen0() 367 Java_sun_nio_fs_UnixNativeDispatcher_fclose(JNIEnv* env, jclass this, jlong stream) in Java_sun_nio_fs_UnixNativeDispatcher_fclose() 382 Java_sun_nio_fs_UnixNativeDispatcher_open0(JNIEnv* env, jclass this, in Java_sun_nio_fs_UnixNativeDispatcher_open0() 396 Java_sun_nio_fs_UnixNativeDispatcher_openat0(JNIEnv* env, jclass this, jint dfd, in Java_sun_nio_fs_UnixNativeDispatcher_openat0() 415 Java_sun_nio_fs_UnixNativeDispatcher_close(JNIEnv* env, jclass this, jint fd) { in Java_sun_nio_fs_UnixNativeDispatcher_close() [all …]
|
D | ObjectStreamClass.c | 34 static jclass noSuchMethodErrCl; 38 jclass cl = (*env)->FindClass(env, "java/lang/NoSuchMethodError"); in ObjectStreamClass_initNative() 57 ObjectStreamClass_hasStaticInitializer(JNIEnv *env, jclass this, in ObjectStreamClass_hasStaticInitializer() 58 jclass clazz, in ObjectStreamClass_hasStaticInitializer() 61 jclass superCl = NULL; in ObjectStreamClass_hasStaticInitializer()
|
D | IOUtil.c | 47 jclass clazz = (*env)->FindClass(env, "java/io/FileDescriptor"); in IOUtil_initIDs() 54 IOUtil_randomBytes(JNIEnv *env, jclass clazz, in IOUtil_randomBytes() 62 IOUtil_fdVal(JNIEnv *env, jclass clazz, jobject fdo) in IOUtil_fdVal() 68 IOUtil_setfdVal(JNIEnv *env, jclass clazz, jobject fdo, jint val) in IOUtil_setfdVal() 83 IOUtil_configureBlocking(JNIEnv *env, jclass clazz, in IOUtil_configureBlocking() 112 IOUtil_drain(JNIEnv *env, jclass cl, jint fd) in IOUtil_drain() 129 IOUtil_fdLimit(JNIEnv *env, jclass this) in IOUtil_fdLimit() 145 IOUtil_iovMax(JNIEnv *env, jclass this) in IOUtil_iovMax()
|
D | EPollPort.c | 39 Java_sun_nio_ch_EPollPort_socketpair(JNIEnv* env, jclass clazz, jintArray sv) { in Java_sun_nio_ch_EPollPort_socketpair() 52 Java_sun_nio_ch_EPollPort_interrupt(JNIEnv *env, jclass c, jint fd) { in Java_sun_nio_ch_EPollPort_interrupt() 63 Java_sun_nio_ch_EPollPort_drain1(JNIEnv *env, jclass cl, jint fd) { in Java_sun_nio_ch_EPollPort_drain1() 73 Java_sun_nio_ch_EPollPort_close0(JNIEnv *env, jclass c, jint fd) { in Java_sun_nio_ch_EPollPort_close0()
|
/libcore/dalvik/src/main/native/ |
D | org_apache_harmony_dalvik_NativeTestTarget.cpp | 24 static void NativeTestTarget_emptyJniStaticSynchronizedMethod0(JNIEnv*, jclass) { } in NativeTestTarget_emptyJniStaticSynchronizedMethod0() argument 25 static void NativeTestTarget_emptyJniSynchronizedMethod0(JNIEnv*, jclass) { } in NativeTestTarget_emptyJniSynchronizedMethod0() argument 36 static void NativeTestTarget_emptyJniStaticMethod6L(JNIEnv*, jclass, jobject, jarray, jarray, jobje… in NativeTestTarget_emptyJniStaticMethod6L() argument 38 static void NativeTestTarget_emptyJniStaticMethod0(JNIEnv*, jclass) { } in NativeTestTarget_emptyJniStaticMethod0() argument 39 static void NativeTestTarget_emptyJniStaticMethod6(JNIEnv*, jclass, int, int, int, int, int, int) {… in NativeTestTarget_emptyJniStaticMethod6() argument 53 static void NativeTestTarget_emptyJniStaticMethod6L_Fast(JNIEnv*, jclass, jobject, jarray, jarray, … in NativeTestTarget_emptyJniStaticMethod6L_Fast() argument 55 static void NativeTestTarget_emptyJniStaticMethod0_Fast(JNIEnv*, jclass) { } in NativeTestTarget_emptyJniStaticMethod0_Fast() argument 56 static void NativeTestTarget_emptyJniStaticMethod6_Fast(JNIEnv*, jclass, int, int, int, int, int, i… in NativeTestTarget_emptyJniStaticMethod6_Fast() argument
|