Searched refs:localAddress (Results 1 – 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi_expo.cpp | 3522 uintptr_t JSNApi::GetHandleAddr(const EcmaVM *vm, uintptr_t localAddress) in GetHandleAddr() argument 3524 if (localAddress == 0) { in GetHandleAddr() 3528 JSTaggedType value = *(reinterpret_cast<JSTaggedType *>(localAddress)); in GetHandleAddr() 3532 uintptr_t JSNApi::GetGlobalHandleAddr(const EcmaVM *vm, uintptr_t localAddress) in GetGlobalHandleAddr() argument 3534 if (localAddress == 0) { in GetGlobalHandleAddr() 3538 JSTaggedType value = *(reinterpret_cast<JSTaggedType *>(localAddress)); in GetGlobalHandleAddr() 3542 uintptr_t JSNApi::SetWeak(const EcmaVM *vm, uintptr_t localAddress) in SetWeak() argument 3544 if (localAddress == 0) { in SetWeak() 3548 return thread->SetWeak(localAddress); in SetWeak() 3551 uintptr_t JSNApi::SetWeakCallback(const EcmaVM *vm, uintptr_t localAddress, void *ref, in SetWeakCallback() argument [all …]
|
D | JSNapi接口说明.md | 722 uintptr_t JSNApi::SetWeakCallback(const EcmaVM *vm, uintptr_t localAddress, void *ref, WeakRefClear… 731 | localAddress | uintptr_t | �� | ���ص�ַ��ָ���õ����������ڴ��ַ …
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
D | jsnapi_expo.h | 1321 static uintptr_t GetHandleAddr(const EcmaVM *vm, uintptr_t localAddress); 1322 static uintptr_t GetGlobalHandleAddr(const EcmaVM *vm, uintptr_t localAddress); 1323 static uintptr_t SetWeak(const EcmaVM *vm, uintptr_t localAddress); 1324 static uintptr_t SetWeakCallback(const EcmaVM *vm, uintptr_t localAddress, void *ref, 1327 static uintptr_t ClearWeak(const EcmaVM *vm, uintptr_t localAddress); 1328 static bool IsWeak(const EcmaVM *vm, uintptr_t localAddress);
|