Home
last modified time | relevance | path

Searched refs:CallStaticIntMethodArray (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Dcalling_methods_test_3.cpp58 EXPECT_DEATH(env_->CallStaticIntMethodArray(nullptr, nullptr, nullptr), ""); in TEST_F()
104 EXPECT_DEATH(env_->CallStaticIntMethodArray(cls, nullptr, nullptr), ""); in TEST_F()
289 EXPECT_EQ(env_->CallStaticIntMethodArray(cls, intId, nullptr), static_cast<ets_int>(0)); in TEST_F()
304 EXPECT_EQ(env_->CallStaticIntMethodArray(nullptr, intId, nullptr), static_cast<ets_int>(0)); in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi.h338 …ets_int (*CallStaticIntMethodArray)(EtsEnv *env, ets_class cls, ets_method p_method, ets_value *ar… member
1159 ets_int CallStaticIntMethodArray(ets_class cls, ets_method method_id, ets_value *args) in CallStaticIntMethodArray() function
1161 return native_interface->CallStaticIntMethodArray(this, cls, method_id, args); in CallStaticIntMethodArray()
Dets_napi_native_interface.cpp1675 NO_UB_SANITIZE static ets_int CallStaticIntMethodArray(EtsEnv *env, [[maybe_unused]] ets_class cls,… in CallStaticIntMethodArray() function
2998 CallStaticIntMethodArray,