Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefisnativepointervalue_fuzzer/
Djsvaluerefisnativepointervalue_fuzzer.cpp35 …Local<NativePointerRef> res = NativePointerRef::New(vm, (void *)(data + size), callBack, (void *)d… in JSValueRefIsNativePointerValueFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/jsnapivalue_fuzzer/
Djsnapivalue_fuzzer.cpp36 …Local<NativePointerRef> res_vps = NativePointerRef::New(vm_, vps, NativeAreaAllocator::FreeBufferF… in JSNApiValueFuzzTest()
/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/test/
Dffi_workload.cpp2239 Local<JSValueRef> tag = NativePointerRef::New(vm_, vp1); in HWTEST_F_L0()
2242 Local<NativePointerRef> npr = tag->ToNativePointer(vm_); in HWTEST_F_L0()
2254 Local<JSValueRef> tag = NativePointerRef::New(vm_, vp1); in HWTEST_F_L0()
2257 Local<NativePointerRef> npr = tag->ToNativePointer(vm_); in HWTEST_F_L0()
2269 Local<JSValueRef> tag = NativePointerRef::New(vm_, vp1); in HWTEST_F_L0()
2272 Local<NativePointerRef> npr = tag->ToNativePointer(vm_); in HWTEST_F_L0()
2284 Local<JSValueRef> tag = NativePointerRef::New(vm_, vp1); in HWTEST_F_L0()
2287 Local<NativePointerRef> npr = tag->ToNativePointer(vm_); in HWTEST_F_L0()
2299 Local<JSValueRef> tag = NativePointerRef::New(vm_, vp1); in HWTEST_F_L0()
2302 Local<NativePointerRef> npr = tag->ToNativePointer(vm_); in HWTEST_F_L0()
[all …]
Djsnapi_first_tests.cpp481 Local<NativePointerRef> nativeInfo = NativePointerRef::New( in HWTEST_F_L0()
569 Local<NativePointerRef> nativeInfo = NativePointerRef::New( in HWTEST_F_L0()
1691 Local<NativePointerRef> res = toValue->ToNativePointer(vm_); in HWTEST_F_L0()
1902 Local<NativePointerRef> res = NativePointerRef::New(vm_, vp1, callBack, vp2, 0); in HWTEST_F_L0()
2076 Local<NativePointerRef> res = NativePointerRef::New(vm_, vp1, callBack, vp2, 0); in HWTEST_F_L0()
Djsnapi_sample.cpp310 Local<NativePointerRef> nativePoint = NativePointerRef::New( in HWTEST_F_L0()
330 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vps); in HWTEST_F_L0()
342 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpd); in HWTEST_F_L0()
354 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpc); in HWTEST_F_L0()
365 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpl); in HWTEST_F_L0()
377 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpi); in HWTEST_F_L0()
751 Local<NativePointerRef> native = NativePointerRef::New(vm, static_cast<void *>(a)); in NativePointer()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h63 class NativePointerRef; variable
397 Local<NativePointerRef> ToNativePointer(const EcmaVM *vm);
620 class ECMA_PUBLIC_API NativePointerRef : public JSValueRef {
622 …static Local<NativePointerRef> New(const EcmaVM *vm, void *nativePointer, size_t nativeBindingsize…
623 …static Local<NativePointerRef> New(const EcmaVM *vm, void *nativePointer, NativePointerCallback ca…
641 bool ConvertToNativeBindingObject(const EcmaVM *vm, Local<NativePointerRef> value);
Djsnapi.h60 class NativePointerRef; variable
/arkcompiler/ets_runtime/ecmascript/napi/
DJSNapi接口说明.md2388 Local<NativePointerRef> res_vps =
2389 NativePointerRef::New(vm_, vps, NativeAreaAllocator::FreeBufferFunc, vps1, 0);
5570 ## NativePointerRef section
5576 static Local<NativePointerRef> New(const EcmaVM *vm, void *nativePointer, size_t nativeBindingsize … argument
5578 static Local<NativePointerRef> New(const EcmaVM *vm, void *nativePointer, NativePointerCallback cal…
5596 | Local<NativePointerRef> | ���ع���ɹ���NativePointerRef���͵Ķ��� |
5602 Local<NativePointerRef> result = NativePointerRef::New(vm_, vps, 0);
5606 Local<NativePointerRef> result = NativePointerRef::New(vm_, vps, callBack, vpsdata, 0);
5630 Local<NativePointerRef> res_vps = NativePointerRef::New(vm_, vps, NativeAreaAllocator::FreeBufferFu… argument
Djsnapi_expo.cpp253 Local<NativePointerRef> JSValueRef::ToNativePointer(const EcmaVM *vm) in ToNativePointer()
258 return JSNApiHelper::ToLocal<NativePointerRef>(obj); in ToNativePointer()
1606 bool ObjectRef::ConvertToNativeBindingObject(const EcmaVM *vm, Local<NativePointerRef> value) in ConvertToNativeBindingObject()
1920 Local<NativePointerRef> NativePointerRef::New(const EcmaVM *vm, void *nativePointer, size_t nativeB… in New()
1926 return JSNApiHelper::ToLocal<NativePointerRef>(JSHandle<JSTaggedValue>(obj)); in New()
1929 Local<NativePointerRef> NativePointerRef::New( in New()
1936 return JSNApiHelper::ToLocal<NativePointerRef>(JSHandle<JSTaggedValue>(obj)); in New()
1939 void *NativePointerRef::Value() in Value()
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp495 return DescriptionForNativePointer(Local<NativePointerRef>(tagged)); in DescriptionForObject()
500 std::string ObjectRemoteObject::DescriptionForNativePointer(const Local<NativePointerRef> &tagged) in DescriptionForNativePointer()
Dpt_types.h588 static std::string DescriptionForNativePointer(const Local<NativePointerRef> &tagged);