Lines Matching refs:localAddress
327 uintptr_t JSNApi::GetHandleAddr(const EcmaVM *vm, uintptr_t localAddress) in GetHandleAddr() argument
329 if (localAddress == 0) { in GetHandleAddr()
332 JSTaggedType value = *(reinterpret_cast<JSTaggedType *>(localAddress)); in GetHandleAddr()
336 uintptr_t JSNApi::GetGlobalHandleAddr(const EcmaVM *vm, uintptr_t localAddress) in GetGlobalHandleAddr() argument
338 if (localAddress == 0) { in GetGlobalHandleAddr()
341 JSTaggedType value = *(reinterpret_cast<JSTaggedType *>(localAddress)); in GetGlobalHandleAddr()
345 uintptr_t JSNApi::SetWeak(const EcmaVM *vm, uintptr_t localAddress) in SetWeak() argument
347 if (localAddress == 0) { in SetWeak()
350 return vm->GetJSThread()->GetEcmaGlobalStorage()->SetWeak(localAddress); in SetWeak()
353 uintptr_t JSNApi::ClearWeak(const EcmaVM *vm, uintptr_t localAddress) in ClearWeak() argument
355 if (localAddress == 0) { in ClearWeak()
358 …if (JSTaggedValue(reinterpret_cast<ecmascript::EcmaGlobalStorage::Node *>(localAddress)->GetObject… in ClearWeak()
363 return vm->GetJSThread()->GetEcmaGlobalStorage()->ClearWeak(localAddress); in ClearWeak()
366 bool JSNApi::IsWeak(const EcmaVM *vm, uintptr_t localAddress) in IsWeak() argument
368 if (localAddress == 0) { in IsWeak()
371 return vm->GetJSThread()->GetEcmaGlobalStorage()->IsWeak(localAddress); in IsWeak()