Home
last modified time | relevance | path

Searched refs:numMethods (Results 1 – 11 of 11) sorted by relevance

/external/angle/build/android/incremental_install/third_party/AndroidHiddenApiBypass/library/src/main/java/org/lsposed/hiddenapibypass/
DHiddenApiBypass.java147 int numMethods = unsafe.getInt(methods); in newInstance() local
148 if (BuildConfig.DEBUG) Log.d(TAG, clazz + " has " + numMethods + " methods"); in newInstance()
149 for (int i = 0; i < numMethods; i++) { in newInstance()
183 int numMethods = unsafe.getInt(methods); in invoke() local
184 if (BuildConfig.DEBUG) Log.d(TAG, clazz + " has " + numMethods + " methods"); in invoke()
185 for (int i = 0; i < numMethods; i++) { in invoke()
219 int numMethods = unsafe.getInt(methods); in getDeclaredMethods() local
220 if (BuildConfig.DEBUG) Log.d(TAG, clazz + " has " + numMethods + " methods"); in getDeclaredMethods()
221 for (int i = 0; i < numMethods; i++) { in getDeclaredMethods()
/external/lzma/CPP/7zip/UI/Common/
DLoadCodecs.cpp258 UInt32 numMethods = 1; in LoadCodecs() local
262 RINOK(getNumberOfMethods(&numMethods)); in LoadCodecs()
264 for (UInt32 i = 0; i < numMethods; i++) in LoadCodecs()
281 UInt32 numMethods = lib.ComHashers->GetNumHashers(); in LoadCodecs() local
282 for (UInt32 i = 0; i < numMethods; i++) in LoadCodecs()
818 STDMETHODIMP CCodecs::GetNumMethods(UInt32 *numMethods) in GetNumMethods() argument
820 *numMethods = NUM_EXPORT_CODECS in GetNumMethods()
DLoadCodecs.h325 STDMETHOD(GetNumMethods)(UInt32 *numMethods);
/external/lzma/CPP/7zip/Archive/7z/
D7zEncode.cpp324 unsigned numMethods = _bindInfo.Coders.Size(); in Encode() local
344 for (i = 0; i < numMethods; i++) in Encode()
371 for (i = 0; i < numMethods; i++) in Encode()
396 CByteBuffer &props = folderItem.Coders[numMethods - 1 - i].Props; in Encode()
/external/libwebsockets/test-apps/android/app/src/main/jni/
DLwsService.cpp51 …egisterNativeMethods(JNIEnv* env, const char* className, JNINativeMethod* gMethods, int numMethods) in registerNativeMethods() argument
58 if (env->RegisterNatives(cls, gMethods, numMethods) < 0) { in registerNativeMethods()
/external/lzma/CPP/7zip/
DICoder.h307 STDMETHOD(GetNumMethods)(UInt32 *numMethods) PURE;
389 typedef HRESULT (WINAPI *Func_GetNumberOfMethods)(UInt32 *numMethods);
/external/lzma/CPP/7zip/UI/Console/
DMain.cpp746 UInt32 numMethods; in Main2() local
747 if (codecs->GetNumMethods(&numMethods) == S_OK) in Main2()
748 for (UInt32 j = 0; j < numMethods; j++) in Main2()
787 numMethods = codecs->GetNumHashers(); in Main2()
788 for (UInt32 j = 0; j < numMethods; j++) in Main2()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Djniutil.cc149 int numMethods) { in jniRegisterNativeMethods() argument
150 CONSCRYPT_LOG_VERBOSE("Registering %s's %d native methods...", className, numMethods); in jniRegisterNativeMethods()
160 if (env->RegisterNatives(c.get(), gMethods, numMethods) < 0) { in jniRegisterNativeMethods()
/external/nullaway/nullaway/src/main/java/com/uber/nullaway/handlers/
DInferredJARModelsHandler.java302 int numMethods = in.readInt(); in parseStubStream() local
304 for (int i = 0; i < numMethods; ++i) { in parseStubStream()
/external/jdiff/src/jdiff/
DHTMLStatistics.java451 int numMethods = numMethodsRemoved + numMethodsAdded + numMethodsChanged; in emitNumbersByElement() local
452 h_.writeText(" <TD ALIGN=\"right\">" + numMethods + "</TD>"); in emitNumbersByElement()
/external/conscrypt/common/src/jni/main/include/conscrypt/
Djniutil.h142 int numMethods);