HomeSort by relevance Sort by last modified time
    Searched refs:numMethods (Results 1 - 25 of 40) sorted by null

1 2

  /packages/inputmethods/LatinIME/native/jni/
jni_common.h 24 const int numMethods);
jni_common.cpp 64 const int numMethods) {
70 if (env->RegisterNatives(clazz, methods, numMethods) != 0) {
  /cts/hostsidetests/os/test-apps/StaticSharedNativeLibConsumer/jni/
version.cpp 30 JNINativeMethod* gMethods, int numMethods) {
37 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/jni/
com_android_cts_splitapp_Native.cpp 45 static int registerNativeMethods(JNIEnv* env, const char* className, JNINativeMethod* gMethods, int numMethods) {
53 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /development/samples/SimpleJNI/jni/
native.cpp 41 JNINativeMethod* gMethods, int numMethods)
50 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/jni/
native.cpp 41 const JNINativeMethod* gMethods, int numMethods)
50 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/jni/
native.cpp 41 const JNINativeMethod* gMethods, int numMethods)
50 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/jni/
native.cpp 41 const JNINativeMethod* gMethods, int numMethods)
50 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /external/conscrypt/common/src/jni/main/include/
JniUtil.h 98 const JNINativeMethod* gMethods, int numMethods) {
99 ALOGV("Registering %s's %d native methods...", className, numMethods);
109 if (env->RegisterNatives(c.get(), gMethods, numMethods) < 0) {
  /art/tools/dmtracedump/
tracedump.cc 148 int32_t numMethods;
155 int32_t numMethods;
190 int32_t numMethods;
772 pKeys->numMethods = count;
816 qsort(pKeys->methods, pKeys->numMethods, sizeof(MethodEntry), compareMethods);
896 printf("Methods (%d):\n", pKeys->numMethods);
897 for (int32_t i = 0; i < pKeys->numMethods; i++) {
976 int32_t hi = pKeys->numMethods - 1;
    [all...]
  /frameworks/base/apct-tests/perftests/core/jni/
SystemPerfTest.cpp 59 const JNINativeMethod* gMethods, int numMethods) {
64 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /frameworks/base/core/jni/
core_jni_helpers.h 69 const JNINativeMethod* gMethods, int numMethods) {
70 int res = AndroidRuntime::registerNativeMethods(env, className, gMethods, numMethods);
  /libnativehelper/include/nativehelper/
JNIHelp.h 45 int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
128 inline int jniRegisterNativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {
129 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods);
  /art/benchmark/micro-native/
micro_native.cc 102 int numMethods) {
118 if (env->RegisterNatives(c, methods, numMethods) < 0) {
  /frameworks/base/core/jni/include/android_runtime/
AndroidRuntime.h 54 const char* className, const JNINativeMethod* gMethods, int numMethods);
  /external/lzma/CPP/7zip/
ICoder.h 279 STDMETHOD(GetNumMethods)(UInt32 *numMethods) PURE;
361 typedef HRESULT (WINAPI *Func_GetNumberOfMethods)(UInt32 *numMethods);
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.cpp 258 UInt32 numMethods = 1;
262 RINOK(getNumberOfMethods(&numMethods));
264 for (UInt32 i = 0; i < numMethods; i++)
281 UInt32 numMethods = lib.ComHashers->GetNumHashers();
282 for (UInt32 i = 0; i < numMethods; i++)
818 STDMETHODIMP CCodecs::GetNumMethods(UInt32 *numMethods)
820 *numMethods = NUM_EXPORT_CODECS
LoadCodecs.h 325 STDMETHOD(GetNumMethods)(UInt32 *numMethods);
  /libnativehelper/
JNIHelp.cpp 76 const JNINativeMethod* gMethods, int numMethods)
80 ALOGV("Registering %s's %d native methods...", className, numMethods);
97 if ((*env)->RegisterNatives(e, c.get(), gMethods, numMethods) < 0) {
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 315 unsigned numMethods = _bindInfo.Coders.Size();
335 for (i = 0; i < numMethods; i++)
362 for (i = 0; i < numMethods; i++)
376 CByteBuffer &props = folderItem.Coders[numMethods - 1 - i].Props;
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 312 JNINativeMethod* gMethods, int numMethods) {
319 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 228 int numMethods = bytes.getUnsignedShort(offset);
231 "num_boostrap_methods: " + Hex.u2(numMethods));
238 cf.getThisClass(), numMethods,
817 CstType declaringClass, int numMethods, int offset, int length, ParseObserver observer)
819 BootstrapMethodsList methods = new BootstrapMethodsList(numMethods);
820 for (int methodIndex = 0; methodIndex < numMethods; ++methodIndex) {
  /external/lzma/CPP/7zip/UI/Console/
Main.cpp 738 UInt32 numMethods;
739 if (codecs->GetNumMethods(&numMethods) == S_OK)
740 for (UInt32 j = 0; j < numMethods; j++)
779 numMethods = codecs->GetNumHashers();
780 for (UInt32 j = 0; j < numMethods; j++)
  /external/jdiff/src/jdiff/
HTMLStatistics.java 463 int numMethods = numMethodsRemoved + numMethodsAdded + numMethodsChanged;
464 h_.writeText(" <TD ALIGN=\"right\">" + numMethods + "</TD>");
  /packages/apps/Messaging/jni/
GifTranscoder.cpp 562 JNINativeMethod* gMethods, int numMethods) {
567 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {

Completed in 470 milliseconds

1 2