Home
last modified time | relevance | path

Searched refs:CallObjectMethodArray (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/mock/
Dcalling_methods_test_1.cpp52 EXPECT_DEATH(env_->CallObjectMethodArray(nullptr, nullptr, nullptr), ""); in TEST_F()
98 EXPECT_DEATH(env_->CallObjectMethodArray(obj, nullptr, nullptr), ""); in TEST_F()
Dcalling_methods_test_4.cpp115 EXPECT_DEATH(env_->CallObjectMethodArray(nullptr, objectId, nullptr), ""); in TEST_F()
130 EXPECT_DEATH(env_->CallObjectMethodArray(nullptr, objectId, nullptr), ""); in TEST_F()
Dcalling_methods_test_6.cpp333 ets_object a_obj_from_Array_direct_calls = env->CallObjectMethodArray(obj, object_id, nullptr); in TEST_F()
Dcalling_methods_test_2.cpp166 ets_object aObjFromArrayFunc = env_->CallObjectMethodArray(obj, objectId, nullptr); in TEST_F()
Dcalling_methods_test_3.cpp243 ets_object aObjFromArrayFunc = env_->CallObjectMethodArray(cls, objectId, nullptr); in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi.h223 …ets_object (*CallObjectMethodArray)(EtsEnv *env, ets_object obj, ets_method p_method, const ets_va… member
678 ets_object CallObjectMethodArray(ets_object obj, ets_method method_id, const ets_value *args) in CallObjectMethodArray() function
680 return native_interface->CallObjectMethodArray(this, obj, method_id, args); in CallObjectMethodArray()
Dets_napi_native_interface.cpp745 NO_UB_SANITIZE static ets_object CallObjectMethodArray(EtsEnv *env, ets_object obj, ets_method meth… in CallObjectMethodArray() function
2903 CallObjectMethodArray,