Searched refs:funObj (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/module_manager/ |
H A D | module_manager.cpp | 295 JSIValue funObj = JSI::GetNamedProperty(object, name); in GetObjectNamedPointer() local 297 if (JSI::ValueIsObject(funObj)) { in GetObjectNamedPointer() 298 nativePtr = GetObjectPointer(funObj); in GetObjectNamedPointer() 301 JSI::ReleaseValue(funObj); in GetObjectNamedPointer()
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/ |
H A D | jsi.cpp | 873 JSIValue funObj = JSI::CreateObject(); in SetOnTerminate() local 874 JSI::SetOnDestroy(funObj, callback); in SetOnTerminate() 875 JSI::SetNamedProperty(object, ON_TERMINATE, funObj); in SetOnTerminate() 876 JSI::ReleaseValue(funObj); in SetOnTerminate() 891 JSIValue funObj = JSI::CreateObject(); in SetNamedPointer() local 893 jerry_set_object_native_pointer(AS_JERRY_VALUE(funObj), nativePtr, nullptr); in SetNamedPointer() 894 SetNamedProperty(object, name, funObj); in SetNamedPointer() 895 ReleaseValue(funObj); in SetNamedPointer()
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/test/unittest/common/ |
H A D | jsi_interface_tdd_test.cpp | 821 JSIValue funObj = JSI::GetNamedProperty(object, name); in JSIInterfaceTest022() local 823 jerry_value_t jObj = (jerry_value_t)(uintptr_t)(funObj); in JSIInterfaceTest022() 837 JSI::ReleaseValueList(object, funObj); in JSIInterfaceTest022() 854 JSIValue funObj = JSI::GetNamedProperty(object, name); in JSIInterfaceTest023() local 856 jerry_value_t jObj = (jerry_value_t)(uintptr_t)(funObj); in JSIInterfaceTest023() 870 JSI::ReleaseValueList(object, funObj); in JSIInterfaceTest023()
|