| /arkcompiler/runtime_core/libziparchive/ |
| D | zip_archive.cpp | 32 int OpenArchive(ZipArchiveHandle &handle, const char *path) in OpenArchive() 42 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp) in OpenArchiveFile() 52 int CloseArchive(ZipArchiveHandle &handle) in CloseArchive() 66 int CloseArchiveFile(ZipArchiveHandle &handle) in CloseArchiveFile() 80 int GetGlobalFileInfo(ZipArchiveHandle &handle, GlobalStat *gstat) in GetGlobalFileInfo() 90 int GoToNextFile(ZipArchiveHandle &handle) in GoToNextFile() 100 int LocateFile(ZipArchiveHandle &handle, const char *filename) in LocateFile() 110 int GetCurrentFileInfo(ZipArchiveHandle &handle, EntryFileStat *entry) in GetCurrentFileInfo() 120 int OpenCurrentFile(ZipArchiveHandle &handle) in OpenCurrentFile() 130 void GetCurrentFileOffset(ZipArchiveHandle &handle, EntryFileStat *entry) in GetCurrentFileOffset() [all …]
|
| /arkcompiler/runtime_core/platforms/windows/libpandabase/ |
| D | library_loader.cpp | 24 void *handle = reinterpret_cast<void *>(module); in Load() local 32 Expected<void *, Error> ResolveSymbol(const LibraryHandle &handle, std::string_view name) in ResolveSymbol() 43 void CloseHandle(void *handle) in CloseHandle()
|
| /arkcompiler/toolchain/inspector/ |
| D | library_loader.cpp | 35 void* handle = reinterpret_cast<void*>(module); in Load() local 45 void* ResolveSymbol(void* handle, std::string_view symbol) in ResolveSymbol() 57 void CloseHandle(void* handle) in CloseHandle()
|
| /arkcompiler/runtime_core/libpandabase/os/ |
| D | library_loader.h | 43 explicit LibraryHandle(void *handle) : handle_(handle) {} in LibraryHandle() 45 LibraryHandle(LibraryHandle &&handle) noexcept in LibraryHandle() function
|
| /arkcompiler/runtime_core/platforms/unix/libpandabase/ |
| D | library_loader_resolve_symbol.cpp | 28 Expected<void *, Error> ResolveSymbol(const LibraryHandle &handle, std::string_view name) in ResolveSymbol() 38 void CloseHandle(void *handle) in CloseHandle()
|
| D | library_loader_load.cpp | 29 void *handle = dlopen(filename.data(), RTLD_LAZY); in Load() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_handle.h | 99 explicit JSHandle(const JSHandle<S> &handle) : address_(handle.GetAddress()) {} in JSHandle() 102 inline static JSHandle<T> Cast(const JSHandle<S> &handle) in Cast() 215 explicit JSMutableHandle(const JSThread *thread, const JSHandle<S> &handle) in JSMutableHandle() 224 inline static JSMutableHandle<T> Cast(const JSMutableHandle<S> &handle) in Cast() 238 void Update(const JSHandle<S> &handle) in Update()
|
| D | global_handle_collection.h | 41 void Dispose(JSHandle<T> handle) in Dispose()
|
| /arkcompiler/runtime_core/runtime/ |
| D | handle_scope.h | 77 inline HandleBase Escape(HandleBase handle) in Escape()
|
| D | loadable_agent.cpp | 34 auto handle = os::library_loader::Load(library_path_); in Load() local
|
| /arkcompiler/runtime_core/compiler/aot/ |
| D | aot_file.cpp | 32 …xpected<const uint8_t *, std::string> LoadSymbol(const panda::os::library_loader::LibraryHandle &h… in LoadSymbol() 57 auto handle = std::move(handle_load.Value()); in Open() local
|
| D | aot_file.h | 40 …AotFile(panda::os::library_loader::LibraryHandle &&handle, Span<const uint8_t> aot_data, Span<cons… in AotFile()
|
| /arkcompiler/runtime_core/tests/fuzztest/openuncompressedarchive_fuzzer/ |
| D | openuncompressedarchive_fuzzer.cpp | 21 void CloseAndRemoveZipFile(panda::ZipArchiveHandle &handle, FILE *fp, const char *filename) in CloseAndRemoveZipFile()
|
| /arkcompiler/ets_runtime/ecmascript/platform/unix/ohos/ |
| D | backtrace.cpp | 42 void *handle = dlopen(LIB_UNWIND_SO_NAME.c_str(), RTLD_NOW); in Backtrace() local
|
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | mergeProgram.cpp | 36 int handle = 0; in GetProtoFiles() local
|
| /arkcompiler/ets_runtime/ecmascript/debugger/ |
| D | js_debugger_manager.h | 90 void SetDebugLibraryHandle(LibraryHandle handle) in SetDebugLibraryHandle()
|
| /arkcompiler/runtime_core/runtime/tests/ |
| D | mem_stats_additional_info_test.cpp | 90 [[maybe_unused]] VMHandle<ObjectHeader> handle(thread_, string_object); in TEST_F() local
|
| D | g1gc_fullgc_test.cpp | 249 for (auto *handle : hv) { in DumpHandles() local 269 for (auto *handle : hv) { in DeleteHandles() local
|
| D | mem_stats_gen_gc_test.cpp | 275 for (auto *handle : hv) { in DumpHandles() local 295 for (auto *handle : hv) { in DeleteHandles() local
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | file.cpp | 127 void OpenPandaFileFromZipErrorHandler(ZipArchiveHandle &handle) in OpenPandaFileFromZipErrorHandler() 136 std::unique_ptr<const panda_file::File> OpenPandaFileFromZipFile(ZipArchiveHandle &handle, std::str… in OpenPandaFileFromZipFile() 175 std::unique_ptr<const panda_file::File> HandleArchive(ZipArchiveHandle &handle, FILE *fp, std::stri… in HandleArchive()
|
| /arkcompiler/runtime_core/runtime/mem/ |
| D | heap_manager.cpp | 113 VMHandle<ObjectHeader> handle(thread, object); in AllocateObject() local
|
| /arkcompiler/toolchain/tooling/agent/ |
| D | heapprofiler_impl.cpp | 319 void HeapProfilerImpl::HeapTrackingCallback(uv_timer_t* handle) in HeapTrackingCallback()
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_object.cpp | 329 JSHandle<JSObject> handle = JSTaggedValue::ToObject(thread, func); in GetOwnPropertyDescriptor() local
|
| /arkcompiler/runtime_core/runtime/tooling/ |
| D | debugger.cpp | 637 VMHandle<ObjectHeader> handle(thread, exceptionObject); in ExceptionThrow() local
|
| /arkcompiler/runtime_core/runtime/entrypoints/ |
| D | entrypoints.cpp | 208 VMHandle<coretypes::Array> handle(thread, coretypes::Array::Create(klass, arr_size)); in CreateMultiArrayRecEntrypoint() local
|