Searched refs:functions (Results 1 – 3 of 3) sorted by relevance
/libnativehelper/include/nativehelper/ |
D | jni.h | 493 const struct JNINativeInterface* functions; member 498 { return functions->GetVersion(this); } in GetVersion() 502 { return functions->DefineClass(this, name, loader, buf, bufLen); } in DefineClass() 505 { return functions->FindClass(this, name); } in FindClass() 508 { return functions->FromReflectedMethod(this, method); } in FromReflectedMethod() 511 { return functions->FromReflectedField(this, field); } in FromReflectedField() 514 { return functions->ToReflectedMethod(this, cls, methodID, isStatic); } in ToReflectedMethod() 517 { return functions->GetSuperclass(this, clazz); } in GetSuperclass() 520 { return functions->IsAssignableFrom(this, clazz1, clazz2); } in IsAssignableFrom() 523 { return functions->ToReflectedField(this, cls, fieldID, isStatic); } in ToReflectedField() [all …]
|
D | JNIHelp.h | 123 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods); in jniRegisterNativeMethods() 127 return jniThrowException(&env->functions, className, msg); in jniThrowException() 139 return jniThrowExceptionFmt(&env->functions, className, fmt, args); in jniThrowExceptionFmt() 144 return jniThrowNullPointerException(&env->functions, msg); in jniThrowNullPointerException() 148 return jniThrowRuntimeException(&env->functions, msg); in jniThrowRuntimeException() 152 return jniThrowIOException(&env->functions, errnum); in jniThrowIOException() 156 return jniCreateFileDescriptor(&env->functions, fd); in jniCreateFileDescriptor() 160 return jniGetFDFromFileDescriptor(&env->functions, fileDescriptor); in jniGetFDFromFileDescriptor() 164 jniSetFileDescriptorOfFD(&env->functions, fileDescriptor, value); in jniSetFileDescriptorOfFD() 168 return jniGetReferent(&env->functions, ref); in jniGetReferent() [all …]
|
/libnativehelper/ |
D | README | 1 Support functions for Android's class libraries 4 These are VM-agnostic native functions that implement methods for system 11 Some helper functions are defined in include/nativehelper/JNIHelp.h.
|