Searched refs:numMethods (Results 1 – 11 of 11) sorted by relevance
/external/conscrypt/src/openjdk/native/ |
D | JNIHelp.cpp | 68 const JNINativeMethod* gMethods, int numMethods) in jniRegisterNativeMethods() argument 70 ALOGV("Registering %s's %d native methods...", className, numMethods); in jniRegisterNativeMethods() 80 if (env->RegisterNatives(c.get(), gMethods, numMethods) < 0) { in jniRegisterNativeMethods()
|
D | JNIHelp.h | 45 …NativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
|
/external/conscrypt/src/compat/native/ |
D | JNIHelp.h | 45 …tiveMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods); 122 …ativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) { in jniRegisterNativeMethods() argument 123 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods); in jniRegisterNativeMethods()
|
D | JNIHelp.cpp | 70 const JNINativeMethod* gMethods, int numMethods) in jniRegisterNativeMethods() argument 74 ALOGV("Registering %s's %d native methods...", className, numMethods); in jniRegisterNativeMethods() 83 if ((*env)->RegisterNatives(e, c.get(), gMethods, numMethods) < 0) { in jniRegisterNativeMethods()
|
/external/lzma/CPP/7zip/UI/Common/ |
D | LoadCodecs.cpp | 209 UInt32 numMethods = 1; in LoadCodecs() local 213 RINOK(getNumberOfMethodsFunc(&numMethods)); in LoadCodecs() 215 for (UInt32 i = 0; i < numMethods; i++) in LoadCodecs() 232 UInt32 numMethods = lib.Hashers->GetNumHashers(); in LoadCodecs() local 233 for (UInt32 i = 0; i < numMethods; i++) in LoadCodecs() 697 STDMETHODIMP CCodecs::GetNumberOfMethods(UInt32 *numMethods) in GetNumberOfMethods() argument 699 *numMethods = NUM_EXPORT_CODECS in GetNumberOfMethods()
|
D | LoadCodecs.h | 222 STDMETHOD(GetNumberOfMethods)(UInt32 *numMethods);
|
/external/lzma/CPP/7zip/ |
D | ICoder.h | 132 STDMETHOD(GetNumberOfMethods)(UInt32 *numMethods) PURE; 206 typedef HRESULT (WINAPI *Func_GetNumberOfMethods)(UInt32 *numMethods);
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zEncode.cpp | 164 unsigned numMethods = _bindInfo.Coders.Size(); in Encode() local 181 for (i = 0; i < numMethods; i++) in Encode() 291 for (i = 0; i < numMethods; i++) in Encode() 292 folderItem.Coders[numMethods - 1 - i].Props = _codersInfo[i].Props; in Encode()
|
/external/lzma/CPP/7zip/UI/Console/ |
D | Main.cpp | 610 UInt32 numMethods; in Main2() local 611 if (codecs->GetNumberOfMethods(&numMethods) == S_OK) in Main2() 612 for (UInt32 j = 0; j < numMethods; j++) in Main2() 628 numMethods = codecs->GetNumHashers(); in Main2() 629 for (UInt32 j = 0; j < numMethods; j++) in Main2()
|
/external/jdiff/src/jdiff/ |
D | HTMLStatistics.java | 457 int numMethods = numMethodsRemoved + numMethodsAdded + numMethodsChanged; in emitNumbersByElement() local 458 h_.writeText(" <TD ALIGN=\"right\">" + numMethods + "</TD>"); in emitNumbersByElement()
|
/external/jhead/ |
D | main.c | 785 JNINativeMethod* gMethods, int numMethods) in registerNativeMethods() argument 795 if ((*env)->RegisterNatives(env, clazz, gMethods, numMethods) < 0) { in registerNativeMethods()
|