Home
last modified time | relevance | path

Searched refs:address_ (Results 1 - 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/napi/include/
H A Djsnapi.h462 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 Djsnapi_expo.h218 inline Local(const Local<S> &current) : 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 Dvm_handle.h42 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 Djs_handle.h79 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 Dhandle_base.h69 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 Dhandle_base-inl.h27 address_ = thread->GetTopScope<T>()->NewHandle(value); in HandleBase()
/arkcompiler/toolchain/tooling/client/domain/
H A Dprofiler_client.h47 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 Dline_number_program.h38 address_ += v; in AdvancePc()
91 return address_; in GetAddress()
118 uint32_t address_ {0};
/arkcompiler/runtime_core/static_core/libpandafile/
H A Dline_number_program.h38 address_ += v; in AdvancePc()
88 return address_; in GetAddress()
115 uint32_t address_ {0};
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
H A Dheap_snapshot.h73 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 Delf_builder.h488 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 Dinst.h5806 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};

Completed in 15 milliseconds