/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | jsnapi.h | 462 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*current)); in Global() 471 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*current)); in Global() 479 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*current)); in CopyableGlobal() 488 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*current)); in CopyableGlobal() 499 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*that)); in Copy() 511 address_ = JSNApi::GetGlobalHandleAddr(vm_, reinterpret_cast<uintptr_t>(*that)); in Copy() 520 address_ = that.address_; in Move() 522 that.address_ = 0U; in Move() 529 JSNApi::DisposeGlobalHandleAddr(vm_, address_); in Free() [all...] |
H A D | jsnapi_expo.h | 218 inline Local(const Local<S> ¤t) : address_(reinterpret_cast<uintptr_t>(*current)) in Local() 246 address_ = 0; in Empty() 254 explicit inline Local(uintptr_t addr) : address_(addr) {} in Local() 259 return reinterpret_cast<T *>(address_); in GetAddress() 261 uintptr_t address_ = 0U; member in panda::Local 334 address_ = 0; in Empty() 368 return reinterpret_cast<T *>(address_); in GetAddress() 375 uintptr_t address_ = 0U; member in panda::CopyableGlobal 428 address_ = 0; in Empty() 466 return reinterpret_cast<T *>(address_); in GetAddress() 469 uintptr_t address_ = 0U; global() member in panda::Global [all...] |
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | vm_handle.h | 42 address_ = scope->NewHandle(object); in VMHandle() 44 address_ = reinterpret_cast<uintptr_t>(nullptr); in VMHandle() 65 if (address_ == reinterpret_cast<uintptr_t>(nullptr)) { in GetPtr() 90 this->address_ = scope_->NewHandle(object); in VMMutableHandle() 92 this->address_ = reinterpret_cast<uintptr_t>(nullptr); in VMMutableHandle() 100 if (this->address_ == reinterpret_cast<uintptr_t>(nullptr)) { in Update() 101 this->address_ = scope_->NewHandle(object); in Update() 103 *reinterpret_cast<ObjectHeader **>(this->address_) = object; in Update()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_handle.h | 79 inline JSHandle() : address_(reinterpret_cast<uintptr_t>(nullptr)) {} in JSHandle() 86 address_ = EcmaHandleScope::NewHandle(const_cast<JSThread *>(thread), value.GetRawData()); in JSHandle() 92 address_ = EcmaHandleScope::NewPrimitiveHandle( in JSHandle() 96 address_ = EcmaHandleScope::NewHandle(const_cast<JSThread *>(thread), value.GetRawData()); in JSHandle() 101 address_ = EcmaHandleScope::NewHandle(const_cast<JSThread *>(thread), JSTaggedValue(value).GetRawData()); in JSHandle() 106 return address_; in GetAddress() 110 explicit JSHandle(const JSHandle<S> &handle) : address_(handle.GetAddress()) {} in JSHandle() 168 inline explicit JSHandle(uintptr_t slot) : address_(slot) in JSHandle() 184 inline explicit JSHandle(const JSTaggedType *slot) : address_(reinterpret_cast<uintptr_t>(slot)) {} in JSHandle() 185 inline explicit JSHandle(const T *const *slot) : address_(reinterpret_cas in JSHandle() 187 uintptr_t address_; // NOLINT(misc-non-private-member-variables-in-classes) global() member in panda::panda::ecmascript::JSHandle [all...] |
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | handle_base.h | 69 HandleBase() : address_(reinterpret_cast<uintptr_t>(nullptr)) {} in HandleBase() 76 return address_; in GetAddress() 83 explicit HandleBase(uintptr_t addr) : address_(addr) {} in HandleBase() 85 uintptr_t address_; // NOLINT(misc-non-private-member-variables-in-classes) member in ark::HandleBase
|
H A D | handle_base-inl.h | 27 address_ = thread->GetTopScope<T>()->NewHandle(value); in HandleBase()
|
/arkcompiler/toolchain/tooling/client/domain/ |
H A D | profiler_client.h | 47 address_ = address; in SetAddress() 52 return address_; in GetAddress() 57 std::string address_ = "/data/"; member in OHOS::ArkCompiler::Toolchain::ProfilerSingleton
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | line_number_program.h | 38 address_ += v; in AdvancePc() 91 return address_; in GetAddress() 118 uint32_t address_ {0};
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | line_number_program.h | 38 address_ += v; in AdvancePc() 88 return address_; in GetAddress() 115 uint32_t address_ {0};
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_snapshot.h | 73 address_(address), in Node() 134 return address_; in GetAddress() 138 address_ = address; in SetAddress() 171 JSTaggedType address_ {0};
|
/arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
H A D | elf_builder.h | 488 AddrPatch(ElfAddr *addr, PatchFunc func) : address_(addr), patchFunc_(std::move(func)) {} in AddrPatch() 491 *address_ = patchFunc_(); in Patch() 495 ElfAddr *address_; member in ark::compiler::ElfBuilder::AddrPatch
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | inst.h | 5806 GlobalVarInst(Initializer t, uintptr_t address) : Base(std::move(t)), address_(address) {} 5809 : Base(std::move(t)), TypeIdMixin(std::move(m)), address_(address) 5840 return address_; 5844 uintptr_t address_ {0};
|