Home
last modified time | relevance | path

Searched refs:localAddress (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp3522 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 …]
DJSNapi接口说明.md722 uintptr_t JSNApi::SetWeakCallback(const EcmaVM *vm, uintptr_t localAddress, void *ref, WeakRefClear…
731 | localAddress | uintptr_t | �� | ���ص�ַ��ָ���õ����������ڴ��ַ …
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h1321 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);