Home
last modified time | relevance | path

Searched refs:CallStaticIntMethod (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/napi/sampler/
DSamplerNapiTest.cpp51 ets_int res = env->CallStaticIntMethod(cls, method, iterations); in ETS_ETSGLOBAL_NativeNAPISlowFunction()
60 res += env->CallStaticIntMethod(cls, method); in ETS_ETSGLOBAL_NativeNAPIFastFunction()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Dregister_native_allocation_test.cpp63 ASSERT_EQ(env_->CallStaticIntMethod(testClass, allocMethod), 0); in TEST_F()
73 ASSERT_EQ(env_->CallStaticIntMethod(testClass, mainMethod), 0); in TEST_F()
Deffective_types_test.cpp111 auto res = env->CallStaticIntMethod(testClass, method); in TEST_F()
Dregistering_native_methods_test.cpp99 ASSERT_EQ(env_->CallStaticIntMethod(cls, foo_id), static_cast<ets_int>(42_I)); in TEST_F()
Dcalling_methods_test_3.cpp46 EXPECT_DEATH(env_->CallStaticIntMethod(nullptr, nullptr), ""); in TEST_F()
92 EXPECT_DEATH(env_->CallStaticIntMethod(cls, nullptr), ""); in TEST_F()
210 EXPECT_EQ(env_->CallStaticIntMethod(cls, intId), static_cast<ets_int>(0)); in TEST_F()
392 EXPECT_EQ(env_->CallStaticIntMethod(nullptr, intId), static_cast<ets_int>(0)); in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/native/
Dnative_test_helper.h45 *ret = env_->CallStaticIntMethod(cls, fn, args...); in CallEtsFuntion()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/common/bouncing_peas/
Dbouncing_peas_unit_napi.cpp352 … return env_->CallStaticIntMethod(klass, method); // NOLINT(cppcoreguidelines-pro-type-vararg) in ExecuteMain()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi.h328 ets_int (*CallStaticIntMethod)(EtsEnv *env, ets_class cls, ets_method p_method, ...); member
1115 ets_int CallStaticIntMethod(ets_class cls, ets_method method_id, ...) in CallStaticIntMethod() function
Dets_napi_native_interface.cpp1661 NO_UB_SANITIZE static ets_int CallStaticIntMethod(EtsEnv *env, ets_class cls, ets_method methodId, … in CallStaticIntMethod() function
2899 CallStaticIntMethod,