Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/test/fuzztest/nativepointernew1_fuzzer/
Dnativepointernew1_fuzzer.cpp32 NativePointerRef::New(vm, (void *)(data + size)); in NativePointerNew1FuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/nativepointernew2_fuzzer/
Dnativepointernew2_fuzzer.cpp33 NativePointerRef::New(vm, (void *)(data + size), callBack, (void*)data); in NativePointerNew2FuzzTest()
/arkcompiler/ets_runtime/
Dlibark_jsruntime.map33 panda::NativePointerRef::*;
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp1304 Local<NativePointerRef> NativePointerRef::New(const EcmaVM *vm, void *nativePointer, size_t nativeB… in New()
1310 return JSNApiHelper::ToLocal<NativePointerRef>(JSHandle<JSTaggedValue>(obj)); in New()
1313 Local<NativePointerRef> NativePointerRef::New( in New()
1320 return JSNApiHelper::ToLocal<NativePointerRef>(JSHandle<JSTaggedValue>(obj)); in New()
1323 void *NativePointerRef::Value() in Value()
1350 … JSHandle<JSTaggedValue> detachValue = JSNApiHelper::ToJSHandle(NativePointerRef::New(vm, detach)); in New()
1351 … JSHandle<JSTaggedValue> attachValue = JSNApiHelper::ToJSHandle(NativePointerRef::New(vm, attach)); in New()
1367 … JSHandle<JSTaggedValue> detachValue = JSNApiHelper::ToJSHandle(NativePointerRef::New(vm, detach)); in Set()
1368 … JSHandle<JSTaggedValue> attachValue = JSNApiHelper::ToJSHandle(NativePointerRef::New(vm, attach)); in Set()
2920 Local<NativePointerRef> JSValueRef::ToNativePointer(const EcmaVM *vm) in ToNativePointer()
[all …]
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h51 class NativePointerRef; variable
404 Local<NativePointerRef> ToNativePointer(const EcmaVM *vm);
572 class PUBLIC_API NativePointerRef : public JSValueRef {
574 …static Local<NativePointerRef> New(const EcmaVM *vm, void *nativePointer, size_t nativeBindingsize…
575 …static Local<NativePointerRef> New(const EcmaVM *vm, void *nativePointer, NativePointerCallback ca…
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp1320 Local<NativePointerRef> res = toValue->ToNativePointer(vm_); in HWTEST_F_L0()
1474 Local<NativePointerRef> res = NativePointerRef::New(vm_, vp1, callBack, vp2, 0); in HWTEST_F_L0()