Home
last modified time | relevance | path

Searched refs:GetNativePointerField (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/test/fuzztest/getnativepointerfield_fuzzer/
Dgetnativepointerfield_fuzzer.cpp43 object->GetNativePointerField(vm, index); in GetNativePointerFieldFuzzTest()
/arkcompiler/ets_runtime/ecmascript/
Djs_object.h387 void* GetNativePointerField(int32_t index) const;
Djs_object.cpp2898 void *ECMAObject::GetNativePointerField(int32_t index) const in GetNativePointerField() function in panda::ecmascript::ECMAObject
/arkcompiler/ets_runtime/ecmascript/napi/
DREADME.md3827 ### GetNativePointerField subsection
3829 void *ObjectRef::GetNativePointerField(int32_t index);
3853 void *ptr = object.GetNativePointerField(33);
Djsnapi_expo.cpp2914 void *ObjectRef::GetNativePointerField(const EcmaVM *vm, int32_t index) in GetNativePointerField() function in panda::ObjectRef
2921 return object->GetNativePointerField(index); in GetNativePointerField()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_sample.cpp727 A *value1 = static_cast<A *>(object->GetNativePointerField(vm, cnt2)); in NativePointer()
728 A *value2 = static_cast<A *>(object->GetNativePointerField(vm, cnt3)); in NativePointer()
Djsnapi_first_tests.cpp1681 void *res1 = object->GetNativePointerField(vm_, 33); in HWTEST_F_L0()
Dffi_workload.cpp5432 object->GetNativePointerField(vm_, 33); in HWTEST_F_L0()
5435 TEST_TIME(ObjectRef::GetNativePointerField); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h827 void *GetNativePointerField(const EcmaVM *vm, int32_t index);
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_object_test.cpp1263 void *pointer = obj->GetNativePointerField(0); in HWTEST_F_L0()