| /arkcompiler/runtime_core/tests/fuzztest/ziparchivehandle_fuzzer/ |
| D | ziparchivehandle_fuzzer.cpp | 27 panda::ZipArchiveHandle handle = nullptr; in ZipArchiveHandleFuzzTest() local 32 panda::ZipArchiveHandle handle = nullptr; in ZipArchiveHandleFuzzTest() local 37 panda::ZipArchiveHandle handle = nullptr; in ZipArchiveHandleFuzzTest() local 42 panda::ZipArchiveHandle handle = nullptr; in ZipArchiveHandleFuzzTest() local 54 panda::ZipArchiveHandle handle = nullptr; in ZipArchiveHandleFuzzTest() local 60 panda::ZipArchiveHandle handle = nullptr; in ZipArchiveHandleFuzzTest() local 66 panda::ZipArchiveHandle handle = nullptr; in ZipArchiveHandleFuzzTest() local
|
| /arkcompiler/runtime_core/static_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/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 | 38 void* handle = reinterpret_cast<void*>(module); in Load() local 48 void* ResolveSymbol(void* handle, std::string_view symbol) in ResolveSymbol() 60 void CloseHandle(void* handle) in CloseHandle()
|
| /arkcompiler/runtime_core/static_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/tooling/client/ark_cli/ |
| D | main.cpp | 34 uv_close(reinterpret_cast<uv_handle_t*>(g_inputSignal), [](uv_handle_t* handle) { in ReleaseHandle() 47 uv_close(reinterpret_cast<uv_handle_t*>(g_socketSignal), [](uv_handle_t* handle) { in ReleaseHandle() 55 uv_close(reinterpret_cast<uv_handle_t*>(g_releaseHandle), [](uv_handle_t* handle) { in ReleaseHandle() 75 void InputOnMessage(uv_async_t *handle) in InputOnMessage() 140 void SocketOnMessage([[maybe_unused]] uv_async_t *handle) in SocketOnMessage()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_native_library.cpp | 21 auto handle = os::library_loader::Load(name); in Load() local 29 EtsNativeLibrary::EtsNativeLibrary(PandaString name, os::library_loader::LibraryHandle &&handle) in EtsNativeLibrary()
|
| /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/static_core/platforms/unix/libpandabase/ |
| D | library_loader_resolve_symbol.cpp | 22 Expected<void *, Error> ResolveSymbol(const LibraryHandle &handle, std::string_view name) in ResolveSymbol() 32 void CloseHandle(void *handle) in CloseHandle()
|
| D | library_loader_load.cpp | 23 void *handle = dlopen(filename.data(), RTLD_LAZY); in Load() local
|
| /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 | 110 explicit JSHandle(const JSHandle<S> &handle) : address_(handle.GetAddress()) {} in JSHandle() 113 inline static JSHandle<T> Cast(const JSHandle<S> &handle) in Cast() 218 JSMutableHandle(const JSThread *thread, const JSHandle<S> &handle) in JSMutableHandle() 227 inline static JSMutableHandle<T> Cast(const JSMutableHandle<S> &handle) in Cast() 241 void Update(const JSHandle<S> &handle) in Update()
|
| D | global_handle_collection.h | 41 void Dispose(JSHandle<T> handle) in Dispose()
|
| /arkcompiler/runtime_core/tests/fuzztest/getglobalfileinfo_fuzzer/ |
| D | getglobalfileinfo_fuzzer.cpp | 25 panda::ZipArchiveHandle handle = nullptr; in GetGlobalFileInfoFuzzTest() local 44 panda::ZipArchiveHandle handle = nullptr; in GetGlobalFileInfoFuzzTest() local
|
| /arkcompiler/runtime_core/static_core/libpandabase/os/ |
| D | library_loader.h | 54 explicit LibraryHandle(void *handle) : handle_(handle) {} in LibraryHandle() 56 LibraryHandle(LibraryHandle &&handle) noexcept in LibraryHandle() function
|
| /arkcompiler/runtime_core/static_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(libraryPath_); in Load() local
|
| /arkcompiler/runtime_core/static_core/compiler/aot/ |
| D | aot_file.cpp | 32 …Expected<const uint8_t *, std::string> LoadSymbol(const ark::os::library_loader::LibraryHandle &ha… in LoadSymbol() 57 auto handle = std::move(handleLoad.Value()); in Open() local
|
| /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/runtime_core/static_core/tests/fuzztest/openuncompressedarchive_fuzzer/ |
| D | openuncompressedarchive_fuzzer.cpp | 21 void CloseAndRemoveZipFile(ark::ZipArchiveHandle &handle, FILE *fp, const char *filename) in CloseAndRemoveZipFile()
|
| /arkcompiler/ets_runtime/ecmascript/platform/windows/ |
| D | file.cpp | 190 void *FindSymbol([[maybe_unused]] void *handle, [[maybe_unused]] const char *symbol) in FindSymbol() 196 int CloseLib([[maybe_unused]] void *handle) in CloseLib()
|
| /arkcompiler/ets_runtime/ecmascript/platform/unix/ |
| D | file.cpp | 190 void *FindSymbol(void *handle, const char *symbol) in FindSymbol() 195 int CloseLib(void *handle) in CloseLib()
|
| /arkcompiler/toolchain/tooling/client/ark_multi/ |
| D | main.cpp | 201 uv_async_init(loop, g_exitSignal, []([[maybe_unused]] uv_async_t* handle) { in Main() 216 uv_close(reinterpret_cast<uv_handle_t*>(g_exitSignal), [] (uv_handle_t* handle) { in Main()
|