Home
last modified time | relevance | path

Searched refs:CallBooleanMethodArray (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Dcalling_methods_test_1.cpp53 EXPECT_DEATH(env_->CallBooleanMethodArray(nullptr, nullptr, nullptr), ""); in TEST_F()
99 EXPECT_DEATH(env_->CallBooleanMethodArray(obj, nullptr, nullptr), ""); in TEST_F()
Dcalling_methods_test_4.cpp119 EXPECT_DEATH(env_->CallBooleanMethodArray(nullptr, booleanId, booleanArgs.data()), ""); in TEST_F()
131 EXPECT_DEATH(env_->CallBooleanMethodArray(nullptr, booleanId, nullptr), ""); in TEST_F()
Dcalling_methods_test_6.cpp338 …EXPECT_EQ(env->CallBooleanMethodArray(obj, boolean_id, boolean_args.data()), static_cast<ets_boole… in TEST_F()
Dcalling_methods_test_2.cpp172 …EXPECT_EQ(env_->CallBooleanMethodArray(obj, booleanId, booleanArgs.data()), static_cast<ets_boolea… in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi.h226 …ets_boolean (*CallBooleanMethodArray)(EtsEnv *env, ets_object obj, ets_method p_method, const ets_… member
694 ets_boolean CallBooleanMethodArray(ets_object obj, ets_method method_id, const ets_value *args) in CallBooleanMethodArray() function
696 return native_interface->CallBooleanMethodArray(this, obj, method_id, args); in CallBooleanMethodArray()
Dets_napi_native_interface.cpp774 NO_UB_SANITIZE static ets_boolean CallBooleanMethodArray(EtsEnv *env, ets_object obj, ets_method me… in CallBooleanMethodArray() function
2906 CallBooleanMethodArray,