From 6096dc5f94bf69cb73b0fc89d36bf125f7ff6467 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 14 Jul 2019 03:06:20 -0400 Subject: move some of the installation from cmake to zig build This moves the installation of shipped source files from large CMakeLists.txt lists to zig build recursive directory installation. On my computer a cmake `make install` takes 2.4 seconds even when it has to do nothing, and prints a lot of unnecessary lines to stdout that say "up-to-date: [some file it is installing]". After this commit, the default output of `make` is down to 1 second, and it does not print any junk to stdout. Further, a `make install` is no longer required and `make` is sufficient. This closes #2874. It also closes #2585. `make` now always invokes `zig build` for installing files and libuserland.a, and zig's own caching system makes that go fast. --- src/config.h.in | 2 -- src/main.cpp | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) (limited to 'src') diff --git a/src/config.h.in b/src/config.h.in index 93e31ad9b7..a99aab0d72 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -23,7 +23,5 @@ #define ZIG_LLD_LIBRARIES "@LLD_LIBRARIES@" #define ZIG_LLVM_CONFIG_EXE "@LLVM_CONFIG_EXE@" #define ZIG_DIA_GUIDS_LIB "@ZIG_DIA_GUIDS_LIB_ESCAPED@" -#define ZIG_STD_FILES "@ZIG_STD_FILES@" -#define ZIG_C_HEADER_FILES "@ZIG_C_HEADER_FILES@" #endif diff --git a/src/main.cpp b/src/main.cpp index 08671221c8..e58eb253f7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -305,14 +305,12 @@ int main(int argc, char **argv) { Error err; if (argc == 2 && strcmp(argv[1], "BUILD_INFO") == 0) { - printf("%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n", + printf("%s\n%s\n%s\n%s\n%s\n%s\n", ZIG_CMAKE_BINARY_DIR, ZIG_CXX_COMPILER, ZIG_LLVM_CONFIG_EXE, ZIG_LLD_INCLUDE_PATH, ZIG_LLD_LIBRARIES, - ZIG_STD_FILES, - ZIG_C_HEADER_FILES, ZIG_DIA_GUIDS_LIB); return 0; } -- cgit v1.2.3 From b23ace27db438652898b671f3417730ddc662101 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 01:41:06 -0400 Subject: fix the build on windows --- src/main.cpp | 3 +++ std/build.zig | 13 ++++++++++++- std/fs.zig | 3 ++- std/fs/file.zig | 22 +++++++++++----------- std/os/windows.zig | 26 +++++++++++++++++--------- 5 files changed, 45 insertions(+), 22 deletions(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index e58eb253f7..ce68e53d85 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1229,6 +1229,9 @@ int main(int argc, char **argv) { return term.code; } else if (cmd == CmdBuild) { if (g->enable_cache) { +#if defined(ZIG_OS_WINDOWS) + buf_replace(&g->output_file_path, '/', '\\'); +#endif if (printf("%s\n", buf_ptr(&g->output_file_path)) < 0) return EXIT_FAILURE; } diff --git a/std/build.zig b/std/build.zig index 30dd983d29..f4e9c2b53b 100644 --- a/std/build.zig +++ b/std/build.zig @@ -216,6 +216,17 @@ pub const Builder = struct { return mem.dupe(self.allocator, u8, bytes) catch unreachable; } + fn dupePath(self: *Builder, bytes: []const u8) []u8 { + const the_copy = self.dupe(bytes); + for (the_copy) |*byte| { + switch (byte.*) { + '/', '\\' => byte.* = fs.path.sep, + else => {}, + } + } + return the_copy; + } + pub fn addWriteFile(self: *Builder, file_path: []const u8, data: []const u8) *WriteFileStep { const write_file_step = self.allocator.create(WriteFileStep) catch unreachable; write_file_step.* = WriteFileStep.init(self, file_path, data); @@ -1412,7 +1423,7 @@ pub const LibExeObjStep = struct { } pub fn setOutputDir(self: *LibExeObjStep, dir: []const u8) void { - self.output_dir = self.builder.dupe(dir); + self.output_dir = self.builder.dupePath(dir); } pub fn install(self: *LibExeObjStep) void { diff --git a/std/fs.zig b/std/fs.zig index c656c34533..6b860ad2a2 100644 --- a/std/fs.zig +++ b/std/fs.zig @@ -110,7 +110,6 @@ pub fn updateFileMode(source_path: []const u8, dest_path: []const u8, mode: ?Fil } } const actual_mode = mode orelse src_stat.mode; - const in_stream = &src_file.inStream().stream; // TODO this logic could be made more efficient by calling makePath, once // that API does not require an allocator @@ -137,6 +136,8 @@ pub fn updateFileMode(source_path: []const u8, dest_path: []const u8, mode: ?Fil } else unreachable; defer atomic_file.deinit(); + const in_stream = &src_file.inStream().stream; + var buf: [mem.page_size * 6]u8 = undefined; while (true) { const amt = try in_stream.readFull(buf[0..]); diff --git a/std/fs/file.zig b/std/fs/file.zig index 18fe658366..55cc2fd97f 100644 --- a/std/fs/file.zig +++ b/std/fs/file.zig @@ -224,13 +224,13 @@ pub const File = struct { mode: Mode, /// access time in nanoseconds - atime: u64, + atime: i64, /// last modification time in nanoseconds - mtime: u64, + mtime: i64, /// creation time in nanoseconds - ctime: u64, + ctime: i64, }; pub const StatError = os.FStatError; @@ -251,9 +251,9 @@ pub const File = struct { return Stat{ .size = @bitCast(u64, st.size), .mode = st.mode, - .atime = @bitCast(usize, st.atim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.atim.tv_nsec), - .mtime = @bitCast(usize, st.mtim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.mtim.tv_nsec), - .ctime = @bitCast(usize, st.ctim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.ctim.tv_nsec), + .atime = st.atim.tv_sec * std.time.ns_per_s + st.atim.tv_nsec, + .mtime = st.mtim.tv_sec * std.time.ns_per_s + st.mtim.tv_nsec, + .ctime = st.ctim.tv_sec * std.time.ns_per_s + st.ctim.tv_nsec, }; } @@ -261,7 +261,7 @@ pub const File = struct { /// `atime`: access timestamp in nanoseconds /// `mtime`: last modification timestamp in nanoseconds - pub fn updateTimes(self: File, atime: u64, mtime: u64) UpdateTimesError!void { + pub fn updateTimes(self: File, atime: i64, mtime: i64) UpdateTimesError!void { if (windows.is_the_target) { const atime_ft = windows.nanoSecondsToFileTime(atime); const mtime_ft = windows.nanoSecondsToFileTime(mtime); @@ -269,12 +269,12 @@ pub const File = struct { } const times = [2]os.timespec{ os.timespec{ - .tv_sec = @bitCast(isize, atime / std.time.ns_per_s), - .tv_nsec = @bitCast(isize, atime % std.time.ns_per_s), + .tv_sec = atime / std.time.ns_per_s, + .tv_nsec = atime % std.time.ns_per_s, }, os.timespec{ - .tv_sec = @bitCast(isize, mtime / std.time.ns_per_s), - .tv_nsec = @bitCast(isize, mtime % std.time.ns_per_s), + .tv_sec = mtime / std.time.ns_per_s, + .tv_nsec = mtime % std.time.ns_per_s, }, }; try os.futimens(self.handle, ×); diff --git a/std/os/windows.zig b/std/os/windows.zig index a608839b80..68c643db81 100644 --- a/std/os/windows.zig +++ b/std/os/windows.zig @@ -783,16 +783,24 @@ pub fn SetFileTime( } } -pub fn fileTimeToNanoSeconds(ft: FILETIME) u64 { - const sec = (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime; - return sec * std.time.ns_per_s; -} - -pub fn nanoSecondsToFileTime(ns: u64) FILETIME { - const sec = ns / std.time.ns_per_s; +/// A file time is a 64-bit value that represents the number of 100-nanosecond +/// intervals that have elapsed since 12:00 A.M. January 1, 1601 Coordinated +/// Universal Time (UTC). +/// This function returns the number of nanoseconds since the canonical epoch, +/// which is the POSIX one (Jan 01, 1970 AD). +pub fn fileTimeToNanoSeconds(ft: FILETIME) i64 { + const hns = @bitCast(i64, (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime); + const adjusted_epoch = hns + std.time.epoch.windows * (std.time.ns_per_s / 100); + return adjusted_epoch * 100; +} + +/// Converts a number of nanoseconds since the POSIX epoch to a Windows FILETIME. +pub fn nanoSecondsToFileTime(ns: i64) FILETIME { + const hns = @divFloor(ns, 100); + const adjusted_epoch = hns - std.time.epoch.windows * (std.time.ns_per_s / 100); return FILETIME{ - .dwHighDateTime = @truncate(u32, sec >> 32), - .dwLowDateTime = @truncate(u32, sec), + .dwHighDateTime = @truncate(u32, @bitCast(u64, adjusted_epoch) >> 32), + .dwLowDateTime = @truncate(u32, @bitCast(u64, adjusted_epoch)), }; } -- cgit v1.2.3 From 0cd660462f6b1f5384df9b41c4c85e183d2589ac Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 01:47:26 -0400 Subject: move install_files.h to not be generated code --- CMakeLists.txt | 1811 --------------------------------------------------- src/install_files.h | 1802 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1802 insertions(+), 1811 deletions(-) create mode 100644 src/install_files.h (limited to 'src') diff --git a/CMakeLists.txt b/CMakeLists.txt index f994496cea..21a6ce82e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -458,1806 +458,6 @@ set(ZIG_CPP_SOURCES "${CMAKE_SOURCE_DIR}/src/windows_sdk.cpp" ) -set(ZIG_MUSL_SRC_FILES - "musl/src/aio/aio.c" - "musl/src/aio/aio_suspend.c" - "musl/src/aio/lio_listio.c" - "musl/src/complex/__cexp.c" - "musl/src/complex/__cexpf.c" - "musl/src/complex/cabs.c" - "musl/src/complex/cabsf.c" - "musl/src/complex/cabsl.c" - "musl/src/complex/cacos.c" - "musl/src/complex/cacosf.c" - "musl/src/complex/cacosh.c" - "musl/src/complex/cacoshf.c" - "musl/src/complex/cacoshl.c" - "musl/src/complex/cacosl.c" - "musl/src/complex/carg.c" - "musl/src/complex/cargf.c" - "musl/src/complex/cargl.c" - "musl/src/complex/casin.c" - "musl/src/complex/casinf.c" - "musl/src/complex/casinh.c" - "musl/src/complex/casinhf.c" - "musl/src/complex/casinhl.c" - "musl/src/complex/casinl.c" - "musl/src/complex/catan.c" - "musl/src/complex/catanf.c" - "musl/src/complex/catanh.c" - "musl/src/complex/catanhf.c" - "musl/src/complex/catanhl.c" - "musl/src/complex/catanl.c" - "musl/src/complex/ccos.c" - "musl/src/complex/ccosf.c" - "musl/src/complex/ccosh.c" - "musl/src/complex/ccoshf.c" - "musl/src/complex/ccoshl.c" - "musl/src/complex/ccosl.c" - "musl/src/complex/cexp.c" - "musl/src/complex/cexpf.c" - "musl/src/complex/cexpl.c" - "musl/src/complex/cimag.c" - "musl/src/complex/cimagf.c" - "musl/src/complex/cimagl.c" - "musl/src/complex/clog.c" - "musl/src/complex/clogf.c" - "musl/src/complex/clogl.c" - "musl/src/complex/conj.c" - "musl/src/complex/conjf.c" - "musl/src/complex/conjl.c" - "musl/src/complex/cpow.c" - "musl/src/complex/cpowf.c" - "musl/src/complex/cpowl.c" - "musl/src/complex/cproj.c" - "musl/src/complex/cprojf.c" - "musl/src/complex/cprojl.c" - "musl/src/complex/creal.c" - "musl/src/complex/crealf.c" - "musl/src/complex/creall.c" - "musl/src/complex/csin.c" - "musl/src/complex/csinf.c" - "musl/src/complex/csinh.c" - "musl/src/complex/csinhf.c" - "musl/src/complex/csinhl.c" - "musl/src/complex/csinl.c" - "musl/src/complex/csqrt.c" - "musl/src/complex/csqrtf.c" - "musl/src/complex/csqrtl.c" - "musl/src/complex/ctan.c" - "musl/src/complex/ctanf.c" - "musl/src/complex/ctanh.c" - "musl/src/complex/ctanhf.c" - "musl/src/complex/ctanhl.c" - "musl/src/complex/ctanl.c" - "musl/src/conf/confstr.c" - "musl/src/conf/fpathconf.c" - "musl/src/conf/legacy.c" - "musl/src/conf/pathconf.c" - "musl/src/conf/sysconf.c" - "musl/src/crypt/crypt.c" - "musl/src/crypt/crypt_blowfish.c" - "musl/src/crypt/crypt_des.c" - "musl/src/crypt/crypt_des.h" - "musl/src/crypt/crypt_md5.c" - "musl/src/crypt/crypt_r.c" - "musl/src/crypt/crypt_sha256.c" - "musl/src/crypt/crypt_sha512.c" - "musl/src/crypt/encrypt.c" - "musl/src/ctype/__ctype_b_loc.c" - "musl/src/ctype/__ctype_get_mb_cur_max.c" - "musl/src/ctype/__ctype_tolower_loc.c" - "musl/src/ctype/__ctype_toupper_loc.c" - "musl/src/ctype/alpha.h" - "musl/src/ctype/isalnum.c" - "musl/src/ctype/isalpha.c" - "musl/src/ctype/isascii.c" - "musl/src/ctype/isblank.c" - "musl/src/ctype/iscntrl.c" - "musl/src/ctype/isdigit.c" - "musl/src/ctype/isgraph.c" - "musl/src/ctype/islower.c" - "musl/src/ctype/isprint.c" - "musl/src/ctype/ispunct.c" - "musl/src/ctype/isspace.c" - "musl/src/ctype/isupper.c" - "musl/src/ctype/iswalnum.c" - "musl/src/ctype/iswalpha.c" - "musl/src/ctype/iswblank.c" - "musl/src/ctype/iswcntrl.c" - "musl/src/ctype/iswctype.c" - "musl/src/ctype/iswdigit.c" - "musl/src/ctype/iswgraph.c" - "musl/src/ctype/iswlower.c" - "musl/src/ctype/iswprint.c" - "musl/src/ctype/iswpunct.c" - "musl/src/ctype/iswspace.c" - "musl/src/ctype/iswupper.c" - "musl/src/ctype/iswxdigit.c" - "musl/src/ctype/isxdigit.c" - "musl/src/ctype/nonspacing.h" - "musl/src/ctype/punct.h" - "musl/src/ctype/toascii.c" - "musl/src/ctype/tolower.c" - "musl/src/ctype/toupper.c" - "musl/src/ctype/towctrans.c" - "musl/src/ctype/wcswidth.c" - "musl/src/ctype/wctrans.c" - "musl/src/ctype/wcwidth.c" - "musl/src/ctype/wide.h" - "musl/src/dirent/__dirent.h" - "musl/src/dirent/alphasort.c" - "musl/src/dirent/closedir.c" - "musl/src/dirent/dirfd.c" - "musl/src/dirent/fdopendir.c" - "musl/src/dirent/opendir.c" - "musl/src/dirent/readdir.c" - "musl/src/dirent/readdir_r.c" - "musl/src/dirent/rewinddir.c" - "musl/src/dirent/scandir.c" - "musl/src/dirent/seekdir.c" - "musl/src/dirent/telldir.c" - "musl/src/dirent/versionsort.c" - "musl/src/env/__environ.c" - "musl/src/env/__init_tls.c" - "musl/src/env/__libc_start_main.c" - "musl/src/env/__reset_tls.c" - "musl/src/env/__stack_chk_fail.c" - "musl/src/env/clearenv.c" - "musl/src/env/getenv.c" - "musl/src/env/putenv.c" - "musl/src/env/setenv.c" - "musl/src/env/unsetenv.c" - "musl/src/errno/__errno_location.c" - "musl/src/errno/__strerror.h" - "musl/src/errno/strerror.c" - "musl/src/exit/_Exit.c" - "musl/src/exit/abort.c" - "musl/src/exit/arm/__aeabi_atexit.c" - "musl/src/exit/assert.c" - "musl/src/exit/at_quick_exit.c" - "musl/src/exit/atexit.c" - "musl/src/exit/exit.c" - "musl/src/exit/quick_exit.c" - "musl/src/fcntl/creat.c" - "musl/src/fcntl/fcntl.c" - "musl/src/fcntl/open.c" - "musl/src/fcntl/openat.c" - "musl/src/fcntl/posix_fadvise.c" - "musl/src/fcntl/posix_fallocate.c" - "musl/src/fenv/__flt_rounds.c" - "musl/src/fenv/aarch64/fenv.s" - "musl/src/fenv/arm/fenv-hf.S" - "musl/src/fenv/arm/fenv.c" - "musl/src/fenv/fegetexceptflag.c" - "musl/src/fenv/feholdexcept.c" - "musl/src/fenv/fenv.c" - "musl/src/fenv/fesetexceptflag.c" - "musl/src/fenv/fesetround.c" - "musl/src/fenv/feupdateenv.c" - "musl/src/fenv/i386/fenv.s" - "musl/src/fenv/m68k/fenv.c" - "musl/src/fenv/mips/fenv-sf.c" - "musl/src/fenv/mips/fenv.S" - "musl/src/fenv/mips64/fenv-sf.c" - "musl/src/fenv/mips64/fenv.S" - "musl/src/fenv/mipsn32/fenv-sf.c" - "musl/src/fenv/mipsn32/fenv.S" - "musl/src/fenv/powerpc/fenv-sf.c" - "musl/src/fenv/powerpc/fenv.S" - "musl/src/fenv/powerpc64/fenv.c" - "musl/src/fenv/s390x/fenv.c" - "musl/src/fenv/sh/fenv-nofpu.c" - "musl/src/fenv/sh/fenv.S" - "musl/src/fenv/x32/fenv.s" - "musl/src/fenv/x86_64/fenv.s" - "musl/src/include/arpa/inet.h" - "musl/src/include/crypt.h" - "musl/src/include/errno.h" - "musl/src/include/features.h" - "musl/src/include/langinfo.h" - "musl/src/include/pthread.h" - "musl/src/include/resolv.h" - "musl/src/include/signal.h" - "musl/src/include/stdio.h" - "musl/src/include/stdlib.h" - "musl/src/include/string.h" - "musl/src/include/sys/auxv.h" - "musl/src/include/sys/mman.h" - "musl/src/include/sys/sysinfo.h" - "musl/src/include/sys/time.h" - "musl/src/include/time.h" - "musl/src/include/unistd.h" - "musl/src/internal/aarch64/syscall.s" - "musl/src/internal/arm/syscall.s" - "musl/src/internal/atomic.h" - "musl/src/internal/dynlink.h" - "musl/src/internal/fdpic_crt.h" - "musl/src/internal/floatscan.c" - "musl/src/internal/floatscan.h" - "musl/src/internal/futex.h" - "musl/src/internal/i386/syscall.s" - "musl/src/internal/intscan.c" - "musl/src/internal/intscan.h" - "musl/src/internal/ksigaction.h" - "musl/src/internal/libc.c" - "musl/src/internal/libc.h" - "musl/src/internal/libm.h" - "musl/src/internal/locale_impl.h" - "musl/src/internal/lock.h" - "musl/src/internal/m68k/syscall.s" - "musl/src/internal/malloc_impl.h" - "musl/src/internal/microblaze/syscall.s" - "musl/src/internal/mips/syscall.s" - "musl/src/internal/mips64/syscall.s" - "musl/src/internal/mipsn32/syscall.s" - "musl/src/internal/or1k/syscall.s" - "musl/src/internal/powerpc/syscall.s" - "musl/src/internal/powerpc64/syscall.s" - "musl/src/internal/procfdname.c" - "musl/src/internal/pthread_impl.h" - "musl/src/internal/s390x/syscall.s" - "musl/src/internal/sh/__shcall.c" - "musl/src/internal/sh/syscall.s" - "musl/src/internal/shgetc.c" - "musl/src/internal/shgetc.h" - "musl/src/internal/stdio_impl.h" - "musl/src/internal/syscall.c" - "musl/src/internal/syscall.h" - "musl/src/internal/syscall_ret.c" - "musl/src/internal/vdso.c" - "musl/src/internal/version.c" - "musl/src/internal/version.h" - "musl/src/internal/x32/syscall.s" - "musl/src/internal/x86_64/syscall.s" - "musl/src/ipc/ftok.c" - "musl/src/ipc/ipc.h" - "musl/src/ipc/msgctl.c" - "musl/src/ipc/msgget.c" - "musl/src/ipc/msgrcv.c" - "musl/src/ipc/msgsnd.c" - "musl/src/ipc/semctl.c" - "musl/src/ipc/semget.c" - "musl/src/ipc/semop.c" - "musl/src/ipc/semtimedop.c" - "musl/src/ipc/shmat.c" - "musl/src/ipc/shmctl.c" - "musl/src/ipc/shmdt.c" - "musl/src/ipc/shmget.c" - "musl/src/ldso/__dlsym.c" - "musl/src/ldso/aarch64/dlsym.s" - "musl/src/ldso/aarch64/tlsdesc.s" - "musl/src/ldso/arm/dlsym.s" - "musl/src/ldso/arm/find_exidx.c" - "musl/src/ldso/arm/tlsdesc.S" - "musl/src/ldso/dl_iterate_phdr.c" - "musl/src/ldso/dladdr.c" - "musl/src/ldso/dlclose.c" - "musl/src/ldso/dlerror.c" - "musl/src/ldso/dlinfo.c" - "musl/src/ldso/dlopen.c" - "musl/src/ldso/dlsym.c" - "musl/src/ldso/i386/dlsym.s" - "musl/src/ldso/i386/tlsdesc.s" - "musl/src/ldso/m68k/dlsym.s" - "musl/src/ldso/microblaze/dlsym.s" - "musl/src/ldso/mips/dlsym.s" - "musl/src/ldso/mips64/dlsym.s" - "musl/src/ldso/mipsn32/dlsym.s" - "musl/src/ldso/or1k/dlsym.s" - "musl/src/ldso/powerpc/dlsym.s" - "musl/src/ldso/powerpc64/dlsym.s" - "musl/src/ldso/s390x/dlsym.s" - "musl/src/ldso/sh/dlsym.s" - "musl/src/ldso/tlsdesc.c" - "musl/src/ldso/x32/dlsym.s" - "musl/src/ldso/x86_64/dlsym.s" - "musl/src/ldso/x86_64/tlsdesc.s" - "musl/src/legacy/cuserid.c" - "musl/src/legacy/daemon.c" - "musl/src/legacy/err.c" - "musl/src/legacy/euidaccess.c" - "musl/src/legacy/ftw.c" - "musl/src/legacy/futimes.c" - "musl/src/legacy/getdtablesize.c" - "musl/src/legacy/getloadavg.c" - "musl/src/legacy/getpagesize.c" - "musl/src/legacy/getpass.c" - "musl/src/legacy/getusershell.c" - "musl/src/legacy/isastream.c" - "musl/src/legacy/lutimes.c" - "musl/src/legacy/ulimit.c" - "musl/src/legacy/utmpx.c" - "musl/src/legacy/valloc.c" - "musl/src/linux/adjtime.c" - "musl/src/linux/adjtimex.c" - "musl/src/linux/arch_prctl.c" - "musl/src/linux/brk.c" - "musl/src/linux/cache.c" - "musl/src/linux/cap.c" - "musl/src/linux/chroot.c" - "musl/src/linux/clock_adjtime.c" - "musl/src/linux/clone.c" - "musl/src/linux/epoll.c" - "musl/src/linux/eventfd.c" - "musl/src/linux/fallocate.c" - "musl/src/linux/fanotify.c" - "musl/src/linux/flock.c" - "musl/src/linux/getdents.c" - "musl/src/linux/getrandom.c" - "musl/src/linux/inotify.c" - "musl/src/linux/ioperm.c" - "musl/src/linux/iopl.c" - "musl/src/linux/klogctl.c" - "musl/src/linux/memfd_create.c" - "musl/src/linux/mlock2.c" - "musl/src/linux/module.c" - "musl/src/linux/mount.c" - "musl/src/linux/name_to_handle_at.c" - "musl/src/linux/open_by_handle_at.c" - "musl/src/linux/personality.c" - "musl/src/linux/pivot_root.c" - "musl/src/linux/ppoll.c" - "musl/src/linux/prctl.c" - "musl/src/linux/prlimit.c" - "musl/src/linux/process_vm.c" - "musl/src/linux/ptrace.c" - "musl/src/linux/quotactl.c" - "musl/src/linux/readahead.c" - "musl/src/linux/reboot.c" - "musl/src/linux/remap_file_pages.c" - "musl/src/linux/sbrk.c" - "musl/src/linux/sendfile.c" - "musl/src/linux/setfsgid.c" - "musl/src/linux/setfsuid.c" - "musl/src/linux/setgroups.c" - "musl/src/linux/sethostname.c" - "musl/src/linux/setns.c" - "musl/src/linux/settimeofday.c" - "musl/src/linux/signalfd.c" - "musl/src/linux/splice.c" - "musl/src/linux/stime.c" - "musl/src/linux/swap.c" - "musl/src/linux/sync_file_range.c" - "musl/src/linux/syncfs.c" - "musl/src/linux/sysinfo.c" - "musl/src/linux/tee.c" - "musl/src/linux/timerfd.c" - "musl/src/linux/unshare.c" - "musl/src/linux/utimes.c" - "musl/src/linux/vhangup.c" - "musl/src/linux/vmsplice.c" - "musl/src/linux/wait3.c" - "musl/src/linux/wait4.c" - "musl/src/linux/x32/sysinfo.c" - "musl/src/linux/xattr.c" - "musl/src/locale/__lctrans.c" - "musl/src/locale/__mo_lookup.c" - "musl/src/locale/big5.h" - "musl/src/locale/bind_textdomain_codeset.c" - "musl/src/locale/c_locale.c" - "musl/src/locale/catclose.c" - "musl/src/locale/catgets.c" - "musl/src/locale/catopen.c" - "musl/src/locale/codepages.h" - "musl/src/locale/dcngettext.c" - "musl/src/locale/duplocale.c" - "musl/src/locale/freelocale.c" - "musl/src/locale/gb18030.h" - "musl/src/locale/hkscs.h" - "musl/src/locale/iconv.c" - "musl/src/locale/iconv_close.c" - "musl/src/locale/jis0208.h" - "musl/src/locale/ksc.h" - "musl/src/locale/langinfo.c" - "musl/src/locale/legacychars.h" - "musl/src/locale/locale_map.c" - "musl/src/locale/localeconv.c" - "musl/src/locale/newlocale.c" - "musl/src/locale/pleval.c" - "musl/src/locale/pleval.h" - "musl/src/locale/revjis.h" - "musl/src/locale/setlocale.c" - "musl/src/locale/strcoll.c" - "musl/src/locale/strfmon.c" - "musl/src/locale/strxfrm.c" - "musl/src/locale/textdomain.c" - "musl/src/locale/uselocale.c" - "musl/src/locale/wcscoll.c" - "musl/src/locale/wcsxfrm.c" - "musl/src/malloc/DESIGN" - "musl/src/malloc/aligned_alloc.c" - "musl/src/malloc/expand_heap.c" - "musl/src/malloc/lite_malloc.c" - "musl/src/malloc/malloc.c" - "musl/src/malloc/malloc_usable_size.c" - "musl/src/malloc/memalign.c" - "musl/src/malloc/posix_memalign.c" - "musl/src/math/__cos.c" - "musl/src/math/__cosdf.c" - "musl/src/math/__cosl.c" - "musl/src/math/__expo2.c" - "musl/src/math/__expo2f.c" - "musl/src/math/__fpclassify.c" - "musl/src/math/__fpclassifyf.c" - "musl/src/math/__fpclassifyl.c" - "musl/src/math/__invtrigl.c" - "musl/src/math/__invtrigl.h" - "musl/src/math/__polevll.c" - "musl/src/math/__rem_pio2.c" - "musl/src/math/__rem_pio2_large.c" - "musl/src/math/__rem_pio2f.c" - "musl/src/math/__rem_pio2l.c" - "musl/src/math/__signbit.c" - "musl/src/math/__signbitf.c" - "musl/src/math/__signbitl.c" - "musl/src/math/__sin.c" - "musl/src/math/__sindf.c" - "musl/src/math/__sinl.c" - "musl/src/math/__tan.c" - "musl/src/math/__tandf.c" - "musl/src/math/__tanl.c" - "musl/src/math/aarch64/ceil.c" - "musl/src/math/aarch64/ceilf.c" - "musl/src/math/aarch64/fabs.c" - "musl/src/math/aarch64/fabsf.c" - "musl/src/math/aarch64/floor.c" - "musl/src/math/aarch64/floorf.c" - "musl/src/math/aarch64/fma.c" - "musl/src/math/aarch64/fmaf.c" - "musl/src/math/aarch64/fmax.c" - "musl/src/math/aarch64/fmaxf.c" - "musl/src/math/aarch64/fmin.c" - "musl/src/math/aarch64/fminf.c" - "musl/src/math/aarch64/llrint.c" - "musl/src/math/aarch64/llrintf.c" - "musl/src/math/aarch64/llround.c" - "musl/src/math/aarch64/llroundf.c" - "musl/src/math/aarch64/lrint.c" - "musl/src/math/aarch64/lrintf.c" - "musl/src/math/aarch64/lround.c" - "musl/src/math/aarch64/lroundf.c" - "musl/src/math/aarch64/nearbyint.c" - "musl/src/math/aarch64/nearbyintf.c" - "musl/src/math/aarch64/rint.c" - "musl/src/math/aarch64/rintf.c" - "musl/src/math/aarch64/round.c" - "musl/src/math/aarch64/roundf.c" - "musl/src/math/aarch64/sqrt.c" - "musl/src/math/aarch64/sqrtf.c" - "musl/src/math/aarch64/trunc.c" - "musl/src/math/aarch64/truncf.c" - "musl/src/math/acos.c" - "musl/src/math/acosf.c" - "musl/src/math/acosh.c" - "musl/src/math/acoshf.c" - "musl/src/math/acoshl.c" - "musl/src/math/acosl.c" - "musl/src/math/arm/fabs.c" - "musl/src/math/arm/fabsf.c" - "musl/src/math/arm/fma.c" - "musl/src/math/arm/fmaf.c" - "musl/src/math/arm/sqrt.c" - "musl/src/math/arm/sqrtf.c" - "musl/src/math/asin.c" - "musl/src/math/asinf.c" - "musl/src/math/asinh.c" - "musl/src/math/asinhf.c" - "musl/src/math/asinhl.c" - "musl/src/math/asinl.c" - "musl/src/math/atan.c" - "musl/src/math/atan2.c" - "musl/src/math/atan2f.c" - "musl/src/math/atan2l.c" - "musl/src/math/atanf.c" - "musl/src/math/atanh.c" - "musl/src/math/atanhf.c" - "musl/src/math/atanhl.c" - "musl/src/math/atanl.c" - "musl/src/math/cbrt.c" - "musl/src/math/cbrtf.c" - "musl/src/math/cbrtl.c" - "musl/src/math/ceil.c" - "musl/src/math/ceilf.c" - "musl/src/math/ceill.c" - "musl/src/math/copysign.c" - "musl/src/math/copysignf.c" - "musl/src/math/copysignl.c" - "musl/src/math/cos.c" - "musl/src/math/cosf.c" - "musl/src/math/cosh.c" - "musl/src/math/coshf.c" - "musl/src/math/coshl.c" - "musl/src/math/cosl.c" - "musl/src/math/erf.c" - "musl/src/math/erff.c" - "musl/src/math/erfl.c" - "musl/src/math/exp.c" - "musl/src/math/exp10.c" - "musl/src/math/exp10f.c" - "musl/src/math/exp10l.c" - "musl/src/math/exp2.c" - "musl/src/math/exp2f.c" - "musl/src/math/exp2l.c" - "musl/src/math/expf.c" - "musl/src/math/expl.c" - "musl/src/math/expm1.c" - "musl/src/math/expm1f.c" - "musl/src/math/expm1l.c" - "musl/src/math/fabs.c" - "musl/src/math/fabsf.c" - "musl/src/math/fabsl.c" - "musl/src/math/fdim.c" - "musl/src/math/fdimf.c" - "musl/src/math/fdiml.c" - "musl/src/math/finite.c" - "musl/src/math/finitef.c" - "musl/src/math/floor.c" - "musl/src/math/floorf.c" - "musl/src/math/floorl.c" - "musl/src/math/fma.c" - "musl/src/math/fmaf.c" - "musl/src/math/fmal.c" - "musl/src/math/fmax.c" - "musl/src/math/fmaxf.c" - "musl/src/math/fmaxl.c" - "musl/src/math/fmin.c" - "musl/src/math/fminf.c" - "musl/src/math/fminl.c" - "musl/src/math/fmod.c" - "musl/src/math/fmodf.c" - "musl/src/math/fmodl.c" - "musl/src/math/frexp.c" - "musl/src/math/frexpf.c" - "musl/src/math/frexpl.c" - "musl/src/math/hypot.c" - "musl/src/math/hypotf.c" - "musl/src/math/hypotl.c" - "musl/src/math/i386/__invtrigl.s" - "musl/src/math/i386/acos.s" - "musl/src/math/i386/acosf.s" - "musl/src/math/i386/acosl.s" - "musl/src/math/i386/asin.s" - "musl/src/math/i386/asinf.s" - "musl/src/math/i386/asinl.s" - "musl/src/math/i386/atan.s" - "musl/src/math/i386/atan2.s" - "musl/src/math/i386/atan2f.s" - "musl/src/math/i386/atan2l.s" - "musl/src/math/i386/atanf.s" - "musl/src/math/i386/atanl.s" - "musl/src/math/i386/ceil.s" - "musl/src/math/i386/ceilf.s" - "musl/src/math/i386/ceill.s" - "musl/src/math/i386/exp.s" - "musl/src/math/i386/exp2.s" - "musl/src/math/i386/exp2f.s" - "musl/src/math/i386/exp2l.s" - "musl/src/math/i386/expf.s" - "musl/src/math/i386/expl.s" - "musl/src/math/i386/expm1.s" - "musl/src/math/i386/expm1f.s" - "musl/src/math/i386/expm1l.s" - "musl/src/math/i386/fabs.s" - "musl/src/math/i386/fabsf.s" - "musl/src/math/i386/fabsl.s" - "musl/src/math/i386/floor.s" - "musl/src/math/i386/floorf.s" - "musl/src/math/i386/floorl.s" - "musl/src/math/i386/fmod.s" - "musl/src/math/i386/fmodf.s" - "musl/src/math/i386/fmodl.s" - "musl/src/math/i386/hypot.s" - "musl/src/math/i386/hypotf.s" - "musl/src/math/i386/ldexp.s" - "musl/src/math/i386/ldexpf.s" - "musl/src/math/i386/ldexpl.s" - "musl/src/math/i386/llrint.s" - "musl/src/math/i386/llrintf.s" - "musl/src/math/i386/llrintl.s" - "musl/src/math/i386/log.s" - "musl/src/math/i386/log10.s" - "musl/src/math/i386/log10f.s" - "musl/src/math/i386/log10l.s" - "musl/src/math/i386/log1p.s" - "musl/src/math/i386/log1pf.s" - "musl/src/math/i386/log1pl.s" - "musl/src/math/i386/log2.s" - "musl/src/math/i386/log2f.s" - "musl/src/math/i386/log2l.s" - "musl/src/math/i386/logf.s" - "musl/src/math/i386/logl.s" - "musl/src/math/i386/lrint.s" - "musl/src/math/i386/lrintf.s" - "musl/src/math/i386/lrintl.s" - "musl/src/math/i386/remainder.s" - "musl/src/math/i386/remainderf.s" - "musl/src/math/i386/remainderl.s" - "musl/src/math/i386/remquo.s" - "musl/src/math/i386/remquof.s" - "musl/src/math/i386/remquol.s" - "musl/src/math/i386/rint.s" - "musl/src/math/i386/rintf.s" - "musl/src/math/i386/rintl.s" - "musl/src/math/i386/scalbln.s" - "musl/src/math/i386/scalblnf.s" - "musl/src/math/i386/scalblnl.s" - "musl/src/math/i386/scalbn.s" - "musl/src/math/i386/scalbnf.s" - "musl/src/math/i386/scalbnl.s" - "musl/src/math/i386/sqrt.s" - "musl/src/math/i386/sqrtf.s" - "musl/src/math/i386/sqrtl.s" - "musl/src/math/i386/trunc.s" - "musl/src/math/i386/truncf.s" - "musl/src/math/i386/truncl.s" - "musl/src/math/ilogb.c" - "musl/src/math/ilogbf.c" - "musl/src/math/ilogbl.c" - "musl/src/math/j0.c" - "musl/src/math/j0f.c" - "musl/src/math/j1.c" - "musl/src/math/j1f.c" - "musl/src/math/jn.c" - "musl/src/math/jnf.c" - "musl/src/math/ldexp.c" - "musl/src/math/ldexpf.c" - "musl/src/math/ldexpl.c" - "musl/src/math/lgamma.c" - "musl/src/math/lgamma_r.c" - "musl/src/math/lgammaf.c" - "musl/src/math/lgammaf_r.c" - "musl/src/math/lgammal.c" - "musl/src/math/llrint.c" - "musl/src/math/llrintf.c" - "musl/src/math/llrintl.c" - "musl/src/math/llround.c" - "musl/src/math/llroundf.c" - "musl/src/math/llroundl.c" - "musl/src/math/log.c" - "musl/src/math/log10.c" - "musl/src/math/log10f.c" - "musl/src/math/log10l.c" - "musl/src/math/log1p.c" - "musl/src/math/log1pf.c" - "musl/src/math/log1pl.c" - "musl/src/math/log2.c" - "musl/src/math/log2f.c" - "musl/src/math/log2l.c" - "musl/src/math/logb.c" - "musl/src/math/logbf.c" - "musl/src/math/logbl.c" - "musl/src/math/logf.c" - "musl/src/math/logl.c" - "musl/src/math/lrint.c" - "musl/src/math/lrintf.c" - "musl/src/math/lrintl.c" - "musl/src/math/lround.c" - "musl/src/math/lroundf.c" - "musl/src/math/lroundl.c" - "musl/src/math/modf.c" - "musl/src/math/modff.c" - "musl/src/math/modfl.c" - "musl/src/math/nan.c" - "musl/src/math/nanf.c" - "musl/src/math/nanl.c" - "musl/src/math/nearbyint.c" - "musl/src/math/nearbyintf.c" - "musl/src/math/nearbyintl.c" - "musl/src/math/nextafter.c" - "musl/src/math/nextafterf.c" - "musl/src/math/nextafterl.c" - "musl/src/math/nexttoward.c" - "musl/src/math/nexttowardf.c" - "musl/src/math/nexttowardl.c" - "musl/src/math/pow.c" - "musl/src/math/powerpc/fabs.c" - "musl/src/math/powerpc/fabsf.c" - "musl/src/math/powerpc/fma.c" - "musl/src/math/powerpc/fmaf.c" - "musl/src/math/powerpc/sqrt.c" - "musl/src/math/powerpc/sqrtf.c" - "musl/src/math/powerpc64/ceil.c" - "musl/src/math/powerpc64/ceilf.c" - "musl/src/math/powerpc64/fabs.c" - "musl/src/math/powerpc64/fabsf.c" - "musl/src/math/powerpc64/floor.c" - "musl/src/math/powerpc64/floorf.c" - "musl/src/math/powerpc64/fma.c" - "musl/src/math/powerpc64/fmaf.c" - "musl/src/math/powerpc64/fmax.c" - "musl/src/math/powerpc64/fmaxf.c" - "musl/src/math/powerpc64/fmin.c" - "musl/src/math/powerpc64/fminf.c" - "musl/src/math/powerpc64/lrint.c" - "musl/src/math/powerpc64/lrintf.c" - "musl/src/math/powerpc64/lround.c" - "musl/src/math/powerpc64/lroundf.c" - "musl/src/math/powerpc64/round.c" - "musl/src/math/powerpc64/roundf.c" - "musl/src/math/powerpc64/sqrt.c" - "musl/src/math/powerpc64/sqrtf.c" - "musl/src/math/powerpc64/trunc.c" - "musl/src/math/powerpc64/truncf.c" - "musl/src/math/powf.c" - "musl/src/math/powl.c" - "musl/src/math/remainder.c" - "musl/src/math/remainderf.c" - "musl/src/math/remainderl.c" - "musl/src/math/remquo.c" - "musl/src/math/remquof.c" - "musl/src/math/remquol.c" - "musl/src/math/rint.c" - "musl/src/math/rintf.c" - "musl/src/math/rintl.c" - "musl/src/math/round.c" - "musl/src/math/roundf.c" - "musl/src/math/roundl.c" - "musl/src/math/s390x/ceil.c" - "musl/src/math/s390x/ceilf.c" - "musl/src/math/s390x/ceill.c" - "musl/src/math/s390x/fabs.c" - "musl/src/math/s390x/fabsf.c" - "musl/src/math/s390x/fabsl.c" - "musl/src/math/s390x/floor.c" - "musl/src/math/s390x/floorf.c" - "musl/src/math/s390x/floorl.c" - "musl/src/math/s390x/fma.c" - "musl/src/math/s390x/fmaf.c" - "musl/src/math/s390x/nearbyint.c" - "musl/src/math/s390x/nearbyintf.c" - "musl/src/math/s390x/nearbyintl.c" - "musl/src/math/s390x/rint.c" - "musl/src/math/s390x/rintf.c" - "musl/src/math/s390x/rintl.c" - "musl/src/math/s390x/round.c" - "musl/src/math/s390x/roundf.c" - "musl/src/math/s390x/roundl.c" - "musl/src/math/s390x/sqrt.c" - "musl/src/math/s390x/sqrtf.c" - "musl/src/math/s390x/sqrtl.c" - "musl/src/math/s390x/trunc.c" - "musl/src/math/s390x/truncf.c" - "musl/src/math/s390x/truncl.c" - "musl/src/math/scalb.c" - "musl/src/math/scalbf.c" - "musl/src/math/scalbln.c" - "musl/src/math/scalblnf.c" - "musl/src/math/scalblnl.c" - "musl/src/math/scalbn.c" - "musl/src/math/scalbnf.c" - "musl/src/math/scalbnl.c" - "musl/src/math/signgam.c" - "musl/src/math/significand.c" - "musl/src/math/significandf.c" - "musl/src/math/sin.c" - "musl/src/math/sincos.c" - "musl/src/math/sincosf.c" - "musl/src/math/sincosl.c" - "musl/src/math/sinf.c" - "musl/src/math/sinh.c" - "musl/src/math/sinhf.c" - "musl/src/math/sinhl.c" - "musl/src/math/sinl.c" - "musl/src/math/sqrt.c" - "musl/src/math/sqrtf.c" - "musl/src/math/sqrtl.c" - "musl/src/math/tan.c" - "musl/src/math/tanf.c" - "musl/src/math/tanh.c" - "musl/src/math/tanhf.c" - "musl/src/math/tanhl.c" - "musl/src/math/tanl.c" - "musl/src/math/tgamma.c" - "musl/src/math/tgammaf.c" - "musl/src/math/tgammal.c" - "musl/src/math/trunc.c" - "musl/src/math/truncf.c" - "musl/src/math/truncl.c" - "musl/src/math/x32/__invtrigl.s" - "musl/src/math/x32/acosl.s" - "musl/src/math/x32/asinl.s" - "musl/src/math/x32/atan2l.s" - "musl/src/math/x32/atanl.s" - "musl/src/math/x32/ceill.s" - "musl/src/math/x32/exp2l.s" - "musl/src/math/x32/expl.s" - "musl/src/math/x32/expm1l.s" - "musl/src/math/x32/fabs.s" - "musl/src/math/x32/fabsf.s" - "musl/src/math/x32/fabsl.s" - "musl/src/math/x32/floorl.s" - "musl/src/math/x32/fma.c" - "musl/src/math/x32/fmaf.c" - "musl/src/math/x32/fmodl.s" - "musl/src/math/x32/llrint.s" - "musl/src/math/x32/llrintf.s" - "musl/src/math/x32/llrintl.s" - "musl/src/math/x32/log10l.s" - "musl/src/math/x32/log1pl.s" - "musl/src/math/x32/log2l.s" - "musl/src/math/x32/logl.s" - "musl/src/math/x32/lrint.s" - "musl/src/math/x32/lrintf.s" - "musl/src/math/x32/lrintl.s" - "musl/src/math/x32/remainderl.s" - "musl/src/math/x32/rintl.s" - "musl/src/math/x32/sqrt.s" - "musl/src/math/x32/sqrtf.s" - "musl/src/math/x32/sqrtl.s" - "musl/src/math/x32/truncl.s" - "musl/src/math/x86_64/__invtrigl.s" - "musl/src/math/x86_64/acosl.s" - "musl/src/math/x86_64/asinl.s" - "musl/src/math/x86_64/atan2l.s" - "musl/src/math/x86_64/atanl.s" - "musl/src/math/x86_64/ceill.s" - "musl/src/math/x86_64/exp2l.s" - "musl/src/math/x86_64/expl.s" - "musl/src/math/x86_64/expm1l.s" - "musl/src/math/x86_64/fabs.s" - "musl/src/math/x86_64/fabsf.s" - "musl/src/math/x86_64/fabsl.s" - "musl/src/math/x86_64/floorl.s" - "musl/src/math/x86_64/fma.c" - "musl/src/math/x86_64/fmaf.c" - "musl/src/math/x86_64/fmodl.s" - "musl/src/math/x86_64/llrint.s" - "musl/src/math/x86_64/llrintf.s" - "musl/src/math/x86_64/llrintl.s" - "musl/src/math/x86_64/log10l.s" - "musl/src/math/x86_64/log1pl.s" - "musl/src/math/x86_64/log2l.s" - "musl/src/math/x86_64/logl.s" - "musl/src/math/x86_64/lrint.s" - "musl/src/math/x86_64/lrintf.s" - "musl/src/math/x86_64/lrintl.s" - "musl/src/math/x86_64/remainderl.s" - "musl/src/math/x86_64/rintl.s" - "musl/src/math/x86_64/sqrt.s" - "musl/src/math/x86_64/sqrtf.s" - "musl/src/math/x86_64/sqrtl.s" - "musl/src/math/x86_64/truncl.s" - "musl/src/misc/a64l.c" - "musl/src/misc/basename.c" - "musl/src/misc/dirname.c" - "musl/src/misc/ffs.c" - "musl/src/misc/ffsl.c" - "musl/src/misc/ffsll.c" - "musl/src/misc/fmtmsg.c" - "musl/src/misc/forkpty.c" - "musl/src/misc/get_current_dir_name.c" - "musl/src/misc/getauxval.c" - "musl/src/misc/getdomainname.c" - "musl/src/misc/getentropy.c" - "musl/src/misc/gethostid.c" - "musl/src/misc/getopt.c" - "musl/src/misc/getopt_long.c" - "musl/src/misc/getpriority.c" - "musl/src/misc/getresgid.c" - "musl/src/misc/getresuid.c" - "musl/src/misc/getrlimit.c" - "musl/src/misc/getrusage.c" - "musl/src/misc/getsubopt.c" - "musl/src/misc/initgroups.c" - "musl/src/misc/ioctl.c" - "musl/src/misc/issetugid.c" - "musl/src/misc/lockf.c" - "musl/src/misc/login_tty.c" - "musl/src/misc/mntent.c" - "musl/src/misc/nftw.c" - "musl/src/misc/openpty.c" - "musl/src/misc/ptsname.c" - "musl/src/misc/pty.c" - "musl/src/misc/realpath.c" - "musl/src/misc/setdomainname.c" - "musl/src/misc/setpriority.c" - "musl/src/misc/setrlimit.c" - "musl/src/misc/syscall.c" - "musl/src/misc/syslog.c" - "musl/src/misc/uname.c" - "musl/src/misc/wordexp.c" - "musl/src/mman/madvise.c" - "musl/src/mman/mincore.c" - "musl/src/mman/mlock.c" - "musl/src/mman/mlockall.c" - "musl/src/mman/mmap.c" - "musl/src/mman/mprotect.c" - "musl/src/mman/mremap.c" - "musl/src/mman/msync.c" - "musl/src/mman/munlock.c" - "musl/src/mman/munlockall.c" - "musl/src/mman/munmap.c" - "musl/src/mman/posix_madvise.c" - "musl/src/mman/shm_open.c" - "musl/src/mq/mq_close.c" - "musl/src/mq/mq_getattr.c" - "musl/src/mq/mq_notify.c" - "musl/src/mq/mq_open.c" - "musl/src/mq/mq_receive.c" - "musl/src/mq/mq_send.c" - "musl/src/mq/mq_setattr.c" - "musl/src/mq/mq_timedreceive.c" - "musl/src/mq/mq_timedsend.c" - "musl/src/mq/mq_unlink.c" - "musl/src/multibyte/btowc.c" - "musl/src/multibyte/c16rtomb.c" - "musl/src/multibyte/c32rtomb.c" - "musl/src/multibyte/internal.c" - "musl/src/multibyte/internal.h" - "musl/src/multibyte/mblen.c" - "musl/src/multibyte/mbrlen.c" - "musl/src/multibyte/mbrtoc16.c" - "musl/src/multibyte/mbrtoc32.c" - "musl/src/multibyte/mbrtowc.c" - "musl/src/multibyte/mbsinit.c" - "musl/src/multibyte/mbsnrtowcs.c" - "musl/src/multibyte/mbsrtowcs.c" - "musl/src/multibyte/mbstowcs.c" - "musl/src/multibyte/mbtowc.c" - "musl/src/multibyte/wcrtomb.c" - "musl/src/multibyte/wcsnrtombs.c" - "musl/src/multibyte/wcsrtombs.c" - "musl/src/multibyte/wcstombs.c" - "musl/src/multibyte/wctob.c" - "musl/src/multibyte/wctomb.c" - "musl/src/network/accept.c" - "musl/src/network/accept4.c" - "musl/src/network/bind.c" - "musl/src/network/connect.c" - "musl/src/network/dn_comp.c" - "musl/src/network/dn_expand.c" - "musl/src/network/dn_skipname.c" - "musl/src/network/dns_parse.c" - "musl/src/network/ent.c" - "musl/src/network/ether.c" - "musl/src/network/freeaddrinfo.c" - "musl/src/network/gai_strerror.c" - "musl/src/network/getaddrinfo.c" - "musl/src/network/gethostbyaddr.c" - "musl/src/network/gethostbyaddr_r.c" - "musl/src/network/gethostbyname.c" - "musl/src/network/gethostbyname2.c" - "musl/src/network/gethostbyname2_r.c" - "musl/src/network/gethostbyname_r.c" - "musl/src/network/getifaddrs.c" - "musl/src/network/getnameinfo.c" - "musl/src/network/getpeername.c" - "musl/src/network/getservbyname.c" - "musl/src/network/getservbyname_r.c" - "musl/src/network/getservbyport.c" - "musl/src/network/getservbyport_r.c" - "musl/src/network/getsockname.c" - "musl/src/network/getsockopt.c" - "musl/src/network/h_errno.c" - "musl/src/network/herror.c" - "musl/src/network/hstrerror.c" - "musl/src/network/htonl.c" - "musl/src/network/htons.c" - "musl/src/network/if_freenameindex.c" - "musl/src/network/if_indextoname.c" - "musl/src/network/if_nameindex.c" - "musl/src/network/if_nametoindex.c" - "musl/src/network/in6addr_any.c" - "musl/src/network/in6addr_loopback.c" - "musl/src/network/inet_addr.c" - "musl/src/network/inet_aton.c" - "musl/src/network/inet_legacy.c" - "musl/src/network/inet_ntoa.c" - "musl/src/network/inet_ntop.c" - "musl/src/network/inet_pton.c" - "musl/src/network/listen.c" - "musl/src/network/lookup.h" - "musl/src/network/lookup_ipliteral.c" - "musl/src/network/lookup_name.c" - "musl/src/network/lookup_serv.c" - "musl/src/network/netlink.c" - "musl/src/network/netlink.h" - "musl/src/network/netname.c" - "musl/src/network/ns_parse.c" - "musl/src/network/ntohl.c" - "musl/src/network/ntohs.c" - "musl/src/network/proto.c" - "musl/src/network/recv.c" - "musl/src/network/recvfrom.c" - "musl/src/network/recvmmsg.c" - "musl/src/network/recvmsg.c" - "musl/src/network/res_init.c" - "musl/src/network/res_mkquery.c" - "musl/src/network/res_msend.c" - "musl/src/network/res_query.c" - "musl/src/network/res_querydomain.c" - "musl/src/network/res_send.c" - "musl/src/network/res_state.c" - "musl/src/network/resolvconf.c" - "musl/src/network/send.c" - "musl/src/network/sendmmsg.c" - "musl/src/network/sendmsg.c" - "musl/src/network/sendto.c" - "musl/src/network/serv.c" - "musl/src/network/setsockopt.c" - "musl/src/network/shutdown.c" - "musl/src/network/sockatmark.c" - "musl/src/network/socket.c" - "musl/src/network/socketpair.c" - "musl/src/passwd/fgetgrent.c" - "musl/src/passwd/fgetpwent.c" - "musl/src/passwd/fgetspent.c" - "musl/src/passwd/getgr_a.c" - "musl/src/passwd/getgr_r.c" - "musl/src/passwd/getgrent.c" - "musl/src/passwd/getgrent_a.c" - "musl/src/passwd/getgrouplist.c" - "musl/src/passwd/getpw_a.c" - "musl/src/passwd/getpw_r.c" - "musl/src/passwd/getpwent.c" - "musl/src/passwd/getpwent_a.c" - "musl/src/passwd/getspent.c" - "musl/src/passwd/getspnam.c" - "musl/src/passwd/getspnam_r.c" - "musl/src/passwd/lckpwdf.c" - "musl/src/passwd/nscd.h" - "musl/src/passwd/nscd_query.c" - "musl/src/passwd/putgrent.c" - "musl/src/passwd/putpwent.c" - "musl/src/passwd/putspent.c" - "musl/src/passwd/pwf.h" - "musl/src/prng/__rand48_step.c" - "musl/src/prng/__seed48.c" - "musl/src/prng/drand48.c" - "musl/src/prng/lcong48.c" - "musl/src/prng/lrand48.c" - "musl/src/prng/mrand48.c" - "musl/src/prng/rand.c" - "musl/src/prng/rand48.h" - "musl/src/prng/rand_r.c" - "musl/src/prng/random.c" - "musl/src/prng/seed48.c" - "musl/src/prng/srand48.c" - "musl/src/process/arm/vfork.s" - "musl/src/process/execl.c" - "musl/src/process/execle.c" - "musl/src/process/execlp.c" - "musl/src/process/execv.c" - "musl/src/process/execve.c" - "musl/src/process/execvp.c" - "musl/src/process/fdop.h" - "musl/src/process/fexecve.c" - "musl/src/process/fork.c" - "musl/src/process/i386/vfork.s" - "musl/src/process/posix_spawn.c" - "musl/src/process/posix_spawn_file_actions_addclose.c" - "musl/src/process/posix_spawn_file_actions_adddup2.c" - "musl/src/process/posix_spawn_file_actions_addopen.c" - "musl/src/process/posix_spawn_file_actions_destroy.c" - "musl/src/process/posix_spawn_file_actions_init.c" - "musl/src/process/posix_spawnattr_destroy.c" - "musl/src/process/posix_spawnattr_getflags.c" - "musl/src/process/posix_spawnattr_getpgroup.c" - "musl/src/process/posix_spawnattr_getsigdefault.c" - "musl/src/process/posix_spawnattr_getsigmask.c" - "musl/src/process/posix_spawnattr_init.c" - "musl/src/process/posix_spawnattr_sched.c" - "musl/src/process/posix_spawnattr_setflags.c" - "musl/src/process/posix_spawnattr_setpgroup.c" - "musl/src/process/posix_spawnattr_setsigdefault.c" - "musl/src/process/posix_spawnattr_setsigmask.c" - "musl/src/process/posix_spawnp.c" - "musl/src/process/s390x/vfork.s" - "musl/src/process/sh/vfork.s" - "musl/src/process/system.c" - "musl/src/process/vfork.c" - "musl/src/process/wait.c" - "musl/src/process/waitid.c" - "musl/src/process/waitpid.c" - "musl/src/process/x32/vfork.s" - "musl/src/process/x86_64/vfork.s" - "musl/src/regex/fnmatch.c" - "musl/src/regex/glob.c" - "musl/src/regex/regcomp.c" - "musl/src/regex/regerror.c" - "musl/src/regex/regexec.c" - "musl/src/regex/tre-mem.c" - "musl/src/regex/tre.h" - "musl/src/sched/affinity.c" - "musl/src/sched/sched_cpucount.c" - "musl/src/sched/sched_get_priority_max.c" - "musl/src/sched/sched_getcpu.c" - "musl/src/sched/sched_getparam.c" - "musl/src/sched/sched_getscheduler.c" - "musl/src/sched/sched_rr_get_interval.c" - "musl/src/sched/sched_setparam.c" - "musl/src/sched/sched_setscheduler.c" - "musl/src/sched/sched_yield.c" - "musl/src/search/hsearch.c" - "musl/src/search/insque.c" - "musl/src/search/lsearch.c" - "musl/src/search/tdelete.c" - "musl/src/search/tdestroy.c" - "musl/src/search/tfind.c" - "musl/src/search/tsearch.c" - "musl/src/search/tsearch.h" - "musl/src/search/twalk.c" - "musl/src/select/poll.c" - "musl/src/select/pselect.c" - "musl/src/select/select.c" - "musl/src/setjmp/aarch64/longjmp.s" - "musl/src/setjmp/aarch64/setjmp.s" - "musl/src/setjmp/arm/longjmp.s" - "musl/src/setjmp/arm/setjmp.s" - "musl/src/setjmp/i386/longjmp.s" - "musl/src/setjmp/i386/setjmp.s" - "musl/src/setjmp/longjmp.c" - "musl/src/setjmp/m68k/longjmp.s" - "musl/src/setjmp/m68k/setjmp.s" - "musl/src/setjmp/microblaze/longjmp.s" - "musl/src/setjmp/microblaze/setjmp.s" - "musl/src/setjmp/mips/longjmp.S" - "musl/src/setjmp/mips/setjmp.S" - "musl/src/setjmp/mips64/longjmp.S" - "musl/src/setjmp/mips64/setjmp.S" - "musl/src/setjmp/mipsn32/longjmp.S" - "musl/src/setjmp/mipsn32/setjmp.S" - "musl/src/setjmp/or1k/longjmp.s" - "musl/src/setjmp/or1k/setjmp.s" - "musl/src/setjmp/powerpc/longjmp.S" - "musl/src/setjmp/powerpc/setjmp.S" - "musl/src/setjmp/powerpc64/longjmp.s" - "musl/src/setjmp/powerpc64/setjmp.s" - "musl/src/setjmp/s390x/longjmp.s" - "musl/src/setjmp/s390x/setjmp.s" - "musl/src/setjmp/setjmp.c" - "musl/src/setjmp/sh/longjmp.S" - "musl/src/setjmp/sh/setjmp.S" - "musl/src/setjmp/x32/longjmp.s" - "musl/src/setjmp/x32/setjmp.s" - "musl/src/setjmp/x86_64/longjmp.s" - "musl/src/setjmp/x86_64/setjmp.s" - "musl/src/signal/aarch64/restore.s" - "musl/src/signal/aarch64/sigsetjmp.s" - "musl/src/signal/arm/restore.s" - "musl/src/signal/arm/sigsetjmp.s" - "musl/src/signal/block.c" - "musl/src/signal/getitimer.c" - "musl/src/signal/i386/restore.s" - "musl/src/signal/i386/sigsetjmp.s" - "musl/src/signal/kill.c" - "musl/src/signal/killpg.c" - "musl/src/signal/m68k/sigsetjmp.s" - "musl/src/signal/microblaze/restore.s" - "musl/src/signal/microblaze/sigsetjmp.s" - "musl/src/signal/mips/restore.s" - "musl/src/signal/mips/sigsetjmp.s" - "musl/src/signal/mips64/restore.s" - "musl/src/signal/mips64/sigsetjmp.s" - "musl/src/signal/mipsn32/restore.s" - "musl/src/signal/mipsn32/sigsetjmp.s" - "musl/src/signal/or1k/sigsetjmp.s" - "musl/src/signal/powerpc/restore.s" - "musl/src/signal/powerpc/sigsetjmp.s" - "musl/src/signal/powerpc64/restore.s" - "musl/src/signal/powerpc64/sigsetjmp.s" - "musl/src/signal/psiginfo.c" - "musl/src/signal/psignal.c" - "musl/src/signal/raise.c" - "musl/src/signal/restore.c" - "musl/src/signal/s390x/restore.s" - "musl/src/signal/s390x/sigsetjmp.s" - "musl/src/signal/setitimer.c" - "musl/src/signal/sh/restore.s" - "musl/src/signal/sh/sigsetjmp.s" - "musl/src/signal/sigaction.c" - "musl/src/signal/sigaddset.c" - "musl/src/signal/sigaltstack.c" - "musl/src/signal/sigandset.c" - "musl/src/signal/sigdelset.c" - "musl/src/signal/sigemptyset.c" - "musl/src/signal/sigfillset.c" - "musl/src/signal/sighold.c" - "musl/src/signal/sigignore.c" - "musl/src/signal/siginterrupt.c" - "musl/src/signal/sigisemptyset.c" - "musl/src/signal/sigismember.c" - "musl/src/signal/siglongjmp.c" - "musl/src/signal/signal.c" - "musl/src/signal/sigorset.c" - "musl/src/signal/sigpause.c" - "musl/src/signal/sigpending.c" - "musl/src/signal/sigprocmask.c" - "musl/src/signal/sigqueue.c" - "musl/src/signal/sigrelse.c" - "musl/src/signal/sigrtmax.c" - "musl/src/signal/sigrtmin.c" - "musl/src/signal/sigset.c" - "musl/src/signal/sigsetjmp.c" - "musl/src/signal/sigsetjmp_tail.c" - "musl/src/signal/sigsuspend.c" - "musl/src/signal/sigtimedwait.c" - "musl/src/signal/sigwait.c" - "musl/src/signal/sigwaitinfo.c" - "musl/src/signal/x32/restore.s" - "musl/src/signal/x32/sigsetjmp.s" - "musl/src/signal/x86_64/restore.s" - "musl/src/signal/x86_64/sigsetjmp.s" - "musl/src/stat/__xstat.c" - "musl/src/stat/chmod.c" - "musl/src/stat/fchmod.c" - "musl/src/stat/fchmodat.c" - "musl/src/stat/fstat.c" - "musl/src/stat/fstatat.c" - "musl/src/stat/futimens.c" - "musl/src/stat/futimesat.c" - "musl/src/stat/lchmod.c" - "musl/src/stat/lstat.c" - "musl/src/stat/mkdir.c" - "musl/src/stat/mkdirat.c" - "musl/src/stat/mkfifo.c" - "musl/src/stat/mkfifoat.c" - "musl/src/stat/mknod.c" - "musl/src/stat/mknodat.c" - "musl/src/stat/stat.c" - "musl/src/stat/statvfs.c" - "musl/src/stat/umask.c" - "musl/src/stat/utimensat.c" - "musl/src/stdio/__fclose_ca.c" - "musl/src/stdio/__fdopen.c" - "musl/src/stdio/__fmodeflags.c" - "musl/src/stdio/__fopen_rb_ca.c" - "musl/src/stdio/__lockfile.c" - "musl/src/stdio/__overflow.c" - "musl/src/stdio/__stdio_close.c" - "musl/src/stdio/__stdio_exit.c" - "musl/src/stdio/__stdio_read.c" - "musl/src/stdio/__stdio_seek.c" - "musl/src/stdio/__stdio_write.c" - "musl/src/stdio/__stdout_write.c" - "musl/src/stdio/__string_read.c" - "musl/src/stdio/__toread.c" - "musl/src/stdio/__towrite.c" - "musl/src/stdio/__uflow.c" - "musl/src/stdio/asprintf.c" - "musl/src/stdio/clearerr.c" - "musl/src/stdio/dprintf.c" - "musl/src/stdio/ext.c" - "musl/src/stdio/ext2.c" - "musl/src/stdio/fclose.c" - "musl/src/stdio/feof.c" - "musl/src/stdio/ferror.c" - "musl/src/stdio/fflush.c" - "musl/src/stdio/fgetc.c" - "musl/src/stdio/fgetln.c" - "musl/src/stdio/fgetpos.c" - "musl/src/stdio/fgets.c" - "musl/src/stdio/fgetwc.c" - "musl/src/stdio/fgetws.c" - "musl/src/stdio/fileno.c" - "musl/src/stdio/flockfile.c" - "musl/src/stdio/fmemopen.c" - "musl/src/stdio/fopen.c" - "musl/src/stdio/fopencookie.c" - "musl/src/stdio/fprintf.c" - "musl/src/stdio/fputc.c" - "musl/src/stdio/fputs.c" - "musl/src/stdio/fputwc.c" - "musl/src/stdio/fputws.c" - "musl/src/stdio/fread.c" - "musl/src/stdio/freopen.c" - "musl/src/stdio/fscanf.c" - "musl/src/stdio/fseek.c" - "musl/src/stdio/fsetpos.c" - "musl/src/stdio/ftell.c" - "musl/src/stdio/ftrylockfile.c" - "musl/src/stdio/funlockfile.c" - "musl/src/stdio/fwide.c" - "musl/src/stdio/fwprintf.c" - "musl/src/stdio/fwrite.c" - "musl/src/stdio/fwscanf.c" - "musl/src/stdio/getc.c" - "musl/src/stdio/getc.h" - "musl/src/stdio/getc_unlocked.c" - "musl/src/stdio/getchar.c" - "musl/src/stdio/getchar_unlocked.c" - "musl/src/stdio/getdelim.c" - "musl/src/stdio/getline.c" - "musl/src/stdio/gets.c" - "musl/src/stdio/getw.c" - "musl/src/stdio/getwc.c" - "musl/src/stdio/getwchar.c" - "musl/src/stdio/ofl.c" - "musl/src/stdio/ofl_add.c" - "musl/src/stdio/open_memstream.c" - "musl/src/stdio/open_wmemstream.c" - "musl/src/stdio/pclose.c" - "musl/src/stdio/perror.c" - "musl/src/stdio/popen.c" - "musl/src/stdio/printf.c" - "musl/src/stdio/putc.c" - "musl/src/stdio/putc.h" - "musl/src/stdio/putc_unlocked.c" - "musl/src/stdio/putchar.c" - "musl/src/stdio/putchar_unlocked.c" - "musl/src/stdio/puts.c" - "musl/src/stdio/putw.c" - "musl/src/stdio/putwc.c" - "musl/src/stdio/putwchar.c" - "musl/src/stdio/remove.c" - "musl/src/stdio/rename.c" - "musl/src/stdio/rewind.c" - "musl/src/stdio/scanf.c" - "musl/src/stdio/setbuf.c" - "musl/src/stdio/setbuffer.c" - "musl/src/stdio/setlinebuf.c" - "musl/src/stdio/setvbuf.c" - "musl/src/stdio/snprintf.c" - "musl/src/stdio/sprintf.c" - "musl/src/stdio/sscanf.c" - "musl/src/stdio/stderr.c" - "musl/src/stdio/stdin.c" - "musl/src/stdio/stdout.c" - "musl/src/stdio/swprintf.c" - "musl/src/stdio/swscanf.c" - "musl/src/stdio/tempnam.c" - "musl/src/stdio/tmpfile.c" - "musl/src/stdio/tmpnam.c" - "musl/src/stdio/ungetc.c" - "musl/src/stdio/ungetwc.c" - "musl/src/stdio/vasprintf.c" - "musl/src/stdio/vdprintf.c" - "musl/src/stdio/vfprintf.c" - "musl/src/stdio/vfscanf.c" - "musl/src/stdio/vfwprintf.c" - "musl/src/stdio/vfwscanf.c" - "musl/src/stdio/vprintf.c" - "musl/src/stdio/vscanf.c" - "musl/src/stdio/vsnprintf.c" - "musl/src/stdio/vsprintf.c" - "musl/src/stdio/vsscanf.c" - "musl/src/stdio/vswprintf.c" - "musl/src/stdio/vswscanf.c" - "musl/src/stdio/vwprintf.c" - "musl/src/stdio/vwscanf.c" - "musl/src/stdio/wprintf.c" - "musl/src/stdio/wscanf.c" - "musl/src/stdlib/abs.c" - "musl/src/stdlib/atof.c" - "musl/src/stdlib/atoi.c" - "musl/src/stdlib/atol.c" - "musl/src/stdlib/atoll.c" - "musl/src/stdlib/bsearch.c" - "musl/src/stdlib/div.c" - "musl/src/stdlib/ecvt.c" - "musl/src/stdlib/fcvt.c" - "musl/src/stdlib/gcvt.c" - "musl/src/stdlib/imaxabs.c" - "musl/src/stdlib/imaxdiv.c" - "musl/src/stdlib/labs.c" - "musl/src/stdlib/ldiv.c" - "musl/src/stdlib/llabs.c" - "musl/src/stdlib/lldiv.c" - "musl/src/stdlib/qsort.c" - "musl/src/stdlib/strtod.c" - "musl/src/stdlib/strtol.c" - "musl/src/stdlib/wcstod.c" - "musl/src/stdlib/wcstol.c" - "musl/src/string/arm/__aeabi_memcpy.s" - "musl/src/string/arm/__aeabi_memset.s" - "musl/src/string/arm/memcpy.c" - "musl/src/string/arm/memcpy_le.S" - "musl/src/string/bcmp.c" - "musl/src/string/bcopy.c" - "musl/src/string/bzero.c" - "musl/src/string/explicit_bzero.c" - "musl/src/string/i386/memcpy.s" - "musl/src/string/i386/memmove.s" - "musl/src/string/i386/memset.s" - "musl/src/string/index.c" - "musl/src/string/memccpy.c" - "musl/src/string/memchr.c" - "musl/src/string/memcmp.c" - "musl/src/string/memcpy.c" - "musl/src/string/memmem.c" - "musl/src/string/memmove.c" - "musl/src/string/mempcpy.c" - "musl/src/string/memrchr.c" - "musl/src/string/memset.c" - "musl/src/string/rindex.c" - "musl/src/string/stpcpy.c" - "musl/src/string/stpncpy.c" - "musl/src/string/strcasecmp.c" - "musl/src/string/strcasestr.c" - "musl/src/string/strcat.c" - "musl/src/string/strchr.c" - "musl/src/string/strchrnul.c" - "musl/src/string/strcmp.c" - "musl/src/string/strcpy.c" - "musl/src/string/strcspn.c" - "musl/src/string/strdup.c" - "musl/src/string/strerror_r.c" - "musl/src/string/strlcat.c" - "musl/src/string/strlcpy.c" - "musl/src/string/strlen.c" - "musl/src/string/strncasecmp.c" - "musl/src/string/strncat.c" - "musl/src/string/strncmp.c" - "musl/src/string/strncpy.c" - "musl/src/string/strndup.c" - "musl/src/string/strnlen.c" - "musl/src/string/strpbrk.c" - "musl/src/string/strrchr.c" - "musl/src/string/strsep.c" - "musl/src/string/strsignal.c" - "musl/src/string/strspn.c" - "musl/src/string/strstr.c" - "musl/src/string/strtok.c" - "musl/src/string/strtok_r.c" - "musl/src/string/strverscmp.c" - "musl/src/string/swab.c" - "musl/src/string/wcpcpy.c" - "musl/src/string/wcpncpy.c" - "musl/src/string/wcscasecmp.c" - "musl/src/string/wcscasecmp_l.c" - "musl/src/string/wcscat.c" - "musl/src/string/wcschr.c" - "musl/src/string/wcscmp.c" - "musl/src/string/wcscpy.c" - "musl/src/string/wcscspn.c" - "musl/src/string/wcsdup.c" - "musl/src/string/wcslen.c" - "musl/src/string/wcsncasecmp.c" - "musl/src/string/wcsncasecmp_l.c" - "musl/src/string/wcsncat.c" - "musl/src/string/wcsncmp.c" - "musl/src/string/wcsncpy.c" - "musl/src/string/wcsnlen.c" - "musl/src/string/wcspbrk.c" - "musl/src/string/wcsrchr.c" - "musl/src/string/wcsspn.c" - "musl/src/string/wcsstr.c" - "musl/src/string/wcstok.c" - "musl/src/string/wcswcs.c" - "musl/src/string/wmemchr.c" - "musl/src/string/wmemcmp.c" - "musl/src/string/wmemcpy.c" - "musl/src/string/wmemmove.c" - "musl/src/string/wmemset.c" - "musl/src/string/x86_64/memcpy.s" - "musl/src/string/x86_64/memmove.s" - "musl/src/string/x86_64/memset.s" - "musl/src/temp/__randname.c" - "musl/src/temp/mkdtemp.c" - "musl/src/temp/mkostemp.c" - "musl/src/temp/mkostemps.c" - "musl/src/temp/mkstemp.c" - "musl/src/temp/mkstemps.c" - "musl/src/temp/mktemp.c" - "musl/src/termios/cfgetospeed.c" - "musl/src/termios/cfmakeraw.c" - "musl/src/termios/cfsetospeed.c" - "musl/src/termios/tcdrain.c" - "musl/src/termios/tcflow.c" - "musl/src/termios/tcflush.c" - "musl/src/termios/tcgetattr.c" - "musl/src/termios/tcgetsid.c" - "musl/src/termios/tcsendbreak.c" - "musl/src/termios/tcsetattr.c" - "musl/src/thread/__lock.c" - "musl/src/thread/__set_thread_area.c" - "musl/src/thread/__syscall_cp.c" - "musl/src/thread/__timedwait.c" - "musl/src/thread/__tls_get_addr.c" - "musl/src/thread/__unmapself.c" - "musl/src/thread/__wait.c" - "musl/src/thread/aarch64/__set_thread_area.s" - "musl/src/thread/aarch64/__unmapself.s" - "musl/src/thread/aarch64/clone.s" - "musl/src/thread/aarch64/syscall_cp.s" - "musl/src/thread/arm/__aeabi_read_tp.s" - "musl/src/thread/arm/__set_thread_area.c" - "musl/src/thread/arm/__unmapself.s" - "musl/src/thread/arm/atomics.s" - "musl/src/thread/arm/clone.s" - "musl/src/thread/arm/syscall_cp.s" - "musl/src/thread/call_once.c" - "musl/src/thread/clone.c" - "musl/src/thread/cnd_broadcast.c" - "musl/src/thread/cnd_destroy.c" - "musl/src/thread/cnd_init.c" - "musl/src/thread/cnd_signal.c" - "musl/src/thread/cnd_timedwait.c" - "musl/src/thread/cnd_wait.c" - "musl/src/thread/default_attr.c" - "musl/src/thread/i386/__set_thread_area.s" - "musl/src/thread/i386/__unmapself.s" - "musl/src/thread/i386/clone.s" - "musl/src/thread/i386/syscall_cp.s" - "musl/src/thread/i386/tls.s" - "musl/src/thread/lock_ptc.c" - "musl/src/thread/m68k/__m68k_read_tp.s" - "musl/src/thread/m68k/clone.s" - "musl/src/thread/m68k/syscall_cp.s" - "musl/src/thread/microblaze/__set_thread_area.s" - "musl/src/thread/microblaze/__unmapself.s" - "musl/src/thread/microblaze/clone.s" - "musl/src/thread/microblaze/syscall_cp.s" - "musl/src/thread/mips/__unmapself.s" - "musl/src/thread/mips/clone.s" - "musl/src/thread/mips/syscall_cp.s" - "musl/src/thread/mips64/__unmapself.s" - "musl/src/thread/mips64/clone.s" - "musl/src/thread/mips64/syscall_cp.s" - "musl/src/thread/mipsn32/__unmapself.s" - "musl/src/thread/mipsn32/clone.s" - "musl/src/thread/mipsn32/syscall_cp.s" - "musl/src/thread/mtx_destroy.c" - "musl/src/thread/mtx_init.c" - "musl/src/thread/mtx_lock.c" - "musl/src/thread/mtx_timedlock.c" - "musl/src/thread/mtx_trylock.c" - "musl/src/thread/mtx_unlock.c" - "musl/src/thread/or1k/__set_thread_area.s" - "musl/src/thread/or1k/__unmapself.s" - "musl/src/thread/or1k/clone.s" - "musl/src/thread/or1k/syscall_cp.s" - "musl/src/thread/powerpc/__set_thread_area.s" - "musl/src/thread/powerpc/__unmapself.s" - "musl/src/thread/powerpc/clone.s" - "musl/src/thread/powerpc/syscall_cp.s" - "musl/src/thread/powerpc64/__set_thread_area.s" - "musl/src/thread/powerpc64/__unmapself.s" - "musl/src/thread/powerpc64/clone.s" - "musl/src/thread/powerpc64/syscall_cp.s" - "musl/src/thread/pthread_atfork.c" - "musl/src/thread/pthread_attr_destroy.c" - "musl/src/thread/pthread_attr_get.c" - "musl/src/thread/pthread_attr_init.c" - "musl/src/thread/pthread_attr_setdetachstate.c" - "musl/src/thread/pthread_attr_setguardsize.c" - "musl/src/thread/pthread_attr_setinheritsched.c" - "musl/src/thread/pthread_attr_setschedparam.c" - "musl/src/thread/pthread_attr_setschedpolicy.c" - "musl/src/thread/pthread_attr_setscope.c" - "musl/src/thread/pthread_attr_setstack.c" - "musl/src/thread/pthread_attr_setstacksize.c" - "musl/src/thread/pthread_barrier_destroy.c" - "musl/src/thread/pthread_barrier_init.c" - "musl/src/thread/pthread_barrier_wait.c" - "musl/src/thread/pthread_barrierattr_destroy.c" - "musl/src/thread/pthread_barrierattr_init.c" - "musl/src/thread/pthread_barrierattr_setpshared.c" - "musl/src/thread/pthread_cancel.c" - "musl/src/thread/pthread_cleanup_push.c" - "musl/src/thread/pthread_cond_broadcast.c" - "musl/src/thread/pthread_cond_destroy.c" - "musl/src/thread/pthread_cond_init.c" - "musl/src/thread/pthread_cond_signal.c" - "musl/src/thread/pthread_cond_timedwait.c" - "musl/src/thread/pthread_cond_wait.c" - "musl/src/thread/pthread_condattr_destroy.c" - "musl/src/thread/pthread_condattr_init.c" - "musl/src/thread/pthread_condattr_setclock.c" - "musl/src/thread/pthread_condattr_setpshared.c" - "musl/src/thread/pthread_create.c" - "musl/src/thread/pthread_detach.c" - "musl/src/thread/pthread_equal.c" - "musl/src/thread/pthread_getattr_np.c" - "musl/src/thread/pthread_getconcurrency.c" - "musl/src/thread/pthread_getcpuclockid.c" - "musl/src/thread/pthread_getschedparam.c" - "musl/src/thread/pthread_getspecific.c" - "musl/src/thread/pthread_join.c" - "musl/src/thread/pthread_key_create.c" - "musl/src/thread/pthread_key_delete.c" - "musl/src/thread/pthread_kill.c" - "musl/src/thread/pthread_mutex_consistent.c" - "musl/src/thread/pthread_mutex_destroy.c" - "musl/src/thread/pthread_mutex_getprioceiling.c" - "musl/src/thread/pthread_mutex_init.c" - "musl/src/thread/pthread_mutex_lock.c" - "musl/src/thread/pthread_mutex_setprioceiling.c" - "musl/src/thread/pthread_mutex_timedlock.c" - "musl/src/thread/pthread_mutex_trylock.c" - "musl/src/thread/pthread_mutex_unlock.c" - "musl/src/thread/pthread_mutexattr_destroy.c" - "musl/src/thread/pthread_mutexattr_init.c" - "musl/src/thread/pthread_mutexattr_setprotocol.c" - "musl/src/thread/pthread_mutexattr_setpshared.c" - "musl/src/thread/pthread_mutexattr_setrobust.c" - "musl/src/thread/pthread_mutexattr_settype.c" - "musl/src/thread/pthread_once.c" - "musl/src/thread/pthread_rwlock_destroy.c" - "musl/src/thread/pthread_rwlock_init.c" - "musl/src/thread/pthread_rwlock_rdlock.c" - "musl/src/thread/pthread_rwlock_timedrdlock.c" - "musl/src/thread/pthread_rwlock_timedwrlock.c" - "musl/src/thread/pthread_rwlock_tryrdlock.c" - "musl/src/thread/pthread_rwlock_trywrlock.c" - "musl/src/thread/pthread_rwlock_unlock.c" - "musl/src/thread/pthread_rwlock_wrlock.c" - "musl/src/thread/pthread_rwlockattr_destroy.c" - "musl/src/thread/pthread_rwlockattr_init.c" - "musl/src/thread/pthread_rwlockattr_setpshared.c" - "musl/src/thread/pthread_self.c" - "musl/src/thread/pthread_setattr_default_np.c" - "musl/src/thread/pthread_setcancelstate.c" - "musl/src/thread/pthread_setcanceltype.c" - "musl/src/thread/pthread_setconcurrency.c" - "musl/src/thread/pthread_setname_np.c" - "musl/src/thread/pthread_setschedparam.c" - "musl/src/thread/pthread_setschedprio.c" - "musl/src/thread/pthread_setspecific.c" - "musl/src/thread/pthread_sigmask.c" - "musl/src/thread/pthread_spin_destroy.c" - "musl/src/thread/pthread_spin_init.c" - "musl/src/thread/pthread_spin_lock.c" - "musl/src/thread/pthread_spin_trylock.c" - "musl/src/thread/pthread_spin_unlock.c" - "musl/src/thread/pthread_testcancel.c" - "musl/src/thread/s390x/__set_thread_area.s" - "musl/src/thread/s390x/__tls_get_offset.s" - "musl/src/thread/s390x/__unmapself.s" - "musl/src/thread/s390x/clone.s" - "musl/src/thread/s390x/syscall_cp.s" - "musl/src/thread/sem_destroy.c" - "musl/src/thread/sem_getvalue.c" - "musl/src/thread/sem_init.c" - "musl/src/thread/sem_open.c" - "musl/src/thread/sem_post.c" - "musl/src/thread/sem_timedwait.c" - "musl/src/thread/sem_trywait.c" - "musl/src/thread/sem_unlink.c" - "musl/src/thread/sem_wait.c" - "musl/src/thread/sh/__set_thread_area.c" - "musl/src/thread/sh/__unmapself.c" - "musl/src/thread/sh/__unmapself_mmu.s" - "musl/src/thread/sh/atomics.s" - "musl/src/thread/sh/clone.s" - "musl/src/thread/sh/syscall_cp.s" - "musl/src/thread/synccall.c" - "musl/src/thread/syscall_cp.c" - "musl/src/thread/thrd_create.c" - "musl/src/thread/thrd_exit.c" - "musl/src/thread/thrd_join.c" - "musl/src/thread/thrd_sleep.c" - "musl/src/thread/thrd_yield.c" - "musl/src/thread/tls.c" - "musl/src/thread/tss_create.c" - "musl/src/thread/tss_delete.c" - "musl/src/thread/tss_set.c" - "musl/src/thread/vmlock.c" - "musl/src/thread/x32/__set_thread_area.s" - "musl/src/thread/x32/__unmapself.s" - "musl/src/thread/x32/clone.s" - "musl/src/thread/x32/syscall_cp.s" - "musl/src/thread/x32/syscall_cp_fixup.c" - "musl/src/thread/x86_64/__set_thread_area.s" - "musl/src/thread/x86_64/__unmapself.s" - "musl/src/thread/x86_64/clone.s" - "musl/src/thread/x86_64/syscall_cp.s" - "musl/src/time/__map_file.c" - "musl/src/time/__month_to_secs.c" - "musl/src/time/__secs_to_tm.c" - "musl/src/time/__tm_to_secs.c" - "musl/src/time/__tz.c" - "musl/src/time/__year_to_secs.c" - "musl/src/time/asctime.c" - "musl/src/time/asctime_r.c" - "musl/src/time/clock.c" - "musl/src/time/clock_getcpuclockid.c" - "musl/src/time/clock_getres.c" - "musl/src/time/clock_gettime.c" - "musl/src/time/clock_nanosleep.c" - "musl/src/time/clock_settime.c" - "musl/src/time/ctime.c" - "musl/src/time/ctime_r.c" - "musl/src/time/difftime.c" - "musl/src/time/ftime.c" - "musl/src/time/getdate.c" - "musl/src/time/gettimeofday.c" - "musl/src/time/gmtime.c" - "musl/src/time/gmtime_r.c" - "musl/src/time/localtime.c" - "musl/src/time/localtime_r.c" - "musl/src/time/mktime.c" - "musl/src/time/nanosleep.c" - "musl/src/time/strftime.c" - "musl/src/time/strptime.c" - "musl/src/time/time.c" - "musl/src/time/time_impl.h" - "musl/src/time/timegm.c" - "musl/src/time/timer_create.c" - "musl/src/time/timer_delete.c" - "musl/src/time/timer_getoverrun.c" - "musl/src/time/timer_gettime.c" - "musl/src/time/timer_settime.c" - "musl/src/time/times.c" - "musl/src/time/timespec_get.c" - "musl/src/time/utime.c" - "musl/src/time/wcsftime.c" - "musl/src/unistd/_exit.c" - "musl/src/unistd/access.c" - "musl/src/unistd/acct.c" - "musl/src/unistd/alarm.c" - "musl/src/unistd/chdir.c" - "musl/src/unistd/chown.c" - "musl/src/unistd/close.c" - "musl/src/unistd/ctermid.c" - "musl/src/unistd/dup.c" - "musl/src/unistd/dup2.c" - "musl/src/unistd/dup3.c" - "musl/src/unistd/faccessat.c" - "musl/src/unistd/fchdir.c" - "musl/src/unistd/fchown.c" - "musl/src/unistd/fchownat.c" - "musl/src/unistd/fdatasync.c" - "musl/src/unistd/fsync.c" - "musl/src/unistd/ftruncate.c" - "musl/src/unistd/getcwd.c" - "musl/src/unistd/getegid.c" - "musl/src/unistd/geteuid.c" - "musl/src/unistd/getgid.c" - "musl/src/unistd/getgroups.c" - "musl/src/unistd/gethostname.c" - "musl/src/unistd/getlogin.c" - "musl/src/unistd/getlogin_r.c" - "musl/src/unistd/getpgid.c" - "musl/src/unistd/getpgrp.c" - "musl/src/unistd/getpid.c" - "musl/src/unistd/getppid.c" - "musl/src/unistd/getsid.c" - "musl/src/unistd/getuid.c" - "musl/src/unistd/isatty.c" - "musl/src/unistd/lchown.c" - "musl/src/unistd/link.c" - "musl/src/unistd/linkat.c" - "musl/src/unistd/lseek.c" - "musl/src/unistd/mips/pipe.s" - "musl/src/unistd/mips64/pipe.s" - "musl/src/unistd/mipsn32/pipe.s" - "musl/src/unistd/nice.c" - "musl/src/unistd/pause.c" - "musl/src/unistd/pipe.c" - "musl/src/unistd/pipe2.c" - "musl/src/unistd/posix_close.c" - "musl/src/unistd/pread.c" - "musl/src/unistd/preadv.c" - "musl/src/unistd/pwrite.c" - "musl/src/unistd/pwritev.c" - "musl/src/unistd/read.c" - "musl/src/unistd/readlink.c" - "musl/src/unistd/readlinkat.c" - "musl/src/unistd/readv.c" - "musl/src/unistd/renameat.c" - "musl/src/unistd/rmdir.c" - "musl/src/unistd/setegid.c" - "musl/src/unistd/seteuid.c" - "musl/src/unistd/setgid.c" - "musl/src/unistd/setpgid.c" - "musl/src/unistd/setpgrp.c" - "musl/src/unistd/setregid.c" - "musl/src/unistd/setresgid.c" - "musl/src/unistd/setresuid.c" - "musl/src/unistd/setreuid.c" - "musl/src/unistd/setsid.c" - "musl/src/unistd/setuid.c" - "musl/src/unistd/setxid.c" - "musl/src/unistd/sh/pipe.s" - "musl/src/unistd/sleep.c" - "musl/src/unistd/symlink.c" - "musl/src/unistd/symlinkat.c" - "musl/src/unistd/sync.c" - "musl/src/unistd/tcgetpgrp.c" - "musl/src/unistd/tcsetpgrp.c" - "musl/src/unistd/truncate.c" - "musl/src/unistd/ttyname.c" - "musl/src/unistd/ttyname_r.c" - "musl/src/unistd/ualarm.c" - "musl/src/unistd/unlink.c" - "musl/src/unistd/unlinkat.c" - "musl/src/unistd/usleep.c" - "musl/src/unistd/write.c" - "musl/src/unistd/writev.c" -) - if(MSVC) set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA SDK") if(IS_DIRECTORY ${MSVC_DIA_SDK_DIR}) @@ -2276,17 +476,6 @@ configure_file ( "${CMAKE_SOURCE_DIR}/src/config.h.in" "${CMAKE_BINARY_DIR}/config.h" ) -set(INSTALL_FILES_H "${CMAKE_BINARY_DIR}/install_files.h") -file(REMOVE "${INSTALL_FILES_H}") -file(APPEND "${INSTALL_FILES_H}" "#ifndef ZIG_INSTALL_FILES_H\n") -file(APPEND "${INSTALL_FILES_H}" "#define ZIG_INSTALL_FILES_H\n") -file(APPEND "${INSTALL_FILES_H}" "static const char *ZIG_MUSL_SRC_FILES[] = {\n") -foreach(filename ${ZIG_MUSL_SRC_FILES}) - file(APPEND "${INSTALL_FILES_H}" "\"${filename}\",\n") -endforeach(filename) -file(APPEND "${INSTALL_FILES_H}" "};\n") -file(APPEND "${INSTALL_FILES_H}" "#endif\n") - include_directories( ${CMAKE_SOURCE_DIR} diff --git a/src/install_files.h b/src/install_files.h new file mode 100644 index 0000000000..8b6a4dc059 --- /dev/null +++ b/src/install_files.h @@ -0,0 +1,1802 @@ +#ifndef ZIG_INSTALL_FILES_H +#define ZIG_INSTALL_FILES_H +static const char *ZIG_MUSL_SRC_FILES[] = { +"musl/src/aio/aio.c", +"musl/src/aio/aio_suspend.c", +"musl/src/aio/lio_listio.c", +"musl/src/complex/__cexp.c", +"musl/src/complex/__cexpf.c", +"musl/src/complex/cabs.c", +"musl/src/complex/cabsf.c", +"musl/src/complex/cabsl.c", +"musl/src/complex/cacos.c", +"musl/src/complex/cacosf.c", +"musl/src/complex/cacosh.c", +"musl/src/complex/cacoshf.c", +"musl/src/complex/cacoshl.c", +"musl/src/complex/cacosl.c", +"musl/src/complex/carg.c", +"musl/src/complex/cargf.c", +"musl/src/complex/cargl.c", +"musl/src/complex/casin.c", +"musl/src/complex/casinf.c", +"musl/src/complex/casinh.c", +"musl/src/complex/casinhf.c", +"musl/src/complex/casinhl.c", +"musl/src/complex/casinl.c", +"musl/src/complex/catan.c", +"musl/src/complex/catanf.c", +"musl/src/complex/catanh.c", +"musl/src/complex/catanhf.c", +"musl/src/complex/catanhl.c", +"musl/src/complex/catanl.c", +"musl/src/complex/ccos.c", +"musl/src/complex/ccosf.c", +"musl/src/complex/ccosh.c", +"musl/src/complex/ccoshf.c", +"musl/src/complex/ccoshl.c", +"musl/src/complex/ccosl.c", +"musl/src/complex/cexp.c", +"musl/src/complex/cexpf.c", +"musl/src/complex/cexpl.c", +"musl/src/complex/cimag.c", +"musl/src/complex/cimagf.c", +"musl/src/complex/cimagl.c", +"musl/src/complex/clog.c", +"musl/src/complex/clogf.c", +"musl/src/complex/clogl.c", +"musl/src/complex/conj.c", +"musl/src/complex/conjf.c", +"musl/src/complex/conjl.c", +"musl/src/complex/cpow.c", +"musl/src/complex/cpowf.c", +"musl/src/complex/cpowl.c", +"musl/src/complex/cproj.c", +"musl/src/complex/cprojf.c", +"musl/src/complex/cprojl.c", +"musl/src/complex/creal.c", +"musl/src/complex/crealf.c", +"musl/src/complex/creall.c", +"musl/src/complex/csin.c", +"musl/src/complex/csinf.c", +"musl/src/complex/csinh.c", +"musl/src/complex/csinhf.c", +"musl/src/complex/csinhl.c", +"musl/src/complex/csinl.c", +"musl/src/complex/csqrt.c", +"musl/src/complex/csqrtf.c", +"musl/src/complex/csqrtl.c", +"musl/src/complex/ctan.c", +"musl/src/complex/ctanf.c", +"musl/src/complex/ctanh.c", +"musl/src/complex/ctanhf.c", +"musl/src/complex/ctanhl.c", +"musl/src/complex/ctanl.c", +"musl/src/conf/confstr.c", +"musl/src/conf/fpathconf.c", +"musl/src/conf/legacy.c", +"musl/src/conf/pathconf.c", +"musl/src/conf/sysconf.c", +"musl/src/crypt/crypt.c", +"musl/src/crypt/crypt_blowfish.c", +"musl/src/crypt/crypt_des.c", +"musl/src/crypt/crypt_des.h", +"musl/src/crypt/crypt_md5.c", +"musl/src/crypt/crypt_r.c", +"musl/src/crypt/crypt_sha256.c", +"musl/src/crypt/crypt_sha512.c", +"musl/src/crypt/encrypt.c", +"musl/src/ctype/__ctype_b_loc.c", +"musl/src/ctype/__ctype_get_mb_cur_max.c", +"musl/src/ctype/__ctype_tolower_loc.c", +"musl/src/ctype/__ctype_toupper_loc.c", +"musl/src/ctype/alpha.h", +"musl/src/ctype/isalnum.c", +"musl/src/ctype/isalpha.c", +"musl/src/ctype/isascii.c", +"musl/src/ctype/isblank.c", +"musl/src/ctype/iscntrl.c", +"musl/src/ctype/isdigit.c", +"musl/src/ctype/isgraph.c", +"musl/src/ctype/islower.c", +"musl/src/ctype/isprint.c", +"musl/src/ctype/ispunct.c", +"musl/src/ctype/isspace.c", +"musl/src/ctype/isupper.c", +"musl/src/ctype/iswalnum.c", +"musl/src/ctype/iswalpha.c", +"musl/src/ctype/iswblank.c", +"musl/src/ctype/iswcntrl.c", +"musl/src/ctype/iswctype.c", +"musl/src/ctype/iswdigit.c", +"musl/src/ctype/iswgraph.c", +"musl/src/ctype/iswlower.c", +"musl/src/ctype/iswprint.c", +"musl/src/ctype/iswpunct.c", +"musl/src/ctype/iswspace.c", +"musl/src/ctype/iswupper.c", +"musl/src/ctype/iswxdigit.c", +"musl/src/ctype/isxdigit.c", +"musl/src/ctype/nonspacing.h", +"musl/src/ctype/punct.h", +"musl/src/ctype/toascii.c", +"musl/src/ctype/tolower.c", +"musl/src/ctype/toupper.c", +"musl/src/ctype/towctrans.c", +"musl/src/ctype/wcswidth.c", +"musl/src/ctype/wctrans.c", +"musl/src/ctype/wcwidth.c", +"musl/src/ctype/wide.h", +"musl/src/dirent/__dirent.h", +"musl/src/dirent/alphasort.c", +"musl/src/dirent/closedir.c", +"musl/src/dirent/dirfd.c", +"musl/src/dirent/fdopendir.c", +"musl/src/dirent/opendir.c", +"musl/src/dirent/readdir.c", +"musl/src/dirent/readdir_r.c", +"musl/src/dirent/rewinddir.c", +"musl/src/dirent/scandir.c", +"musl/src/dirent/seekdir.c", +"musl/src/dirent/telldir.c", +"musl/src/dirent/versionsort.c", +"musl/src/env/__environ.c", +"musl/src/env/__init_tls.c", +"musl/src/env/__libc_start_main.c", +"musl/src/env/__reset_tls.c", +"musl/src/env/__stack_chk_fail.c", +"musl/src/env/clearenv.c", +"musl/src/env/getenv.c", +"musl/src/env/putenv.c", +"musl/src/env/setenv.c", +"musl/src/env/unsetenv.c", +"musl/src/errno/__errno_location.c", +"musl/src/errno/__strerror.h", +"musl/src/errno/strerror.c", +"musl/src/exit/_Exit.c", +"musl/src/exit/abort.c", +"musl/src/exit/arm/__aeabi_atexit.c", +"musl/src/exit/assert.c", +"musl/src/exit/at_quick_exit.c", +"musl/src/exit/atexit.c", +"musl/src/exit/exit.c", +"musl/src/exit/quick_exit.c", +"musl/src/fcntl/creat.c", +"musl/src/fcntl/fcntl.c", +"musl/src/fcntl/open.c", +"musl/src/fcntl/openat.c", +"musl/src/fcntl/posix_fadvise.c", +"musl/src/fcntl/posix_fallocate.c", +"musl/src/fenv/__flt_rounds.c", +"musl/src/fenv/aarch64/fenv.s", +"musl/src/fenv/arm/fenv-hf.S", +"musl/src/fenv/arm/fenv.c", +"musl/src/fenv/fegetexceptflag.c", +"musl/src/fenv/feholdexcept.c", +"musl/src/fenv/fenv.c", +"musl/src/fenv/fesetexceptflag.c", +"musl/src/fenv/fesetround.c", +"musl/src/fenv/feupdateenv.c", +"musl/src/fenv/i386/fenv.s", +"musl/src/fenv/m68k/fenv.c", +"musl/src/fenv/mips/fenv-sf.c", +"musl/src/fenv/mips/fenv.S", +"musl/src/fenv/mips64/fenv-sf.c", +"musl/src/fenv/mips64/fenv.S", +"musl/src/fenv/mipsn32/fenv-sf.c", +"musl/src/fenv/mipsn32/fenv.S", +"musl/src/fenv/powerpc/fenv-sf.c", +"musl/src/fenv/powerpc/fenv.S", +"musl/src/fenv/powerpc64/fenv.c", +"musl/src/fenv/s390x/fenv.c", +"musl/src/fenv/sh/fenv-nofpu.c", +"musl/src/fenv/sh/fenv.S", +"musl/src/fenv/x32/fenv.s", +"musl/src/fenv/x86_64/fenv.s", +"musl/src/include/arpa/inet.h", +"musl/src/include/crypt.h", +"musl/src/include/errno.h", +"musl/src/include/features.h", +"musl/src/include/langinfo.h", +"musl/src/include/pthread.h", +"musl/src/include/resolv.h", +"musl/src/include/signal.h", +"musl/src/include/stdio.h", +"musl/src/include/stdlib.h", +"musl/src/include/string.h", +"musl/src/include/sys/auxv.h", +"musl/src/include/sys/mman.h", +"musl/src/include/sys/sysinfo.h", +"musl/src/include/sys/time.h", +"musl/src/include/time.h", +"musl/src/include/unistd.h", +"musl/src/internal/aarch64/syscall.s", +"musl/src/internal/arm/syscall.s", +"musl/src/internal/atomic.h", +"musl/src/internal/dynlink.h", +"musl/src/internal/fdpic_crt.h", +"musl/src/internal/floatscan.c", +"musl/src/internal/floatscan.h", +"musl/src/internal/futex.h", +"musl/src/internal/i386/syscall.s", +"musl/src/internal/intscan.c", +"musl/src/internal/intscan.h", +"musl/src/internal/ksigaction.h", +"musl/src/internal/libc.c", +"musl/src/internal/libc.h", +"musl/src/internal/libm.h", +"musl/src/internal/locale_impl.h", +"musl/src/internal/lock.h", +"musl/src/internal/m68k/syscall.s", +"musl/src/internal/malloc_impl.h", +"musl/src/internal/microblaze/syscall.s", +"musl/src/internal/mips/syscall.s", +"musl/src/internal/mips64/syscall.s", +"musl/src/internal/mipsn32/syscall.s", +"musl/src/internal/or1k/syscall.s", +"musl/src/internal/powerpc/syscall.s", +"musl/src/internal/powerpc64/syscall.s", +"musl/src/internal/procfdname.c", +"musl/src/internal/pthread_impl.h", +"musl/src/internal/s390x/syscall.s", +"musl/src/internal/sh/__shcall.c", +"musl/src/internal/sh/syscall.s", +"musl/src/internal/shgetc.c", +"musl/src/internal/shgetc.h", +"musl/src/internal/stdio_impl.h", +"musl/src/internal/syscall.c", +"musl/src/internal/syscall.h", +"musl/src/internal/syscall_ret.c", +"musl/src/internal/vdso.c", +"musl/src/internal/version.c", +"musl/src/internal/version.h", +"musl/src/internal/x32/syscall.s", +"musl/src/internal/x86_64/syscall.s", +"musl/src/ipc/ftok.c", +"musl/src/ipc/ipc.h", +"musl/src/ipc/msgctl.c", +"musl/src/ipc/msgget.c", +"musl/src/ipc/msgrcv.c", +"musl/src/ipc/msgsnd.c", +"musl/src/ipc/semctl.c", +"musl/src/ipc/semget.c", +"musl/src/ipc/semop.c", +"musl/src/ipc/semtimedop.c", +"musl/src/ipc/shmat.c", +"musl/src/ipc/shmctl.c", +"musl/src/ipc/shmdt.c", +"musl/src/ipc/shmget.c", +"musl/src/ldso/__dlsym.c", +"musl/src/ldso/aarch64/dlsym.s", +"musl/src/ldso/aarch64/tlsdesc.s", +"musl/src/ldso/arm/dlsym.s", +"musl/src/ldso/arm/find_exidx.c", +"musl/src/ldso/arm/tlsdesc.S", +"musl/src/ldso/dl_iterate_phdr.c", +"musl/src/ldso/dladdr.c", +"musl/src/ldso/dlclose.c", +"musl/src/ldso/dlerror.c", +"musl/src/ldso/dlinfo.c", +"musl/src/ldso/dlopen.c", +"musl/src/ldso/dlsym.c", +"musl/src/ldso/i386/dlsym.s", +"musl/src/ldso/i386/tlsdesc.s", +"musl/src/ldso/m68k/dlsym.s", +"musl/src/ldso/microblaze/dlsym.s", +"musl/src/ldso/mips/dlsym.s", +"musl/src/ldso/mips64/dlsym.s", +"musl/src/ldso/mipsn32/dlsym.s", +"musl/src/ldso/or1k/dlsym.s", +"musl/src/ldso/powerpc/dlsym.s", +"musl/src/ldso/powerpc64/dlsym.s", +"musl/src/ldso/s390x/dlsym.s", +"musl/src/ldso/sh/dlsym.s", +"musl/src/ldso/tlsdesc.c", +"musl/src/ldso/x32/dlsym.s", +"musl/src/ldso/x86_64/dlsym.s", +"musl/src/ldso/x86_64/tlsdesc.s", +"musl/src/legacy/cuserid.c", +"musl/src/legacy/daemon.c", +"musl/src/legacy/err.c", +"musl/src/legacy/euidaccess.c", +"musl/src/legacy/ftw.c", +"musl/src/legacy/futimes.c", +"musl/src/legacy/getdtablesize.c", +"musl/src/legacy/getloadavg.c", +"musl/src/legacy/getpagesize.c", +"musl/src/legacy/getpass.c", +"musl/src/legacy/getusershell.c", +"musl/src/legacy/isastream.c", +"musl/src/legacy/lutimes.c", +"musl/src/legacy/ulimit.c", +"musl/src/legacy/utmpx.c", +"musl/src/legacy/valloc.c", +"musl/src/linux/adjtime.c", +"musl/src/linux/adjtimex.c", +"musl/src/linux/arch_prctl.c", +"musl/src/linux/brk.c", +"musl/src/linux/cache.c", +"musl/src/linux/cap.c", +"musl/src/linux/chroot.c", +"musl/src/linux/clock_adjtime.c", +"musl/src/linux/clone.c", +"musl/src/linux/epoll.c", +"musl/src/linux/eventfd.c", +"musl/src/linux/fallocate.c", +"musl/src/linux/fanotify.c", +"musl/src/linux/flock.c", +"musl/src/linux/getdents.c", +"musl/src/linux/getrandom.c", +"musl/src/linux/inotify.c", +"musl/src/linux/ioperm.c", +"musl/src/linux/iopl.c", +"musl/src/linux/klogctl.c", +"musl/src/linux/memfd_create.c", +"musl/src/linux/mlock2.c", +"musl/src/linux/module.c", +"musl/src/linux/mount.c", +"musl/src/linux/name_to_handle_at.c", +"musl/src/linux/open_by_handle_at.c", +"musl/src/linux/personality.c", +"musl/src/linux/pivot_root.c", +"musl/src/linux/ppoll.c", +"musl/src/linux/prctl.c", +"musl/src/linux/prlimit.c", +"musl/src/linux/process_vm.c", +"musl/src/linux/ptrace.c", +"musl/src/linux/quotactl.c", +"musl/src/linux/readahead.c", +"musl/src/linux/reboot.c", +"musl/src/linux/remap_file_pages.c", +"musl/src/linux/sbrk.c", +"musl/src/linux/sendfile.c", +"musl/src/linux/setfsgid.c", +"musl/src/linux/setfsuid.c", +"musl/src/linux/setgroups.c", +"musl/src/linux/sethostname.c", +"musl/src/linux/setns.c", +"musl/src/linux/settimeofday.c", +"musl/src/linux/signalfd.c", +"musl/src/linux/splice.c", +"musl/src/linux/stime.c", +"musl/src/linux/swap.c", +"musl/src/linux/sync_file_range.c", +"musl/src/linux/syncfs.c", +"musl/src/linux/sysinfo.c", +"musl/src/linux/tee.c", +"musl/src/linux/timerfd.c", +"musl/src/linux/unshare.c", +"musl/src/linux/utimes.c", +"musl/src/linux/vhangup.c", +"musl/src/linux/vmsplice.c", +"musl/src/linux/wait3.c", +"musl/src/linux/wait4.c", +"musl/src/linux/x32/sysinfo.c", +"musl/src/linux/xattr.c", +"musl/src/locale/__lctrans.c", +"musl/src/locale/__mo_lookup.c", +"musl/src/locale/big5.h", +"musl/src/locale/bind_textdomain_codeset.c", +"musl/src/locale/c_locale.c", +"musl/src/locale/catclose.c", +"musl/src/locale/catgets.c", +"musl/src/locale/catopen.c", +"musl/src/locale/codepages.h", +"musl/src/locale/dcngettext.c", +"musl/src/locale/duplocale.c", +"musl/src/locale/freelocale.c", +"musl/src/locale/gb18030.h", +"musl/src/locale/hkscs.h", +"musl/src/locale/iconv.c", +"musl/src/locale/iconv_close.c", +"musl/src/locale/jis0208.h", +"musl/src/locale/ksc.h", +"musl/src/locale/langinfo.c", +"musl/src/locale/legacychars.h", +"musl/src/locale/locale_map.c", +"musl/src/locale/localeconv.c", +"musl/src/locale/newlocale.c", +"musl/src/locale/pleval.c", +"musl/src/locale/pleval.h", +"musl/src/locale/revjis.h", +"musl/src/locale/setlocale.c", +"musl/src/locale/strcoll.c", +"musl/src/locale/strfmon.c", +"musl/src/locale/strxfrm.c", +"musl/src/locale/textdomain.c", +"musl/src/locale/uselocale.c", +"musl/src/locale/wcscoll.c", +"musl/src/locale/wcsxfrm.c", +"musl/src/malloc/DESIGN", +"musl/src/malloc/aligned_alloc.c", +"musl/src/malloc/expand_heap.c", +"musl/src/malloc/lite_malloc.c", +"musl/src/malloc/malloc.c", +"musl/src/malloc/malloc_usable_size.c", +"musl/src/malloc/memalign.c", +"musl/src/malloc/posix_memalign.c", +"musl/src/math/__cos.c", +"musl/src/math/__cosdf.c", +"musl/src/math/__cosl.c", +"musl/src/math/__expo2.c", +"musl/src/math/__expo2f.c", +"musl/src/math/__fpclassify.c", +"musl/src/math/__fpclassifyf.c", +"musl/src/math/__fpclassifyl.c", +"musl/src/math/__invtrigl.c", +"musl/src/math/__invtrigl.h", +"musl/src/math/__polevll.c", +"musl/src/math/__rem_pio2.c", +"musl/src/math/__rem_pio2_large.c", +"musl/src/math/__rem_pio2f.c", +"musl/src/math/__rem_pio2l.c", +"musl/src/math/__signbit.c", +"musl/src/math/__signbitf.c", +"musl/src/math/__signbitl.c", +"musl/src/math/__sin.c", +"musl/src/math/__sindf.c", +"musl/src/math/__sinl.c", +"musl/src/math/__tan.c", +"musl/src/math/__tandf.c", +"musl/src/math/__tanl.c", +"musl/src/math/aarch64/ceil.c", +"musl/src/math/aarch64/ceilf.c", +"musl/src/math/aarch64/fabs.c", +"musl/src/math/aarch64/fabsf.c", +"musl/src/math/aarch64/floor.c", +"musl/src/math/aarch64/floorf.c", +"musl/src/math/aarch64/fma.c", +"musl/src/math/aarch64/fmaf.c", +"musl/src/math/aarch64/fmax.c", +"musl/src/math/aarch64/fmaxf.c", +"musl/src/math/aarch64/fmin.c", +"musl/src/math/aarch64/fminf.c", +"musl/src/math/aarch64/llrint.c", +"musl/src/math/aarch64/llrintf.c", +"musl/src/math/aarch64/llround.c", +"musl/src/math/aarch64/llroundf.c", +"musl/src/math/aarch64/lrint.c", +"musl/src/math/aarch64/lrintf.c", +"musl/src/math/aarch64/lround.c", +"musl/src/math/aarch64/lroundf.c", +"musl/src/math/aarch64/nearbyint.c", +"musl/src/math/aarch64/nearbyintf.c", +"musl/src/math/aarch64/rint.c", +"musl/src/math/aarch64/rintf.c", +"musl/src/math/aarch64/round.c", +"musl/src/math/aarch64/roundf.c", +"musl/src/math/aarch64/sqrt.c", +"musl/src/math/aarch64/sqrtf.c", +"musl/src/math/aarch64/trunc.c", +"musl/src/math/aarch64/truncf.c", +"musl/src/math/acos.c", +"musl/src/math/acosf.c", +"musl/src/math/acosh.c", +"musl/src/math/acoshf.c", +"musl/src/math/acoshl.c", +"musl/src/math/acosl.c", +"musl/src/math/arm/fabs.c", +"musl/src/math/arm/fabsf.c", +"musl/src/math/arm/fma.c", +"musl/src/math/arm/fmaf.c", +"musl/src/math/arm/sqrt.c", +"musl/src/math/arm/sqrtf.c", +"musl/src/math/asin.c", +"musl/src/math/asinf.c", +"musl/src/math/asinh.c", +"musl/src/math/asinhf.c", +"musl/src/math/asinhl.c", +"musl/src/math/asinl.c", +"musl/src/math/atan.c", +"musl/src/math/atan2.c", +"musl/src/math/atan2f.c", +"musl/src/math/atan2l.c", +"musl/src/math/atanf.c", +"musl/src/math/atanh.c", +"musl/src/math/atanhf.c", +"musl/src/math/atanhl.c", +"musl/src/math/atanl.c", +"musl/src/math/cbrt.c", +"musl/src/math/cbrtf.c", +"musl/src/math/cbrtl.c", +"musl/src/math/ceil.c", +"musl/src/math/ceilf.c", +"musl/src/math/ceill.c", +"musl/src/math/copysign.c", +"musl/src/math/copysignf.c", +"musl/src/math/copysignl.c", +"musl/src/math/cos.c", +"musl/src/math/cosf.c", +"musl/src/math/cosh.c", +"musl/src/math/coshf.c", +"musl/src/math/coshl.c", +"musl/src/math/cosl.c", +"musl/src/math/erf.c", +"musl/src/math/erff.c", +"musl/src/math/erfl.c", +"musl/src/math/exp.c", +"musl/src/math/exp10.c", +"musl/src/math/exp10f.c", +"musl/src/math/exp10l.c", +"musl/src/math/exp2.c", +"musl/src/math/exp2f.c", +"musl/src/math/exp2l.c", +"musl/src/math/expf.c", +"musl/src/math/expl.c", +"musl/src/math/expm1.c", +"musl/src/math/expm1f.c", +"musl/src/math/expm1l.c", +"musl/src/math/fabs.c", +"musl/src/math/fabsf.c", +"musl/src/math/fabsl.c", +"musl/src/math/fdim.c", +"musl/src/math/fdimf.c", +"musl/src/math/fdiml.c", +"musl/src/math/finite.c", +"musl/src/math/finitef.c", +"musl/src/math/floor.c", +"musl/src/math/floorf.c", +"musl/src/math/floorl.c", +"musl/src/math/fma.c", +"musl/src/math/fmaf.c", +"musl/src/math/fmal.c", +"musl/src/math/fmax.c", +"musl/src/math/fmaxf.c", +"musl/src/math/fmaxl.c", +"musl/src/math/fmin.c", +"musl/src/math/fminf.c", +"musl/src/math/fminl.c", +"musl/src/math/fmod.c", +"musl/src/math/fmodf.c", +"musl/src/math/fmodl.c", +"musl/src/math/frexp.c", +"musl/src/math/frexpf.c", +"musl/src/math/frexpl.c", +"musl/src/math/hypot.c", +"musl/src/math/hypotf.c", +"musl/src/math/hypotl.c", +"musl/src/math/i386/__invtrigl.s", +"musl/src/math/i386/acos.s", +"musl/src/math/i386/acosf.s", +"musl/src/math/i386/acosl.s", +"musl/src/math/i386/asin.s", +"musl/src/math/i386/asinf.s", +"musl/src/math/i386/asinl.s", +"musl/src/math/i386/atan.s", +"musl/src/math/i386/atan2.s", +"musl/src/math/i386/atan2f.s", +"musl/src/math/i386/atan2l.s", +"musl/src/math/i386/atanf.s", +"musl/src/math/i386/atanl.s", +"musl/src/math/i386/ceil.s", +"musl/src/math/i386/ceilf.s", +"musl/src/math/i386/ceill.s", +"musl/src/math/i386/exp.s", +"musl/src/math/i386/exp2.s", +"musl/src/math/i386/exp2f.s", +"musl/src/math/i386/exp2l.s", +"musl/src/math/i386/expf.s", +"musl/src/math/i386/expl.s", +"musl/src/math/i386/expm1.s", +"musl/src/math/i386/expm1f.s", +"musl/src/math/i386/expm1l.s", +"musl/src/math/i386/fabs.s", +"musl/src/math/i386/fabsf.s", +"musl/src/math/i386/fabsl.s", +"musl/src/math/i386/floor.s", +"musl/src/math/i386/floorf.s", +"musl/src/math/i386/floorl.s", +"musl/src/math/i386/fmod.s", +"musl/src/math/i386/fmodf.s", +"musl/src/math/i386/fmodl.s", +"musl/src/math/i386/hypot.s", +"musl/src/math/i386/hypotf.s", +"musl/src/math/i386/ldexp.s", +"musl/src/math/i386/ldexpf.s", +"musl/src/math/i386/ldexpl.s", +"musl/src/math/i386/llrint.s", +"musl/src/math/i386/llrintf.s", +"musl/src/math/i386/llrintl.s", +"musl/src/math/i386/log.s", +"musl/src/math/i386/log10.s", +"musl/src/math/i386/log10f.s", +"musl/src/math/i386/log10l.s", +"musl/src/math/i386/log1p.s", +"musl/src/math/i386/log1pf.s", +"musl/src/math/i386/log1pl.s", +"musl/src/math/i386/log2.s", +"musl/src/math/i386/log2f.s", +"musl/src/math/i386/log2l.s", +"musl/src/math/i386/logf.s", +"musl/src/math/i386/logl.s", +"musl/src/math/i386/lrint.s", +"musl/src/math/i386/lrintf.s", +"musl/src/math/i386/lrintl.s", +"musl/src/math/i386/remainder.s", +"musl/src/math/i386/remainderf.s", +"musl/src/math/i386/remainderl.s", +"musl/src/math/i386/remquo.s", +"musl/src/math/i386/remquof.s", +"musl/src/math/i386/remquol.s", +"musl/src/math/i386/rint.s", +"musl/src/math/i386/rintf.s", +"musl/src/math/i386/rintl.s", +"musl/src/math/i386/scalbln.s", +"musl/src/math/i386/scalblnf.s", +"musl/src/math/i386/scalblnl.s", +"musl/src/math/i386/scalbn.s", +"musl/src/math/i386/scalbnf.s", +"musl/src/math/i386/scalbnl.s", +"musl/src/math/i386/sqrt.s", +"musl/src/math/i386/sqrtf.s", +"musl/src/math/i386/sqrtl.s", +"musl/src/math/i386/trunc.s", +"musl/src/math/i386/truncf.s", +"musl/src/math/i386/truncl.s", +"musl/src/math/ilogb.c", +"musl/src/math/ilogbf.c", +"musl/src/math/ilogbl.c", +"musl/src/math/j0.c", +"musl/src/math/j0f.c", +"musl/src/math/j1.c", +"musl/src/math/j1f.c", +"musl/src/math/jn.c", +"musl/src/math/jnf.c", +"musl/src/math/ldexp.c", +"musl/src/math/ldexpf.c", +"musl/src/math/ldexpl.c", +"musl/src/math/lgamma.c", +"musl/src/math/lgamma_r.c", +"musl/src/math/lgammaf.c", +"musl/src/math/lgammaf_r.c", +"musl/src/math/lgammal.c", +"musl/src/math/llrint.c", +"musl/src/math/llrintf.c", +"musl/src/math/llrintl.c", +"musl/src/math/llround.c", +"musl/src/math/llroundf.c", +"musl/src/math/llroundl.c", +"musl/src/math/log.c", +"musl/src/math/log10.c", +"musl/src/math/log10f.c", +"musl/src/math/log10l.c", +"musl/src/math/log1p.c", +"musl/src/math/log1pf.c", +"musl/src/math/log1pl.c", +"musl/src/math/log2.c", +"musl/src/math/log2f.c", +"musl/src/math/log2l.c", +"musl/src/math/logb.c", +"musl/src/math/logbf.c", +"musl/src/math/logbl.c", +"musl/src/math/logf.c", +"musl/src/math/logl.c", +"musl/src/math/lrint.c", +"musl/src/math/lrintf.c", +"musl/src/math/lrintl.c", +"musl/src/math/lround.c", +"musl/src/math/lroundf.c", +"musl/src/math/lroundl.c", +"musl/src/math/modf.c", +"musl/src/math/modff.c", +"musl/src/math/modfl.c", +"musl/src/math/nan.c", +"musl/src/math/nanf.c", +"musl/src/math/nanl.c", +"musl/src/math/nearbyint.c", +"musl/src/math/nearbyintf.c", +"musl/src/math/nearbyintl.c", +"musl/src/math/nextafter.c", +"musl/src/math/nextafterf.c", +"musl/src/math/nextafterl.c", +"musl/src/math/nexttoward.c", +"musl/src/math/nexttowardf.c", +"musl/src/math/nexttowardl.c", +"musl/src/math/pow.c", +"musl/src/math/powerpc/fabs.c", +"musl/src/math/powerpc/fabsf.c", +"musl/src/math/powerpc/fma.c", +"musl/src/math/powerpc/fmaf.c", +"musl/src/math/powerpc/sqrt.c", +"musl/src/math/powerpc/sqrtf.c", +"musl/src/math/powerpc64/ceil.c", +"musl/src/math/powerpc64/ceilf.c", +"musl/src/math/powerpc64/fabs.c", +"musl/src/math/powerpc64/fabsf.c", +"musl/src/math/powerpc64/floor.c", +"musl/src/math/powerpc64/floorf.c", +"musl/src/math/powerpc64/fma.c", +"musl/src/math/powerpc64/fmaf.c", +"musl/src/math/powerpc64/fmax.c", +"musl/src/math/powerpc64/fmaxf.c", +"musl/src/math/powerpc64/fmin.c", +"musl/src/math/powerpc64/fminf.c", +"musl/src/math/powerpc64/lrint.c", +"musl/src/math/powerpc64/lrintf.c", +"musl/src/math/powerpc64/lround.c", +"musl/src/math/powerpc64/lroundf.c", +"musl/src/math/powerpc64/round.c", +"musl/src/math/powerpc64/roundf.c", +"musl/src/math/powerpc64/sqrt.c", +"musl/src/math/powerpc64/sqrtf.c", +"musl/src/math/powerpc64/trunc.c", +"musl/src/math/powerpc64/truncf.c", +"musl/src/math/powf.c", +"musl/src/math/powl.c", +"musl/src/math/remainder.c", +"musl/src/math/remainderf.c", +"musl/src/math/remainderl.c", +"musl/src/math/remquo.c", +"musl/src/math/remquof.c", +"musl/src/math/remquol.c", +"musl/src/math/rint.c", +"musl/src/math/rintf.c", +"musl/src/math/rintl.c", +"musl/src/math/round.c", +"musl/src/math/roundf.c", +"musl/src/math/roundl.c", +"musl/src/math/s390x/ceil.c", +"musl/src/math/s390x/ceilf.c", +"musl/src/math/s390x/ceill.c", +"musl/src/math/s390x/fabs.c", +"musl/src/math/s390x/fabsf.c", +"musl/src/math/s390x/fabsl.c", +"musl/src/math/s390x/floor.c", +"musl/src/math/s390x/floorf.c", +"musl/src/math/s390x/floorl.c", +"musl/src/math/s390x/fma.c", +"musl/src/math/s390x/fmaf.c", +"musl/src/math/s390x/nearbyint.c", +"musl/src/math/s390x/nearbyintf.c", +"musl/src/math/s390x/nearbyintl.c", +"musl/src/math/s390x/rint.c", +"musl/src/math/s390x/rintf.c", +"musl/src/math/s390x/rintl.c", +"musl/src/math/s390x/round.c", +"musl/src/math/s390x/roundf.c", +"musl/src/math/s390x/roundl.c", +"musl/src/math/s390x/sqrt.c", +"musl/src/math/s390x/sqrtf.c", +"musl/src/math/s390x/sqrtl.c", +"musl/src/math/s390x/trunc.c", +"musl/src/math/s390x/truncf.c", +"musl/src/math/s390x/truncl.c", +"musl/src/math/scalb.c", +"musl/src/math/scalbf.c", +"musl/src/math/scalbln.c", +"musl/src/math/scalblnf.c", +"musl/src/math/scalblnl.c", +"musl/src/math/scalbn.c", +"musl/src/math/scalbnf.c", +"musl/src/math/scalbnl.c", +"musl/src/math/signgam.c", +"musl/src/math/significand.c", +"musl/src/math/significandf.c", +"musl/src/math/sin.c", +"musl/src/math/sincos.c", +"musl/src/math/sincosf.c", +"musl/src/math/sincosl.c", +"musl/src/math/sinf.c", +"musl/src/math/sinh.c", +"musl/src/math/sinhf.c", +"musl/src/math/sinhl.c", +"musl/src/math/sinl.c", +"musl/src/math/sqrt.c", +"musl/src/math/sqrtf.c", +"musl/src/math/sqrtl.c", +"musl/src/math/tan.c", +"musl/src/math/tanf.c", +"musl/src/math/tanh.c", +"musl/src/math/tanhf.c", +"musl/src/math/tanhl.c", +"musl/src/math/tanl.c", +"musl/src/math/tgamma.c", +"musl/src/math/tgammaf.c", +"musl/src/math/tgammal.c", +"musl/src/math/trunc.c", +"musl/src/math/truncf.c", +"musl/src/math/truncl.c", +"musl/src/math/x32/__invtrigl.s", +"musl/src/math/x32/acosl.s", +"musl/src/math/x32/asinl.s", +"musl/src/math/x32/atan2l.s", +"musl/src/math/x32/atanl.s", +"musl/src/math/x32/ceill.s", +"musl/src/math/x32/exp2l.s", +"musl/src/math/x32/expl.s", +"musl/src/math/x32/expm1l.s", +"musl/src/math/x32/fabs.s", +"musl/src/math/x32/fabsf.s", +"musl/src/math/x32/fabsl.s", +"musl/src/math/x32/floorl.s", +"musl/src/math/x32/fma.c", +"musl/src/math/x32/fmaf.c", +"musl/src/math/x32/fmodl.s", +"musl/src/math/x32/llrint.s", +"musl/src/math/x32/llrintf.s", +"musl/src/math/x32/llrintl.s", +"musl/src/math/x32/log10l.s", +"musl/src/math/x32/log1pl.s", +"musl/src/math/x32/log2l.s", +"musl/src/math/x32/logl.s", +"musl/src/math/x32/lrint.s", +"musl/src/math/x32/lrintf.s", +"musl/src/math/x32/lrintl.s", +"musl/src/math/x32/remainderl.s", +"musl/src/math/x32/rintl.s", +"musl/src/math/x32/sqrt.s", +"musl/src/math/x32/sqrtf.s", +"musl/src/math/x32/sqrtl.s", +"musl/src/math/x32/truncl.s", +"musl/src/math/x86_64/__invtrigl.s", +"musl/src/math/x86_64/acosl.s", +"musl/src/math/x86_64/asinl.s", +"musl/src/math/x86_64/atan2l.s", +"musl/src/math/x86_64/atanl.s", +"musl/src/math/x86_64/ceill.s", +"musl/src/math/x86_64/exp2l.s", +"musl/src/math/x86_64/expl.s", +"musl/src/math/x86_64/expm1l.s", +"musl/src/math/x86_64/fabs.s", +"musl/src/math/x86_64/fabsf.s", +"musl/src/math/x86_64/fabsl.s", +"musl/src/math/x86_64/floorl.s", +"musl/src/math/x86_64/fma.c", +"musl/src/math/x86_64/fmaf.c", +"musl/src/math/x86_64/fmodl.s", +"musl/src/math/x86_64/llrint.s", +"musl/src/math/x86_64/llrintf.s", +"musl/src/math/x86_64/llrintl.s", +"musl/src/math/x86_64/log10l.s", +"musl/src/math/x86_64/log1pl.s", +"musl/src/math/x86_64/log2l.s", +"musl/src/math/x86_64/logl.s", +"musl/src/math/x86_64/lrint.s", +"musl/src/math/x86_64/lrintf.s", +"musl/src/math/x86_64/lrintl.s", +"musl/src/math/x86_64/remainderl.s", +"musl/src/math/x86_64/rintl.s", +"musl/src/math/x86_64/sqrt.s", +"musl/src/math/x86_64/sqrtf.s", +"musl/src/math/x86_64/sqrtl.s", +"musl/src/math/x86_64/truncl.s", +"musl/src/misc/a64l.c", +"musl/src/misc/basename.c", +"musl/src/misc/dirname.c", +"musl/src/misc/ffs.c", +"musl/src/misc/ffsl.c", +"musl/src/misc/ffsll.c", +"musl/src/misc/fmtmsg.c", +"musl/src/misc/forkpty.c", +"musl/src/misc/get_current_dir_name.c", +"musl/src/misc/getauxval.c", +"musl/src/misc/getdomainname.c", +"musl/src/misc/getentropy.c", +"musl/src/misc/gethostid.c", +"musl/src/misc/getopt.c", +"musl/src/misc/getopt_long.c", +"musl/src/misc/getpriority.c", +"musl/src/misc/getresgid.c", +"musl/src/misc/getresuid.c", +"musl/src/misc/getrlimit.c", +"musl/src/misc/getrusage.c", +"musl/src/misc/getsubopt.c", +"musl/src/misc/initgroups.c", +"musl/src/misc/ioctl.c", +"musl/src/misc/issetugid.c", +"musl/src/misc/lockf.c", +"musl/src/misc/login_tty.c", +"musl/src/misc/mntent.c", +"musl/src/misc/nftw.c", +"musl/src/misc/openpty.c", +"musl/src/misc/ptsname.c", +"musl/src/misc/pty.c", +"musl/src/misc/realpath.c", +"musl/src/misc/setdomainname.c", +"musl/src/misc/setpriority.c", +"musl/src/misc/setrlimit.c", +"musl/src/misc/syscall.c", +"musl/src/misc/syslog.c", +"musl/src/misc/uname.c", +"musl/src/misc/wordexp.c", +"musl/src/mman/madvise.c", +"musl/src/mman/mincore.c", +"musl/src/mman/mlock.c", +"musl/src/mman/mlockall.c", +"musl/src/mman/mmap.c", +"musl/src/mman/mprotect.c", +"musl/src/mman/mremap.c", +"musl/src/mman/msync.c", +"musl/src/mman/munlock.c", +"musl/src/mman/munlockall.c", +"musl/src/mman/munmap.c", +"musl/src/mman/posix_madvise.c", +"musl/src/mman/shm_open.c", +"musl/src/mq/mq_close.c", +"musl/src/mq/mq_getattr.c", +"musl/src/mq/mq_notify.c", +"musl/src/mq/mq_open.c", +"musl/src/mq/mq_receive.c", +"musl/src/mq/mq_send.c", +"musl/src/mq/mq_setattr.c", +"musl/src/mq/mq_timedreceive.c", +"musl/src/mq/mq_timedsend.c", +"musl/src/mq/mq_unlink.c", +"musl/src/multibyte/btowc.c", +"musl/src/multibyte/c16rtomb.c", +"musl/src/multibyte/c32rtomb.c", +"musl/src/multibyte/internal.c", +"musl/src/multibyte/internal.h", +"musl/src/multibyte/mblen.c", +"musl/src/multibyte/mbrlen.c", +"musl/src/multibyte/mbrtoc16.c", +"musl/src/multibyte/mbrtoc32.c", +"musl/src/multibyte/mbrtowc.c", +"musl/src/multibyte/mbsinit.c", +"musl/src/multibyte/mbsnrtowcs.c", +"musl/src/multibyte/mbsrtowcs.c", +"musl/src/multibyte/mbstowcs.c", +"musl/src/multibyte/mbtowc.c", +"musl/src/multibyte/wcrtomb.c", +"musl/src/multibyte/wcsnrtombs.c", +"musl/src/multibyte/wcsrtombs.c", +"musl/src/multibyte/wcstombs.c", +"musl/src/multibyte/wctob.c", +"musl/src/multibyte/wctomb.c", +"musl/src/network/accept.c", +"musl/src/network/accept4.c", +"musl/src/network/bind.c", +"musl/src/network/connect.c", +"musl/src/network/dn_comp.c", +"musl/src/network/dn_expand.c", +"musl/src/network/dn_skipname.c", +"musl/src/network/dns_parse.c", +"musl/src/network/ent.c", +"musl/src/network/ether.c", +"musl/src/network/freeaddrinfo.c", +"musl/src/network/gai_strerror.c", +"musl/src/network/getaddrinfo.c", +"musl/src/network/gethostbyaddr.c", +"musl/src/network/gethostbyaddr_r.c", +"musl/src/network/gethostbyname.c", +"musl/src/network/gethostbyname2.c", +"musl/src/network/gethostbyname2_r.c", +"musl/src/network/gethostbyname_r.c", +"musl/src/network/getifaddrs.c", +"musl/src/network/getnameinfo.c", +"musl/src/network/getpeername.c", +"musl/src/network/getservbyname.c", +"musl/src/network/getservbyname_r.c", +"musl/src/network/getservbyport.c", +"musl/src/network/getservbyport_r.c", +"musl/src/network/getsockname.c", +"musl/src/network/getsockopt.c", +"musl/src/network/h_errno.c", +"musl/src/network/herror.c", +"musl/src/network/hstrerror.c", +"musl/src/network/htonl.c", +"musl/src/network/htons.c", +"musl/src/network/if_freenameindex.c", +"musl/src/network/if_indextoname.c", +"musl/src/network/if_nameindex.c", +"musl/src/network/if_nametoindex.c", +"musl/src/network/in6addr_any.c", +"musl/src/network/in6addr_loopback.c", +"musl/src/network/inet_addr.c", +"musl/src/network/inet_aton.c", +"musl/src/network/inet_legacy.c", +"musl/src/network/inet_ntoa.c", +"musl/src/network/inet_ntop.c", +"musl/src/network/inet_pton.c", +"musl/src/network/listen.c", +"musl/src/network/lookup.h", +"musl/src/network/lookup_ipliteral.c", +"musl/src/network/lookup_name.c", +"musl/src/network/lookup_serv.c", +"musl/src/network/netlink.c", +"musl/src/network/netlink.h", +"musl/src/network/netname.c", +"musl/src/network/ns_parse.c", +"musl/src/network/ntohl.c", +"musl/src/network/ntohs.c", +"musl/src/network/proto.c", +"musl/src/network/recv.c", +"musl/src/network/recvfrom.c", +"musl/src/network/recvmmsg.c", +"musl/src/network/recvmsg.c", +"musl/src/network/res_init.c", +"musl/src/network/res_mkquery.c", +"musl/src/network/res_msend.c", +"musl/src/network/res_query.c", +"musl/src/network/res_querydomain.c", +"musl/src/network/res_send.c", +"musl/src/network/res_state.c", +"musl/src/network/resolvconf.c", +"musl/src/network/send.c", +"musl/src/network/sendmmsg.c", +"musl/src/network/sendmsg.c", +"musl/src/network/sendto.c", +"musl/src/network/serv.c", +"musl/src/network/setsockopt.c", +"musl/src/network/shutdown.c", +"musl/src/network/sockatmark.c", +"musl/src/network/socket.c", +"musl/src/network/socketpair.c", +"musl/src/passwd/fgetgrent.c", +"musl/src/passwd/fgetpwent.c", +"musl/src/passwd/fgetspent.c", +"musl/src/passwd/getgr_a.c", +"musl/src/passwd/getgr_r.c", +"musl/src/passwd/getgrent.c", +"musl/src/passwd/getgrent_a.c", +"musl/src/passwd/getgrouplist.c", +"musl/src/passwd/getpw_a.c", +"musl/src/passwd/getpw_r.c", +"musl/src/passwd/getpwent.c", +"musl/src/passwd/getpwent_a.c", +"musl/src/passwd/getspent.c", +"musl/src/passwd/getspnam.c", +"musl/src/passwd/getspnam_r.c", +"musl/src/passwd/lckpwdf.c", +"musl/src/passwd/nscd.h", +"musl/src/passwd/nscd_query.c", +"musl/src/passwd/putgrent.c", +"musl/src/passwd/putpwent.c", +"musl/src/passwd/putspent.c", +"musl/src/passwd/pwf.h", +"musl/src/prng/__rand48_step.c", +"musl/src/prng/__seed48.c", +"musl/src/prng/drand48.c", +"musl/src/prng/lcong48.c", +"musl/src/prng/lrand48.c", +"musl/src/prng/mrand48.c", +"musl/src/prng/rand.c", +"musl/src/prng/rand48.h", +"musl/src/prng/rand_r.c", +"musl/src/prng/random.c", +"musl/src/prng/seed48.c", +"musl/src/prng/srand48.c", +"musl/src/process/arm/vfork.s", +"musl/src/process/execl.c", +"musl/src/process/execle.c", +"musl/src/process/execlp.c", +"musl/src/process/execv.c", +"musl/src/process/execve.c", +"musl/src/process/execvp.c", +"musl/src/process/fdop.h", +"musl/src/process/fexecve.c", +"musl/src/process/fork.c", +"musl/src/process/i386/vfork.s", +"musl/src/process/posix_spawn.c", +"musl/src/process/posix_spawn_file_actions_addclose.c", +"musl/src/process/posix_spawn_file_actions_adddup2.c", +"musl/src/process/posix_spawn_file_actions_addopen.c", +"musl/src/process/posix_spawn_file_actions_destroy.c", +"musl/src/process/posix_spawn_file_actions_init.c", +"musl/src/process/posix_spawnattr_destroy.c", +"musl/src/process/posix_spawnattr_getflags.c", +"musl/src/process/posix_spawnattr_getpgroup.c", +"musl/src/process/posix_spawnattr_getsigdefault.c", +"musl/src/process/posix_spawnattr_getsigmask.c", +"musl/src/process/posix_spawnattr_init.c", +"musl/src/process/posix_spawnattr_sched.c", +"musl/src/process/posix_spawnattr_setflags.c", +"musl/src/process/posix_spawnattr_setpgroup.c", +"musl/src/process/posix_spawnattr_setsigdefault.c", +"musl/src/process/posix_spawnattr_setsigmask.c", +"musl/src/process/posix_spawnp.c", +"musl/src/process/s390x/vfork.s", +"musl/src/process/sh/vfork.s", +"musl/src/process/system.c", +"musl/src/process/vfork.c", +"musl/src/process/wait.c", +"musl/src/process/waitid.c", +"musl/src/process/waitpid.c", +"musl/src/process/x32/vfork.s", +"musl/src/process/x86_64/vfork.s", +"musl/src/regex/fnmatch.c", +"musl/src/regex/glob.c", +"musl/src/regex/regcomp.c", +"musl/src/regex/regerror.c", +"musl/src/regex/regexec.c", +"musl/src/regex/tre-mem.c", +"musl/src/regex/tre.h", +"musl/src/sched/affinity.c", +"musl/src/sched/sched_cpucount.c", +"musl/src/sched/sched_get_priority_max.c", +"musl/src/sched/sched_getcpu.c", +"musl/src/sched/sched_getparam.c", +"musl/src/sched/sched_getscheduler.c", +"musl/src/sched/sched_rr_get_interval.c", +"musl/src/sched/sched_setparam.c", +"musl/src/sched/sched_setscheduler.c", +"musl/src/sched/sched_yield.c", +"musl/src/search/hsearch.c", +"musl/src/search/insque.c", +"musl/src/search/lsearch.c", +"musl/src/search/tdelete.c", +"musl/src/search/tdestroy.c", +"musl/src/search/tfind.c", +"musl/src/search/tsearch.c", +"musl/src/search/tsearch.h", +"musl/src/search/twalk.c", +"musl/src/select/poll.c", +"musl/src/select/pselect.c", +"musl/src/select/select.c", +"musl/src/setjmp/aarch64/longjmp.s", +"musl/src/setjmp/aarch64/setjmp.s", +"musl/src/setjmp/arm/longjmp.s", +"musl/src/setjmp/arm/setjmp.s", +"musl/src/setjmp/i386/longjmp.s", +"musl/src/setjmp/i386/setjmp.s", +"musl/src/setjmp/longjmp.c", +"musl/src/setjmp/m68k/longjmp.s", +"musl/src/setjmp/m68k/setjmp.s", +"musl/src/setjmp/microblaze/longjmp.s", +"musl/src/setjmp/microblaze/setjmp.s", +"musl/src/setjmp/mips/longjmp.S", +"musl/src/setjmp/mips/setjmp.S", +"musl/src/setjmp/mips64/longjmp.S", +"musl/src/setjmp/mips64/setjmp.S", +"musl/src/setjmp/mipsn32/longjmp.S", +"musl/src/setjmp/mipsn32/setjmp.S", +"musl/src/setjmp/or1k/longjmp.s", +"musl/src/setjmp/or1k/setjmp.s", +"musl/src/setjmp/powerpc/longjmp.S", +"musl/src/setjmp/powerpc/setjmp.S", +"musl/src/setjmp/powerpc64/longjmp.s", +"musl/src/setjmp/powerpc64/setjmp.s", +"musl/src/setjmp/s390x/longjmp.s", +"musl/src/setjmp/s390x/setjmp.s", +"musl/src/setjmp/setjmp.c", +"musl/src/setjmp/sh/longjmp.S", +"musl/src/setjmp/sh/setjmp.S", +"musl/src/setjmp/x32/longjmp.s", +"musl/src/setjmp/x32/setjmp.s", +"musl/src/setjmp/x86_64/longjmp.s", +"musl/src/setjmp/x86_64/setjmp.s", +"musl/src/signal/aarch64/restore.s", +"musl/src/signal/aarch64/sigsetjmp.s", +"musl/src/signal/arm/restore.s", +"musl/src/signal/arm/sigsetjmp.s", +"musl/src/signal/block.c", +"musl/src/signal/getitimer.c", +"musl/src/signal/i386/restore.s", +"musl/src/signal/i386/sigsetjmp.s", +"musl/src/signal/kill.c", +"musl/src/signal/killpg.c", +"musl/src/signal/m68k/sigsetjmp.s", +"musl/src/signal/microblaze/restore.s", +"musl/src/signal/microblaze/sigsetjmp.s", +"musl/src/signal/mips/restore.s", +"musl/src/signal/mips/sigsetjmp.s", +"musl/src/signal/mips64/restore.s", +"musl/src/signal/mips64/sigsetjmp.s", +"musl/src/signal/mipsn32/restore.s", +"musl/src/signal/mipsn32/sigsetjmp.s", +"musl/src/signal/or1k/sigsetjmp.s", +"musl/src/signal/powerpc/restore.s", +"musl/src/signal/powerpc/sigsetjmp.s", +"musl/src/signal/powerpc64/restore.s", +"musl/src/signal/powerpc64/sigsetjmp.s", +"musl/src/signal/psiginfo.c", +"musl/src/signal/psignal.c", +"musl/src/signal/raise.c", +"musl/src/signal/restore.c", +"musl/src/signal/s390x/restore.s", +"musl/src/signal/s390x/sigsetjmp.s", +"musl/src/signal/setitimer.c", +"musl/src/signal/sh/restore.s", +"musl/src/signal/sh/sigsetjmp.s", +"musl/src/signal/sigaction.c", +"musl/src/signal/sigaddset.c", +"musl/src/signal/sigaltstack.c", +"musl/src/signal/sigandset.c", +"musl/src/signal/sigdelset.c", +"musl/src/signal/sigemptyset.c", +"musl/src/signal/sigfillset.c", +"musl/src/signal/sighold.c", +"musl/src/signal/sigignore.c", +"musl/src/signal/siginterrupt.c", +"musl/src/signal/sigisemptyset.c", +"musl/src/signal/sigismember.c", +"musl/src/signal/siglongjmp.c", +"musl/src/signal/signal.c", +"musl/src/signal/sigorset.c", +"musl/src/signal/sigpause.c", +"musl/src/signal/sigpending.c", +"musl/src/signal/sigprocmask.c", +"musl/src/signal/sigqueue.c", +"musl/src/signal/sigrelse.c", +"musl/src/signal/sigrtmax.c", +"musl/src/signal/sigrtmin.c", +"musl/src/signal/sigset.c", +"musl/src/signal/sigsetjmp.c", +"musl/src/signal/sigsetjmp_tail.c", +"musl/src/signal/sigsuspend.c", +"musl/src/signal/sigtimedwait.c", +"musl/src/signal/sigwait.c", +"musl/src/signal/sigwaitinfo.c", +"musl/src/signal/x32/restore.s", +"musl/src/signal/x32/sigsetjmp.s", +"musl/src/signal/x86_64/restore.s", +"musl/src/signal/x86_64/sigsetjmp.s", +"musl/src/stat/__xstat.c", +"musl/src/stat/chmod.c", +"musl/src/stat/fchmod.c", +"musl/src/stat/fchmodat.c", +"musl/src/stat/fstat.c", +"musl/src/stat/fstatat.c", +"musl/src/stat/futimens.c", +"musl/src/stat/futimesat.c", +"musl/src/stat/lchmod.c", +"musl/src/stat/lstat.c", +"musl/src/stat/mkdir.c", +"musl/src/stat/mkdirat.c", +"musl/src/stat/mkfifo.c", +"musl/src/stat/mkfifoat.c", +"musl/src/stat/mknod.c", +"musl/src/stat/mknodat.c", +"musl/src/stat/stat.c", +"musl/src/stat/statvfs.c", +"musl/src/stat/umask.c", +"musl/src/stat/utimensat.c", +"musl/src/stdio/__fclose_ca.c", +"musl/src/stdio/__fdopen.c", +"musl/src/stdio/__fmodeflags.c", +"musl/src/stdio/__fopen_rb_ca.c", +"musl/src/stdio/__lockfile.c", +"musl/src/stdio/__overflow.c", +"musl/src/stdio/__stdio_close.c", +"musl/src/stdio/__stdio_exit.c", +"musl/src/stdio/__stdio_read.c", +"musl/src/stdio/__stdio_seek.c", +"musl/src/stdio/__stdio_write.c", +"musl/src/stdio/__stdout_write.c", +"musl/src/stdio/__string_read.c", +"musl/src/stdio/__toread.c", +"musl/src/stdio/__towrite.c", +"musl/src/stdio/__uflow.c", +"musl/src/stdio/asprintf.c", +"musl/src/stdio/clearerr.c", +"musl/src/stdio/dprintf.c", +"musl/src/stdio/ext.c", +"musl/src/stdio/ext2.c", +"musl/src/stdio/fclose.c", +"musl/src/stdio/feof.c", +"musl/src/stdio/ferror.c", +"musl/src/stdio/fflush.c", +"musl/src/stdio/fgetc.c", +"musl/src/stdio/fgetln.c", +"musl/src/stdio/fgetpos.c", +"musl/src/stdio/fgets.c", +"musl/src/stdio/fgetwc.c", +"musl/src/stdio/fgetws.c", +"musl/src/stdio/fileno.c", +"musl/src/stdio/flockfile.c", +"musl/src/stdio/fmemopen.c", +"musl/src/stdio/fopen.c", +"musl/src/stdio/fopencookie.c", +"musl/src/stdio/fprintf.c", +"musl/src/stdio/fputc.c", +"musl/src/stdio/fputs.c", +"musl/src/stdio/fputwc.c", +"musl/src/stdio/fputws.c", +"musl/src/stdio/fread.c", +"musl/src/stdio/freopen.c", +"musl/src/stdio/fscanf.c", +"musl/src/stdio/fseek.c", +"musl/src/stdio/fsetpos.c", +"musl/src/stdio/ftell.c", +"musl/src/stdio/ftrylockfile.c", +"musl/src/stdio/funlockfile.c", +"musl/src/stdio/fwide.c", +"musl/src/stdio/fwprintf.c", +"musl/src/stdio/fwrite.c", +"musl/src/stdio/fwscanf.c", +"musl/src/stdio/getc.c", +"musl/src/stdio/getc.h", +"musl/src/stdio/getc_unlocked.c", +"musl/src/stdio/getchar.c", +"musl/src/stdio/getchar_unlocked.c", +"musl/src/stdio/getdelim.c", +"musl/src/stdio/getline.c", +"musl/src/stdio/gets.c", +"musl/src/stdio/getw.c", +"musl/src/stdio/getwc.c", +"musl/src/stdio/getwchar.c", +"musl/src/stdio/ofl.c", +"musl/src/stdio/ofl_add.c", +"musl/src/stdio/open_memstream.c", +"musl/src/stdio/open_wmemstream.c", +"musl/src/stdio/pclose.c", +"musl/src/stdio/perror.c", +"musl/src/stdio/popen.c", +"musl/src/stdio/printf.c", +"musl/src/stdio/putc.c", +"musl/src/stdio/putc.h", +"musl/src/stdio/putc_unlocked.c", +"musl/src/stdio/putchar.c", +"musl/src/stdio/putchar_unlocked.c", +"musl/src/stdio/puts.c", +"musl/src/stdio/putw.c", +"musl/src/stdio/putwc.c", +"musl/src/stdio/putwchar.c", +"musl/src/stdio/remove.c", +"musl/src/stdio/rename.c", +"musl/src/stdio/rewind.c", +"musl/src/stdio/scanf.c", +"musl/src/stdio/setbuf.c", +"musl/src/stdio/setbuffer.c", +"musl/src/stdio/setlinebuf.c", +"musl/src/stdio/setvbuf.c", +"musl/src/stdio/snprintf.c", +"musl/src/stdio/sprintf.c", +"musl/src/stdio/sscanf.c", +"musl/src/stdio/stderr.c", +"musl/src/stdio/stdin.c", +"musl/src/stdio/stdout.c", +"musl/src/stdio/swprintf.c", +"musl/src/stdio/swscanf.c", +"musl/src/stdio/tempnam.c", +"musl/src/stdio/tmpfile.c", +"musl/src/stdio/tmpnam.c", +"musl/src/stdio/ungetc.c", +"musl/src/stdio/ungetwc.c", +"musl/src/stdio/vasprintf.c", +"musl/src/stdio/vdprintf.c", +"musl/src/stdio/vfprintf.c", +"musl/src/stdio/vfscanf.c", +"musl/src/stdio/vfwprintf.c", +"musl/src/stdio/vfwscanf.c", +"musl/src/stdio/vprintf.c", +"musl/src/stdio/vscanf.c", +"musl/src/stdio/vsnprintf.c", +"musl/src/stdio/vsprintf.c", +"musl/src/stdio/vsscanf.c", +"musl/src/stdio/vswprintf.c", +"musl/src/stdio/vswscanf.c", +"musl/src/stdio/vwprintf.c", +"musl/src/stdio/vwscanf.c", +"musl/src/stdio/wprintf.c", +"musl/src/stdio/wscanf.c", +"musl/src/stdlib/abs.c", +"musl/src/stdlib/atof.c", +"musl/src/stdlib/atoi.c", +"musl/src/stdlib/atol.c", +"musl/src/stdlib/atoll.c", +"musl/src/stdlib/bsearch.c", +"musl/src/stdlib/div.c", +"musl/src/stdlib/ecvt.c", +"musl/src/stdlib/fcvt.c", +"musl/src/stdlib/gcvt.c", +"musl/src/stdlib/imaxabs.c", +"musl/src/stdlib/imaxdiv.c", +"musl/src/stdlib/labs.c", +"musl/src/stdlib/ldiv.c", +"musl/src/stdlib/llabs.c", +"musl/src/stdlib/lldiv.c", +"musl/src/stdlib/qsort.c", +"musl/src/stdlib/strtod.c", +"musl/src/stdlib/strtol.c", +"musl/src/stdlib/wcstod.c", +"musl/src/stdlib/wcstol.c", +"musl/src/string/arm/__aeabi_memcpy.s", +"musl/src/string/arm/__aeabi_memset.s", +"musl/src/string/arm/memcpy.c", +"musl/src/string/arm/memcpy_le.S", +"musl/src/string/bcmp.c", +"musl/src/string/bcopy.c", +"musl/src/string/bzero.c", +"musl/src/string/explicit_bzero.c", +"musl/src/string/i386/memcpy.s", +"musl/src/string/i386/memmove.s", +"musl/src/string/i386/memset.s", +"musl/src/string/index.c", +"musl/src/string/memccpy.c", +"musl/src/string/memchr.c", +"musl/src/string/memcmp.c", +"musl/src/string/memcpy.c", +"musl/src/string/memmem.c", +"musl/src/string/memmove.c", +"musl/src/string/mempcpy.c", +"musl/src/string/memrchr.c", +"musl/src/string/memset.c", +"musl/src/string/rindex.c", +"musl/src/string/stpcpy.c", +"musl/src/string/stpncpy.c", +"musl/src/string/strcasecmp.c", +"musl/src/string/strcasestr.c", +"musl/src/string/strcat.c", +"musl/src/string/strchr.c", +"musl/src/string/strchrnul.c", +"musl/src/string/strcmp.c", +"musl/src/string/strcpy.c", +"musl/src/string/strcspn.c", +"musl/src/string/strdup.c", +"musl/src/string/strerror_r.c", +"musl/src/string/strlcat.c", +"musl/src/string/strlcpy.c", +"musl/src/string/strlen.c", +"musl/src/string/strncasecmp.c", +"musl/src/string/strncat.c", +"musl/src/string/strncmp.c", +"musl/src/string/strncpy.c", +"musl/src/string/strndup.c", +"musl/src/string/strnlen.c", +"musl/src/string/strpbrk.c", +"musl/src/string/strrchr.c", +"musl/src/string/strsep.c", +"musl/src/string/strsignal.c", +"musl/src/string/strspn.c", +"musl/src/string/strstr.c", +"musl/src/string/strtok.c", +"musl/src/string/strtok_r.c", +"musl/src/string/strverscmp.c", +"musl/src/string/swab.c", +"musl/src/string/wcpcpy.c", +"musl/src/string/wcpncpy.c", +"musl/src/string/wcscasecmp.c", +"musl/src/string/wcscasecmp_l.c", +"musl/src/string/wcscat.c", +"musl/src/string/wcschr.c", +"musl/src/string/wcscmp.c", +"musl/src/string/wcscpy.c", +"musl/src/string/wcscspn.c", +"musl/src/string/wcsdup.c", +"musl/src/string/wcslen.c", +"musl/src/string/wcsncasecmp.c", +"musl/src/string/wcsncasecmp_l.c", +"musl/src/string/wcsncat.c", +"musl/src/string/wcsncmp.c", +"musl/src/string/wcsncpy.c", +"musl/src/string/wcsnlen.c", +"musl/src/string/wcspbrk.c", +"musl/src/string/wcsrchr.c", +"musl/src/string/wcsspn.c", +"musl/src/string/wcsstr.c", +"musl/src/string/wcstok.c", +"musl/src/string/wcswcs.c", +"musl/src/string/wmemchr.c", +"musl/src/string/wmemcmp.c", +"musl/src/string/wmemcpy.c", +"musl/src/string/wmemmove.c", +"musl/src/string/wmemset.c", +"musl/src/string/x86_64/memcpy.s", +"musl/src/string/x86_64/memmove.s", +"musl/src/string/x86_64/memset.s", +"musl/src/temp/__randname.c", +"musl/src/temp/mkdtemp.c", +"musl/src/temp/mkostemp.c", +"musl/src/temp/mkostemps.c", +"musl/src/temp/mkstemp.c", +"musl/src/temp/mkstemps.c", +"musl/src/temp/mktemp.c", +"musl/src/termios/cfgetospeed.c", +"musl/src/termios/cfmakeraw.c", +"musl/src/termios/cfsetospeed.c", +"musl/src/termios/tcdrain.c", +"musl/src/termios/tcflow.c", +"musl/src/termios/tcflush.c", +"musl/src/termios/tcgetattr.c", +"musl/src/termios/tcgetsid.c", +"musl/src/termios/tcsendbreak.c", +"musl/src/termios/tcsetattr.c", +"musl/src/thread/__lock.c", +"musl/src/thread/__set_thread_area.c", +"musl/src/thread/__syscall_cp.c", +"musl/src/thread/__timedwait.c", +"musl/src/thread/__tls_get_addr.c", +"musl/src/thread/__unmapself.c", +"musl/src/thread/__wait.c", +"musl/src/thread/aarch64/__set_thread_area.s", +"musl/src/thread/aarch64/__unmapself.s", +"musl/src/thread/aarch64/clone.s", +"musl/src/thread/aarch64/syscall_cp.s", +"musl/src/thread/arm/__aeabi_read_tp.s", +"musl/src/thread/arm/__set_thread_area.c", +"musl/src/thread/arm/__unmapself.s", +"musl/src/thread/arm/atomics.s", +"musl/src/thread/arm/clone.s", +"musl/src/thread/arm/syscall_cp.s", +"musl/src/thread/call_once.c", +"musl/src/thread/clone.c", +"musl/src/thread/cnd_broadcast.c", +"musl/src/thread/cnd_destroy.c", +"musl/src/thread/cnd_init.c", +"musl/src/thread/cnd_signal.c", +"musl/src/thread/cnd_timedwait.c", +"musl/src/thread/cnd_wait.c", +"musl/src/thread/default_attr.c", +"musl/src/thread/i386/__set_thread_area.s", +"musl/src/thread/i386/__unmapself.s", +"musl/src/thread/i386/clone.s", +"musl/src/thread/i386/syscall_cp.s", +"musl/src/thread/i386/tls.s", +"musl/src/thread/lock_ptc.c", +"musl/src/thread/m68k/__m68k_read_tp.s", +"musl/src/thread/m68k/clone.s", +"musl/src/thread/m68k/syscall_cp.s", +"musl/src/thread/microblaze/__set_thread_area.s", +"musl/src/thread/microblaze/__unmapself.s", +"musl/src/thread/microblaze/clone.s", +"musl/src/thread/microblaze/syscall_cp.s", +"musl/src/thread/mips/__unmapself.s", +"musl/src/thread/mips/clone.s", +"musl/src/thread/mips/syscall_cp.s", +"musl/src/thread/mips64/__unmapself.s", +"musl/src/thread/mips64/clone.s", +"musl/src/thread/mips64/syscall_cp.s", +"musl/src/thread/mipsn32/__unmapself.s", +"musl/src/thread/mipsn32/clone.s", +"musl/src/thread/mipsn32/syscall_cp.s", +"musl/src/thread/mtx_destroy.c", +"musl/src/thread/mtx_init.c", +"musl/src/thread/mtx_lock.c", +"musl/src/thread/mtx_timedlock.c", +"musl/src/thread/mtx_trylock.c", +"musl/src/thread/mtx_unlock.c", +"musl/src/thread/or1k/__set_thread_area.s", +"musl/src/thread/or1k/__unmapself.s", +"musl/src/thread/or1k/clone.s", +"musl/src/thread/or1k/syscall_cp.s", +"musl/src/thread/powerpc/__set_thread_area.s", +"musl/src/thread/powerpc/__unmapself.s", +"musl/src/thread/powerpc/clone.s", +"musl/src/thread/powerpc/syscall_cp.s", +"musl/src/thread/powerpc64/__set_thread_area.s", +"musl/src/thread/powerpc64/__unmapself.s", +"musl/src/thread/powerpc64/clone.s", +"musl/src/thread/powerpc64/syscall_cp.s", +"musl/src/thread/pthread_atfork.c", +"musl/src/thread/pthread_attr_destroy.c", +"musl/src/thread/pthread_attr_get.c", +"musl/src/thread/pthread_attr_init.c", +"musl/src/thread/pthread_attr_setdetachstate.c", +"musl/src/thread/pthread_attr_setguardsize.c", +"musl/src/thread/pthread_attr_setinheritsched.c", +"musl/src/thread/pthread_attr_setschedparam.c", +"musl/src/thread/pthread_attr_setschedpolicy.c", +"musl/src/thread/pthread_attr_setscope.c", +"musl/src/thread/pthread_attr_setstack.c", +"musl/src/thread/pthread_attr_setstacksize.c", +"musl/src/thread/pthread_barrier_destroy.c", +"musl/src/thread/pthread_barrier_init.c", +"musl/src/thread/pthread_barrier_wait.c", +"musl/src/thread/pthread_barrierattr_destroy.c", +"musl/src/thread/pthread_barrierattr_init.c", +"musl/src/thread/pthread_barrierattr_setpshared.c", +"musl/src/thread/pthread_cancel.c", +"musl/src/thread/pthread_cleanup_push.c", +"musl/src/thread/pthread_cond_broadcast.c", +"musl/src/thread/pthread_cond_destroy.c", +"musl/src/thread/pthread_cond_init.c", +"musl/src/thread/pthread_cond_signal.c", +"musl/src/thread/pthread_cond_timedwait.c", +"musl/src/thread/pthread_cond_wait.c", +"musl/src/thread/pthread_condattr_destroy.c", +"musl/src/thread/pthread_condattr_init.c", +"musl/src/thread/pthread_condattr_setclock.c", +"musl/src/thread/pthread_condattr_setpshared.c", +"musl/src/thread/pthread_create.c", +"musl/src/thread/pthread_detach.c", +"musl/src/thread/pthread_equal.c", +"musl/src/thread/pthread_getattr_np.c", +"musl/src/thread/pthread_getconcurrency.c", +"musl/src/thread/pthread_getcpuclockid.c", +"musl/src/thread/pthread_getschedparam.c", +"musl/src/thread/pthread_getspecific.c", +"musl/src/thread/pthread_join.c", +"musl/src/thread/pthread_key_create.c", +"musl/src/thread/pthread_key_delete.c", +"musl/src/thread/pthread_kill.c", +"musl/src/thread/pthread_mutex_consistent.c", +"musl/src/thread/pthread_mutex_destroy.c", +"musl/src/thread/pthread_mutex_getprioceiling.c", +"musl/src/thread/pthread_mutex_init.c", +"musl/src/thread/pthread_mutex_lock.c", +"musl/src/thread/pthread_mutex_setprioceiling.c", +"musl/src/thread/pthread_mutex_timedlock.c", +"musl/src/thread/pthread_mutex_trylock.c", +"musl/src/thread/pthread_mutex_unlock.c", +"musl/src/thread/pthread_mutexattr_destroy.c", +"musl/src/thread/pthread_mutexattr_init.c", +"musl/src/thread/pthread_mutexattr_setprotocol.c", +"musl/src/thread/pthread_mutexattr_setpshared.c", +"musl/src/thread/pthread_mutexattr_setrobust.c", +"musl/src/thread/pthread_mutexattr_settype.c", +"musl/src/thread/pthread_once.c", +"musl/src/thread/pthread_rwlock_destroy.c", +"musl/src/thread/pthread_rwlock_init.c", +"musl/src/thread/pthread_rwlock_rdlock.c", +"musl/src/thread/pthread_rwlock_timedrdlock.c", +"musl/src/thread/pthread_rwlock_timedwrlock.c", +"musl/src/thread/pthread_rwlock_tryrdlock.c", +"musl/src/thread/pthread_rwlock_trywrlock.c", +"musl/src/thread/pthread_rwlock_unlock.c", +"musl/src/thread/pthread_rwlock_wrlock.c", +"musl/src/thread/pthread_rwlockattr_destroy.c", +"musl/src/thread/pthread_rwlockattr_init.c", +"musl/src/thread/pthread_rwlockattr_setpshared.c", +"musl/src/thread/pthread_self.c", +"musl/src/thread/pthread_setattr_default_np.c", +"musl/src/thread/pthread_setcancelstate.c", +"musl/src/thread/pthread_setcanceltype.c", +"musl/src/thread/pthread_setconcurrency.c", +"musl/src/thread/pthread_setname_np.c", +"musl/src/thread/pthread_setschedparam.c", +"musl/src/thread/pthread_setschedprio.c", +"musl/src/thread/pthread_setspecific.c", +"musl/src/thread/pthread_sigmask.c", +"musl/src/thread/pthread_spin_destroy.c", +"musl/src/thread/pthread_spin_init.c", +"musl/src/thread/pthread_spin_lock.c", +"musl/src/thread/pthread_spin_trylock.c", +"musl/src/thread/pthread_spin_unlock.c", +"musl/src/thread/pthread_testcancel.c", +"musl/src/thread/s390x/__set_thread_area.s", +"musl/src/thread/s390x/__tls_get_offset.s", +"musl/src/thread/s390x/__unmapself.s", +"musl/src/thread/s390x/clone.s", +"musl/src/thread/s390x/syscall_cp.s", +"musl/src/thread/sem_destroy.c", +"musl/src/thread/sem_getvalue.c", +"musl/src/thread/sem_init.c", +"musl/src/thread/sem_open.c", +"musl/src/thread/sem_post.c", +"musl/src/thread/sem_timedwait.c", +"musl/src/thread/sem_trywait.c", +"musl/src/thread/sem_unlink.c", +"musl/src/thread/sem_wait.c", +"musl/src/thread/sh/__set_thread_area.c", +"musl/src/thread/sh/__unmapself.c", +"musl/src/thread/sh/__unmapself_mmu.s", +"musl/src/thread/sh/atomics.s", +"musl/src/thread/sh/clone.s", +"musl/src/thread/sh/syscall_cp.s", +"musl/src/thread/synccall.c", +"musl/src/thread/syscall_cp.c", +"musl/src/thread/thrd_create.c", +"musl/src/thread/thrd_exit.c", +"musl/src/thread/thrd_join.c", +"musl/src/thread/thrd_sleep.c", +"musl/src/thread/thrd_yield.c", +"musl/src/thread/tls.c", +"musl/src/thread/tss_create.c", +"musl/src/thread/tss_delete.c", +"musl/src/thread/tss_set.c", +"musl/src/thread/vmlock.c", +"musl/src/thread/x32/__set_thread_area.s", +"musl/src/thread/x32/__unmapself.s", +"musl/src/thread/x32/clone.s", +"musl/src/thread/x32/syscall_cp.s", +"musl/src/thread/x32/syscall_cp_fixup.c", +"musl/src/thread/x86_64/__set_thread_area.s", +"musl/src/thread/x86_64/__unmapself.s", +"musl/src/thread/x86_64/clone.s", +"musl/src/thread/x86_64/syscall_cp.s", +"musl/src/time/__map_file.c", +"musl/src/time/__month_to_secs.c", +"musl/src/time/__secs_to_tm.c", +"musl/src/time/__tm_to_secs.c", +"musl/src/time/__tz.c", +"musl/src/time/__year_to_secs.c", +"musl/src/time/asctime.c", +"musl/src/time/asctime_r.c", +"musl/src/time/clock.c", +"musl/src/time/clock_getcpuclockid.c", +"musl/src/time/clock_getres.c", +"musl/src/time/clock_gettime.c", +"musl/src/time/clock_nanosleep.c", +"musl/src/time/clock_settime.c", +"musl/src/time/ctime.c", +"musl/src/time/ctime_r.c", +"musl/src/time/difftime.c", +"musl/src/time/ftime.c", +"musl/src/time/getdate.c", +"musl/src/time/gettimeofday.c", +"musl/src/time/gmtime.c", +"musl/src/time/gmtime_r.c", +"musl/src/time/localtime.c", +"musl/src/time/localtime_r.c", +"musl/src/time/mktime.c", +"musl/src/time/nanosleep.c", +"musl/src/time/strftime.c", +"musl/src/time/strptime.c", +"musl/src/time/time.c", +"musl/src/time/time_impl.h", +"musl/src/time/timegm.c", +"musl/src/time/timer_create.c", +"musl/src/time/timer_delete.c", +"musl/src/time/timer_getoverrun.c", +"musl/src/time/timer_gettime.c", +"musl/src/time/timer_settime.c", +"musl/src/time/times.c", +"musl/src/time/timespec_get.c", +"musl/src/time/utime.c", +"musl/src/time/wcsftime.c", +"musl/src/unistd/_exit.c", +"musl/src/unistd/access.c", +"musl/src/unistd/acct.c", +"musl/src/unistd/alarm.c", +"musl/src/unistd/chdir.c", +"musl/src/unistd/chown.c", +"musl/src/unistd/close.c", +"musl/src/unistd/ctermid.c", +"musl/src/unistd/dup.c", +"musl/src/unistd/dup2.c", +"musl/src/unistd/dup3.c", +"musl/src/unistd/faccessat.c", +"musl/src/unistd/fchdir.c", +"musl/src/unistd/fchown.c", +"musl/src/unistd/fchownat.c", +"musl/src/unistd/fdatasync.c", +"musl/src/unistd/fsync.c", +"musl/src/unistd/ftruncate.c", +"musl/src/unistd/getcwd.c", +"musl/src/unistd/getegid.c", +"musl/src/unistd/geteuid.c", +"musl/src/unistd/getgid.c", +"musl/src/unistd/getgroups.c", +"musl/src/unistd/gethostname.c", +"musl/src/unistd/getlogin.c", +"musl/src/unistd/getlogin_r.c", +"musl/src/unistd/getpgid.c", +"musl/src/unistd/getpgrp.c", +"musl/src/unistd/getpid.c", +"musl/src/unistd/getppid.c", +"musl/src/unistd/getsid.c", +"musl/src/unistd/getuid.c", +"musl/src/unistd/isatty.c", +"musl/src/unistd/lchown.c", +"musl/src/unistd/link.c", +"musl/src/unistd/linkat.c", +"musl/src/unistd/lseek.c", +"musl/src/unistd/mips/pipe.s", +"musl/src/unistd/mips64/pipe.s", +"musl/src/unistd/mipsn32/pipe.s", +"musl/src/unistd/nice.c", +"musl/src/unistd/pause.c", +"musl/src/unistd/pipe.c", +"musl/src/unistd/pipe2.c", +"musl/src/unistd/posix_close.c", +"musl/src/unistd/pread.c", +"musl/src/unistd/preadv.c", +"musl/src/unistd/pwrite.c", +"musl/src/unistd/pwritev.c", +"musl/src/unistd/read.c", +"musl/src/unistd/readlink.c", +"musl/src/unistd/readlinkat.c", +"musl/src/unistd/readv.c", +"musl/src/unistd/renameat.c", +"musl/src/unistd/rmdir.c", +"musl/src/unistd/setegid.c", +"musl/src/unistd/seteuid.c", +"musl/src/unistd/setgid.c", +"musl/src/unistd/setpgid.c", +"musl/src/unistd/setpgrp.c", +"musl/src/unistd/setregid.c", +"musl/src/unistd/setresgid.c", +"musl/src/unistd/setresuid.c", +"musl/src/unistd/setreuid.c", +"musl/src/unistd/setsid.c", +"musl/src/unistd/setuid.c", +"musl/src/unistd/setxid.c", +"musl/src/unistd/sh/pipe.s", +"musl/src/unistd/sleep.c", +"musl/src/unistd/symlink.c", +"musl/src/unistd/symlinkat.c", +"musl/src/unistd/sync.c", +"musl/src/unistd/tcgetpgrp.c", +"musl/src/unistd/tcsetpgrp.c", +"musl/src/unistd/truncate.c", +"musl/src/unistd/ttyname.c", +"musl/src/unistd/ttyname_r.c", +"musl/src/unistd/ualarm.c", +"musl/src/unistd/unlink.c", +"musl/src/unistd/unlinkat.c", +"musl/src/unistd/usleep.c", +"musl/src/unistd/write.c", +"musl/src/unistd/writev.c", +}; +#endif -- cgit v1.2.3 From 851a7288a9a506cbdcb025bc5842a9099bf2bb83 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 18:25:13 -0400 Subject: mingw libc can link against ntdll --- lib/libc/mingw/lib32/ntdll.def | 2082 +++++++++++++++++++++++++++++++++++ lib/libc/mingw/lib64/ntdll.def | 2037 ++++++++++++++++++++++++++++++++++ lib/libc/mingw/libarm32/ntdll.def | 2165 +++++++++++++++++++++++++++++++++++++ src/link.cpp | 3 + 4 files changed, 6287 insertions(+) create mode 100644 lib/libc/mingw/lib32/ntdll.def create mode 100644 lib/libc/mingw/lib64/ntdll.def create mode 100644 lib/libc/mingw/libarm32/ntdll.def (limited to 'src') diff --git a/lib/libc/mingw/lib32/ntdll.def b/lib/libc/mingw/lib32/ntdll.def new file mode 100644 index 0000000000..d6837b113f --- /dev/null +++ b/lib/libc/mingw/lib32/ntdll.def @@ -0,0 +1,2082 @@ +; +; Definition file of ntdll.dll +; Automatic generated by gendef +; written by Kai Tietz 2008 +; +LIBRARY "ntdll.dll" +EXPORTS +RtlActivateActivationContextUnsafeFast@0 +RtlDeactivateActivationContextUnsafeFast@0 +RtlInterlockedPushListSList@8 +@RtlUlongByteSwap@4 +@RtlUlonglongByteSwap@8 +@RtlUshortByteSwap@4 +ExpInterlockedPopEntrySListEnd@0 +ExpInterlockedPopEntrySListFault@0 +ExpInterlockedPopEntrySListResume@0 +RtlpInterlockedPopEntrySeqSListEnd@0 +RtlpInterlockedPopEntrySeqSListFault@0 +RtlpInterlockedPopEntrySeqSListResume@0 +A_SHAFinal@8 +A_SHAInit@4 +A_SHAUpdate@12 +AlpcAdjustCompletionListConcurrencyCount@8 +AlpcFreeCompletionListMessage@8 +AlpcGetCompletionListLastMessageInformation@12 +AlpcGetCompletionListMessageAttributes@8 +AlpcGetHeaderSize@4 +AlpcGetMessageAttribute@8 +AlpcGetMessageFromCompletionList@8 +AlpcGetOutstandingCompletionListMessageCount@4 +AlpcInitializeMessageAttribute@16 +AlpcMaxAllowedMessageLength@0 +AlpcRegisterCompletionList@20 +AlpcRegisterCompletionListWorkerThread@4 +AlpcRundownCompletionList@4 +AlpcUnregisterCompletionList@4 +AlpcUnregisterCompletionListWorkerThread@4 +CsrAllocateCaptureBuffer@8 +CsrAllocateMessagePointer@12 +CsrCaptureMessageBuffer@16 +CsrCaptureMessageMultiUnicodeStringsInPlace@12 +CsrCaptureMessageString@20 +CsrCaptureTimeout@8 +CsrClientCallServer@16 +CsrClientConnectToServer@20 +CsrFreeCaptureBuffer@4 +CsrGetProcessId@0 +CsrIdentifyAlertableThread@0 +CsrNewThread@0 +CsrProbeForRead@12 +CsrProbeForWrite@12 +CsrSetPriorityClass@8 +CsrVerifyRegion@8 +DbgBreakPoint@0 +DbgPrint +DbgPrintEx +DbgPrintReturnControlC +DbgPrompt@12 +DbgQueryDebugFilterState@8 +DbgSetDebugFilterState@12 +DbgSsHandleKmApiMsg@8 +DbgSsInitialize@16 +DbgUiConnectToDbg@0 +DbgUiContinue@8 +DbgUiConvertStateChangeStructure@8 +DbgUiDebugActiveProcess@4 +DbgUiGetThreadDebugObject@0 +DbgUiIssueRemoteBreakin@4 +DbgUiRemoteBreakin@4 +DbgUiSetThreadDebugObject@4 +DbgUiStopDebugging@4 +DbgUiWaitStateChange@8 +DbgUserBreakPoint@0 +EtwCreateTraceInstanceId@8 +EtwDeliverDataBlock@4 +EtwEnumerateProcessRegGuids@12 +EtwEventActivityIdControl@8 +EtwEventEnabled@12 +EtwEventProviderEnabled@20 +EtwEventRegister@16 +EtwEventUnregister@8 +EtwEventWrite@20 +EtwEventWriteEndScenario@20 +EtwEventWriteEx@40 +EtwEventWriteFull@32 +EtwEventWriteNoRegistration@16 +EtwEventWriteStartScenario@20 +EtwEventWriteString@24 +EtwEventWriteTransfer@28 +EtwGetTraceEnableFlags@8 +EtwGetTraceEnableLevel@8 +EtwGetTraceLoggerHandle@4 +EtwLogTraceEvent@12 +EtwNotificationRegister@20 +EtwNotificationUnregister@12 +EtwProcessPrivateLoggerRequest@4 +EtwRegisterSecurityProvider@0 +EtwRegisterTraceGuidsA@32 +EtwRegisterTraceGuidsW@32 +EtwReplyNotification@4 +EtwSendNotification@20 +EtwSetMark@16 +EtwTraceEventInstance@20 +EtwTraceMessage +EtwTraceMessageVa@24 +EtwUnregisterTraceGuids@8 +EtwWriteUMSecurityEvent@16 +EtwpCreateEtwThread@8 +EtwpGetCpuSpeed@8 +;EtwpNotificationThread +EvtIntReportAuthzEventAndSourceAsync@44 +EvtIntReportEventAndSourceAsync@44 +KiFastSystemCall@0 +KiFastSystemCallRet@0 +KiIntSystemCall@0 +KiRaiseUserExceptionDispatcher@0 +KiUserApcDispatcher@20 +KiUserCallbackDispatcher@12 +KiUserExceptionDispatcher@8 +LdrAccessResource@16 +LdrAddLoadAsDataTable@16; Check!!! gendef says @20 +LdrAddRefDll@8 +LdrAlternateResourcesEnabled@0 +LdrDisableThreadCalloutsForDll@4 +LdrEnumResources@20 +LdrEnumerateLoadedModules@12 +LdrFindEntryForAddress@8 +LdrFindResourceDirectory_U@16 +LdrFindResourceEx_U@20 +LdrFindResource_U@16 +LdrFlushAlternateResourceModules@0 +LdrGetDllHandle@16 +LdrGetDllHandleByMapping@8 +LdrGetDllHandleByName@12 +LdrGetDllHandleEx@20 +LdrGetFailureData@0 +LdrGetFileNameFromLoadAsDataTable@8 +LdrGetProcedureAddress@16 +LdrGetProcedureAddressEx@20 +LdrHotPatchRoutine@0 +LdrInitShimEngineDynamic@4 +LdrInitializeThunk@16 +LdrLoadAlternateResourceModule@16 +LdrLoadAlternateResourceModuleEx@20 +LdrLoadDll@16 +LdrAlternateResourcesEnabled@0 +LdrLockLoaderLock@12 +LdrOpenImageFileOptionsKey@12 +LdrProcessRelocationBlock@16 +LdrQueryImageFileExecutionOptions@24 +LdrQueryImageFileExecutionOptionsEx@28 +LdrQueryImageFileKeyOption@24 +LdrQueryModuleServiceTags@12 +LdrQueryProcessModuleInformation@12 +LdrRegisterDllNotification@16 +LdrRemoveLoadAsDataTable@16 +LdrResFindResource@36 +LdrResFindResourceDirectory@28 +LdrResGetRCConfig@20 +LdrResRelease@12 +LdrResSearchResource@32 +LdrRscIsTypeExist@16 +LdrSetAppCompatDllRedirectionCallback@12 +LdrSetDllManifestProber@4 +LdrSetMUICacheType@4 +LdrShutdownProcess@0 +LdrShutdownThread@0 +LdrUnloadAlternateResourceModule@4 +LdrUnloadAlternateResourceModuleEx@8 +LdrUnloadDll@4 +LdrUnlockLoaderLock@8 +LdrUnregisterDllNotification@4 +LdrVerifyImageMatchesChecksum@16 +LdrVerifyImageMatchesChecksumEx@8 +LdrWx86FormatVirtualImage@12 +LdrpResGetMappingSize@16 +LdrpResGetRCConfig@20 +LdrpResGetResourceDirectory@20 +MD4Final@4 +MD4Init@4 +MD4Update@12 +MD5Final@4 +MD5Init@4 +MD5Update@12 +NlsAnsiCodePage DATA +NlsMbCodePageTag DATA +NlsMbOemCodePageTag DATA +NtAcceptConnectPort@24 +NtAccessCheck@32 +NtAccessCheckAndAuditAlarm@44 +NtAccessCheckByType@44 +NtAccessCheckByTypeAndAuditAlarm@64 +NtAccessCheckByTypeResultList@44 +NtAccessCheckByTypeResultListAndAuditAlarm@64 +NtAccessCheckByTypeResultListAndAuditAlarmByHandle@68 +NtAcquireCMFViewOwnership@12 +NtAddAtom@12 +NtAddBootEntry@8 +NtAddDriverEntry@8 +NtAdjustGroupsToken@24 +NtAdjustPrivilegesToken@24 +NtAlertResumeThread@8 +NtAlertThread@4 +NtAllocateLocallyUniqueId@4 +NtAllocateReserveObject@12 +NtAllocateUserPhysicalPages@12 +NtAllocateUuids@16 +NtAllocateVirtualMemory@24 +NtAlpcAcceptConnectPort@36 +NtAlpcCancelMessage@12 +NtAlpcConnectPort@44 +NtAlpcCreatePort@12 +NtAlpcCreatePortSection@24 +NtAlpcCreateResourceReserve@16 +NtAlpcCreateSectionView@12 +NtAlpcCreateSecurityContext@12 +NtAlpcDeletePortSection@12 +NtAlpcDeleteResourceReserve@12 +NtAlpcDeleteSectionView@12 +NtAlpcDeleteSecurityContext@12 +NtAlpcDisconnectPort@8 +NtAlpcImpersonateClientOfPort@12 +NtAlpcOpenSenderProcess@24 +NtAlpcOpenSenderThread@24 +NtAlpcQueryInformation@20 +NtAlpcQueryInformationMessage@24 +NtAlpcRevokeSecurityContext@12 +NtAlpcSendWaitReceivePort@32 +NtAlpcSetInformation@16 +NtApphelpCacheControl@8 +NtAreMappedFilesTheSame@8 +NtAssignProcessToJobObject@8 +NtCallbackReturn@12 +NtCancelDeviceWakeupRequest@4 +NtCancelIoFile@8 +NtCancelIoFileEx@12 +NtCancelSynchronousIoFile@12 +NtCancelTimer@8 +NtClearEvent@4 +NtClose@4 +NtCloseObjectAuditAlarm@12 +NtCommitComplete@8 +NtCommitEnlistment@8 +NtCommitTransaction@8 +NtCompactKeys@8 +NtCompareTokens@12 +NtCompleteConnectPort@4 +NtCompressKey@4 +NtConnectPort@32 +NtContinue@8 +NtCreateDebugObject@16 +NtCreateDirectoryObject@12 +NtCreateEnlistment@32 +NtCreateEvent@20 +NtCreateEventPair@12 +NtCreateFile@44 +NtCreateIoCompletion@16 +NtCreateJobObject@12 +NtCreateJobSet@12 +NtCreateKey@28 +NtCreateKeyTransacted@32 +NtCreateKeyedEvent@16 +NtCreateMailslotFile@32 +NtCreateMutant@16 +NtCreateNamedPipeFile@56 +NtCreatePagingFile@16 +NtCreatePort@20 +NtCreatePrivateNamespace@16 +NtCreateProcess@32 +NtCreateProcessEx@36 +NtCreateProfile@36 +NtCreateProfileEx@40 +NtCreateResourceManager@28 +NtCreateSection@28 +NtCreateSemaphore@20 +NtCreateSymbolicLinkObject@16 +NtCreateThread@32 +NtCreateThreadEx@44 +NtCreateTimer@16 +NtCreateToken@52 +NtCreateTransaction@40 +NtCreateTransactionManager@24 +NtCreateUserProcess@44 +NtCreateWaitablePort@20 +NtCreateWorkerFactory@40 +NtCurrentTeb@0 +NtDebugActiveProcess@8 +NtDebugContinue@12 +NtDelayExecution@8 +NtDeleteAtom@4 +NtDeleteBootEntry@4 +NtDeleteDriverEntry@4 +NtDeleteFile@4 +NtDeleteKey@4 +NtDeleteObjectAuditAlarm@12 +NtDeletePrivateNamespace@4 +NtDeleteValueKey@8 +NtDeviceIoControlFile@40 +NtDisableLastKnownGood@0 +NtDisplayString@4 +NtDrawText@4 +NtDuplicateObject@28 +NtDuplicateToken@24 +NtEnableLastKnownGood@0 +NtEnumerateBootEntries@8 +NtEnumerateDriverEntries@8 +NtEnumerateKey@24 +NtEnumerateSystemEnvironmentValuesEx@12 +NtEnumerateTransactionObject@20 +NtEnumerateValueKey@24 +NtExtendSection@8 +NtFilterToken@24 +NtFindAtom@12 +NtFlushBuffersFile@8 +NtFlushInstallUILanguage@8 +NtFlushInstructionCache@12 +NtFlushKey@4 +NtFlushProcessWriteBuffers@0 +NtFlushVirtualMemory@16 +NtFlushWriteBuffer@0 +NtFreeUserPhysicalPages@12 +NtFreeVirtualMemory@16 +NtFreezeRegistry@4 +NtFreezeTransactions@8 +NtFsControlFile@40 +NtGetContextThread@8 +NtGetCurrentProcessorNumber@0 +NtGetDevicePowerState@8 +NtGetMUIRegistryInfo@12 +NtGetNextProcess@20 +NtGetNextThread@24 +NtGetNlsSectionPtr@20 +NtGetNotificationResourceManager@28 +NtGetPlugPlayEvent@16 +NtGetTickCount@0 +NtGetWriteWatch@28 +NtImpersonateAnonymousToken@4 +NtImpersonateClientOfPort@8 +NtImpersonateThread@12 +NtInitializeNlsFiles@16 ;Check!!! gendef says 12 +NtInitializeRegistry@4 +NtInitiatePowerAction@16 +NtIsProcessInJob@8 +NtIsSystemResumeAutomatic@0 +NtIsUILanguageComitted@0 +NtListenPort@8 +NtLoadDriver@4 +NtLoadKey2@12 +NtLoadKey@8 +NtLoadKeyEx@32 +NtLockFile@40 +NtLockProductActivationKeys@8 +NtLockRegistryKey@4 +NtLockVirtualMemory@16 +NtMakePermanentObject@4 +NtMakeTemporaryObject@4 +NtMapCMFModule@24 +NtMapUserPhysicalPages@12 +NtMapUserPhysicalPagesScatter@12 +NtMapViewOfSection@40 +NtModifyBootEntry@4 +NtModifyDriverEntry@4 +NtNotifyChangeDirectoryFile@36 +NtNotifyChangeKey@40 +NtNotifyChangeMultipleKeys@48 +NtNotifyChangeSession@32 +NtOpenDirectoryObject@12 +NtOpenEnlistment@20 +NtOpenEvent@12 +NtOpenEventPair@12 +NtOpenFile@24 +NtOpenIoCompletion@12 +NtOpenJobObject@12 +NtOpenKey@12 +NtOpenKeyEx@16 +NtOpenKeyTransacted@16 +NtOpenKeyTransactedEx@20 +NtOpenKeyedEvent@12 +NtOpenMutant@12 +NtOpenObjectAuditAlarm@48 +NtOpenPrivateNamespace@16 +NtOpenProcess@16 +NtOpenProcessToken@12 +NtOpenProcessTokenEx@16 +NtOpenResourceManager@20 +NtOpenSection@12 +NtOpenSemaphore@12 +NtOpenSession@12 +NtOpenSymbolicLinkObject@12 +NtOpenThread@16 +NtOpenThreadToken@16 +NtOpenThreadTokenEx@20 +NtOpenTimer@12 +NtOpenTransaction@20 +NtOpenTransactionManager@24 +NtPlugPlayControl@12 +NtPowerInformation@20 +NtPrePrepareComplete@8 +NtPrePrepareEnlistment@8 +NtPrepareComplete@8 +NtPrepareEnlistment@8 +NtPrivilegeCheck@12 +NtPrivilegeObjectAuditAlarm@24 +NtPrivilegedServiceAuditAlarm@20 +NtPropagationComplete@16 +NtPropagationFailed@12 +NtProtectVirtualMemory@20 +NtPulseEvent@8 +NtQueryAttributesFile@8 +NtQueryBootEntryOrder@8 +NtQueryBootOptions@8 +NtQueryDebugFilterState@8 +NtQueryDefaultLocale@8 +NtQueryDefaultUILanguage@4 +NtQueryDirectoryFile@44 +NtQueryDirectoryObject@28 +NtQueryDriverEntryOrder@8 +NtQueryEaFile@36 +NtQueryEvent@20 +NtQueryFullAttributesFile@8 +NtQueryInformationAtom@20 +NtQueryInformationEnlistment@20 +NtQueryInformationFile@20 +NtQueryInformationJobObject@20 +NtQueryInformationPort@20 +NtQueryInformationProcess@20 +NtQueryInformationResourceManager@20 +NtQueryInformationThread@20 +NtQueryInformationToken@20 +NtQueryInformationTransaction@20 +NtQueryInformationTransactionManager@20 +NtQueryInformationWorkerFactory@20 +NtQueryInstallUILanguage@4 +NtQueryIntervalProfile@8 +NtQueryIoCompletion@20 +NtQueryKey@20 +NtQueryLicenseValue@20 +NtQueryMultipleValueKey@24 +NtQueryMutant@20 +NtQueryObject@20 +NtQueryOpenSubKeys@8 +NtQueryOpenSubKeysEx@16 +NtQueryPerformanceCounter@8 +NtQueryPortInformationProcess@0 +NtQueryQuotaInformationFile@36 +NtQuerySection@20 +NtQuerySecurityAttributesToken@24 +NtQuerySecurityObject@20 +NtQuerySemaphore@20 +NtQuerySymbolicLinkObject@12 +NtQuerySystemEnvironmentValue@16 +NtQuerySystemEnvironmentValueEx@20 +NtQuerySystemInformation@16 +NtQuerySystemInformationEx@24 +NtQuerySystemTime@4 +NtQueryTimer@20 +NtQueryTimerResolution@12 +NtQueryValueKey@24 +NtQueryVirtualMemory@24 +NtQueryVolumeInformationFile@20 +NtQueueApcThread@20 +NtQueueApcThreadEx@24 +NtRaiseException@12 +NtRaiseHardError@24 +NtReadFile@36 +NtReadFileScatter@36 +NtReadOnlyEnlistment@8 +NtReadRequestData@24 +NtReadVirtualMemory@20 +NtRecoverEnlistment@8 +NtRecoverResourceManager@4 +NtRecoverTransactionManager@4 +NtRegisterProtocolAddressInformation@20 +NtRegisterThreadTerminatePort@4 +NtReleaseCMFViewOwnership@0 +NtReleaseKeyedEvent@16 +NtReleaseMutant@8 +NtReleaseSemaphore@12 +NtReleaseWorkerFactoryWorker@4 +NtRemoveIoCompletion@20 +NtRemoveIoCompletionEx@24 +NtRemoveProcessDebug@8 +NtRenameKey@8 +NtRenameTransactionManager@8 +NtReplaceKey@12 +NtReplacePartitionUnit@12 +NtReplyPort@8 +NtReplyWaitReceivePort@16 +NtReplyWaitReceivePortEx@20 +NtReplyWaitReplyPort@8 +NtRequestDeviceWakeup@4 +NtRequestPort@8 +NtRequestWaitReplyPort@12 +NtRequestWakeupLatency@4 +NtResetEvent@8 +NtResetWriteWatch@12 +NtRestoreKey@12 +NtResumeProcess@4 +NtResumeThread@8 +NtRollbackComplete@8 +NtRollbackEnlistment@8 +NtRollbackTransaction@8 +NtRollforwardTransactionManager@8 +NtSaveKey@8 +NtSaveKeyEx@12 +NtSaveMergedKeys@12 +NtSecureConnectPort@36 +NtSerializeBoot@0 +NtSetBootEntryOrder@8 +NtSetBootOptions@8 +NtSetContextThread@8 +NtSetDebugFilterState@12 +NtSetDefaultHardErrorPort@4 +NtSetDefaultLocale@8 +NtSetDefaultUILanguage@4 +NtSetDriverEntryOrder@8 +NtSetEaFile@16 +NtSetEvent@8 +NtSetEventBoostPriority@4 +NtSetHighEventPair@4 +NtSetHighWaitLowEventPair@4 +NtSetInformationDebugObject@20 +NtSetInformationEnlistment@16 +NtSetInformationFile@20 +NtSetInformationJobObject@16 +NtSetInformationKey@16 +NtSetInformationObject@16 +NtSetInformationProcess@16 +NtSetInformationResourceManager@16 +NtSetInformationThread@16 +NtSetInformationToken@16 +NtSetInformationTransaction@16 +NtSetInformationTransactionManager@16 +NtSetInformationWorkerFactory@16 +NtSetIntervalProfile@8 +NtSetIoCompletion@20 +NtSetIoCompletionEx@24 +NtSetLdtEntries@24 +NtSetLowEventPair@4 +NtSetLowWaitHighEventPair@4 +NtSetQuotaInformationFile@16 +NtSetSecurityObject@12 +NtSetSystemEnvironmentValue@8 +NtSetSystemEnvironmentValueEx@20 +NtSetSystemInformation@12 +NtSetSystemPowerState@12 +NtSetSystemTime@8 +NtSetThreadExecutionState@8 +NtSetTimer@28 +NtSetTimerEx@16 +NtSetTimerResolution@12 +NtSetUuidSeed@4 +NtSetValueKey@24 +NtSetVolumeInformationFile@20 +NtShutdownSystem@4 +NtShutdownWorkerFactory@8 +NtSignalAndWaitForSingleObject@16 +NtSinglePhaseReject@8 +NtStartProfile@4 +NtStopProfile@4 +NtSuspendProcess@4 +NtSuspendThread@8 +NtSystemDebugControl@24 +NtTerminateJobObject@8 +NtTerminateProcess@8 +NtTerminateThread@8 +NtTestAlert@0 +NtThawRegistry@0 +NtThawTransactions@0 +NtTraceControl@24 +NtTraceEvent@16 +NtTranslateFilePath@16 +NtUmsThreadYield@4 +NtUnloadDriver@4 +NtUnloadKey2@8 +NtUnloadKey@4 +NtUnloadKeyEx@8 +NtUnlockFile@20 +NtUnlockVirtualMemory@16 +NtUnmapViewOfSection@8 +NtVdmControl@8 +NtWaitForDebugEvent@16 +NtWaitForKeyedEvent@16 +NtWaitForMultipleObjects32@20 +NtWaitForMultipleObjects@20 +NtWaitForSingleObject@12 +NtWaitForWorkViaWorkerFactory@8 +NtWaitHighEventPair@4 +NtWaitLowEventPair@4 +NtWorkerFactoryWorkerReady@4 +NtWow64CallFunction64@28 +NtWow64CsrAllocateCaptureBuffer@8 +NtWow64CsrAllocateMessagePointer@12 +NtWow64CsrCaptureMessageBuffer@16 +NtWow64CsrCaptureMessageString@20 +NtWow64CsrClientCallServer@16 +NtWow64CsrClientConnectToServer@20 +NtWow64CsrFreeCaptureBuffer@4 +NtWow64CsrGetProcessId@0 +NtWow64CsrIdentifyAlertableThread@0 +NtWow64CsrVerifyRegion@8 +NtWow64DebuggerCall@20 +NtWow64GetCurrentProcessorNumberEx@4 +NtWow64GetNativeSystemInformation@16 +NtWow64InterlockedPopEntrySList@4 +NtWow64QueryInformationProcess64@20 +NtWow64QueryVirtualMemory64@32 +NtWow64ReadVirtualMemory64@28 +NtWow64WriteVirtualMemory64@28 +NtWriteFile@36 +NtWriteFileGather@36 +NtWriteRequestData@24 +NtWriteVirtualMemory@20 +NtYieldExecution@0 +; Not sure, but we assume here standard DefWindowProc arguments +NtdllDefWindowProc_A@16 +NtdllDefWindowProc_W@16 +; Not sure, but we assume here standard DefDlgProc arguments +NtdllDialogWndProc_A@16 +NtdllDialogWndProc_W@16 +PfxFindPrefix@8 +PfxInitialize@4 +PfxInsertPrefix@12 +PfxRemovePrefix@8 +RtlAbortRXact@4 +RtlAbsoluteToSelfRelativeSD@12 +RtlAcquirePebLock@0 +RtlAcquirePrivilege@16 +RtlAcquireReleaseSRWLockExclusive@4 +RtlAcquireResourceExclusive@8 +RtlAcquireResourceShared@8 +RtlAcquireSRWLockExclusive@4 +RtlAcquireSRWLockShared@4 +RtlActivateActivationContext@12 +RtlActivateActivationContextEx@16 +RtlAddAccessAllowedAce@16 +RtlAddAccessAllowedAceEx@20 +RtlAddAccessAllowedObjectAce@28 +RtlAddAccessDeniedAce@16 +RtlAddAccessDeniedAceEx@20 +RtlAddAccessDeniedObjectAce@28 +RtlAddAce@20 +RtlAddActionToRXact@24 +RtlAddAtomToAtomTable@12 +RtlAddAttributeActionToRXact@32 +RtlAddAuditAccessAce@24 +RtlAddAuditAccessAceEx@28 +RtlAddAuditAccessObjectAce@36 +RtlAddCompoundAce@24 +RtlAddIntegrityLabelToBoundaryDescriptor@8 +RtlAddMandatoryAce@24 +RtlAddRefActivationContext@4 +RtlAddRange@36 +RtlAddRefMemoryStream@4 +RtlAddSIDToBoundaryDescriptor@8 +RtlAddVectoredContinueHandler@8 +RtlAddVectoredExceptionHandler@8 +RtlAddressInSectionTable@12 +RtlAdjustPrivilege@16 +RtlAllocateActivationContextStack@4 +RtlAllocateAndInitializeSid@44 +RtlAllocateHandle@8 +RtlAllocateHeap@12 +RtlAllocateMemoryBlockLookaside@12 +RtlAllocateMemoryZone@12 +RtlAnsiCharToUnicodeChar@4 +RtlAnsiStringToUnicodeSize@4 +RtlAnsiStringToUnicodeString@12 +RtlAppendAsciizToString@8 +RtlAppendPathElement@12 +RtlAppendStringToString@8 +RtlAppendUnicodeStringToString@8 +RtlAppendUnicodeToString@8 +RtlApplicationVerifierStop@40 +RtlApplyRXact@4 +RtlApplyRXactNoFlush@4 +RtlAreAllAccessesGranted@8 +RtlAreAnyAccessesGranted@8 +RtlAreBitsClear@12 +RtlAreBitsSet@12 +RtlAssert@16 +RtlBarrier@8 +RtlBarrierForDelete@8 +RtlCallbackLpcClient@12 +RtlCancelTimer@8 +RtlCaptureContext@4 +RtlCaptureStackBackTrace@16 +RtlCaptureStackContext@12 +RtlCharToInteger@12 +RtlCheckForOrphanedCriticalSections@4 +RtlCheckRegistryKey@8 +RtlCleanUpTEBLangLists@0 +RtlClearAllBits@4 +RtlClearBits@12 +RtlCloneMemoryStream@8 +RtlCloneUserProcess@20 +RtlCmDecodeMemIoResource@8 +RtlCmEncodeMemIoResource@24 +RtlCommitDebugInfo@8 +RtlCommitMemoryStream@8 +RtlCompactHeap@8 +RtlCompareAltitudes@8 +RtlCompareMemory@12 +RtlCompareMemoryUlong@12 +RtlCompareString@12 +RtlCompareUnicodeString@12 +RtlCompareUnicodeStrings@20 +RtlCompressBuffer@32 +RtlComputeCrc32@12 +RtlComputeImportTableHash@12 +RtlComputePrivatizedDllName_U@12 +RtlConnectToSm@16 +RtlConsoleMultiByteToUnicodeN@24 +RtlContractHashTable@4 +RtlConvertExclusiveToShared@4 +RtlConvertLCIDToString@20 +RtlConvertLongToLargeInteger@4 +RtlConvertSharedToExclusive@4 +RtlConvertSidToUnicodeString@12 +RtlConvertToAutoInheritSecurityObject@24 +RtlConvertUiListToApiList@12 +RtlConvertUlongToLargeInteger@4 +RtlCopyExtendedContext@12 +RtlCopyLuid@8 +RtlCopyLuidAndAttributesArray@12 +RtlCopyMappedMemory@12 +RtlCopyMemoryStreamTo@24 +RtlCopyOutOfProcessMemoryStreamTo@24 +RtlCopyRangeList@8 +RtlCopySecurityDescriptor@8 +RtlCopySid@12 +RtlCopySidAndAttributesArray@28 +RtlCopyString@8 +RtlCopyUnicodeString@8 +RtlCreateAcl@12 +RtlCreateActivationContext@24 +RtlCreateAndSetSD@20 +RtlCreateAtomTable@8 +RtlCreateBootStatusDataFile@4 +RtlCreateBoundaryDescriptor@8 +RtlCreateEnvironment@8 +RtlCreateEnvironmentEx@12 +RtlCreateHashTable@12 +RtlCreateHeap@24 +RtlCreateLpcServer@24 +RtlCreateMemoryBlockLookaside@20 +RtlCreateMemoryZone@12 +RtlCreateProcessParameters@40 +RtlCreateProcessParametersEx@44 +RtlCreateProcessReflection@24 +RtlCreateQueryDebugBuffer@8 +RtlCreateRegistryKey@8 +RtlCreateSecurityDescriptor@8 +RtlCreateServiceSid@12 +RtlCreateSystemVolumeInformationFolder@4 +RtlCreateTagHeap@16 +RtlCreateTimer@28 +RtlCreateTimerQueue@4 +RtlCreateUnicodeString@8 +RtlCreateUnicodeStringFromAsciiz@8 +RtlCreateUserProcess@40 +RtlCreateUserSecurityObject@28 +RtlCreateUserStack@24 +RtlCreateUserThread@40 +RtlCreateVirtualAccountSid@16 +RtlCultureNameToLCID@8 +RtlCustomCPToUnicodeN@24 +RtlCutoverTimeToSystemTime@16 +RtlDeCommitDebugInfo@12 +RtlDeNormalizeProcessParams@4 +RtlDeactivateActivationContext@8 +RtlDebugPrintTimes@0 +RtlDecodePointer@4 +RtlDecodeSystemPointer@4 +RtlDecompressBuffer@24 +RtlDecompressFragment@32 +RtlDefaultNpAcl@4 +RtlDelete@4 +RtlDeleteAce@8 +RtlDeleteAtomFromAtomTable@8 +RtlDeleteBarrier@4 +RtlDeleteBoundaryDescriptor@4 +RtlDeleteCriticalSection@4 +RtlDeleteElementGenericTable@8 +RtlDeleteElementGenericTableAvl@8 +RtlDeleteHashTable@4 +RtlDeleteNoSplay@8 +RtlDeleteOwnersRanges@8 +RtlDeleteRange@24 +RtlDeleteRegistryValue@12 +RtlDeleteResource@4 +RtlDeleteSecurityObject@4 +RtlDeleteTimer@12 +RtlDeleteTimerQueue@4 +RtlDeleteTimerQueueEx@8 +RtlDeNormalizeProcessParams@4 +RtlDeregisterSecureMemoryCacheCallback@4 +RtlDeregisterWait@4 +RtlDeregisterWaitEx@8 +RtlDestroyAtomTable@4 +RtlDestroyEnvironment@4 +RtlDestroyHandleTable@4 +RtlDestroyHeap@4 +RtlDestroyMemoryBlockLookaside@4 +RtlDestroyMemoryZone@4 +RtlDestroyProcessParameters@4 +RtlDestroyQueryDebugBuffer@4 +RtlDetectHeapLeaks@0 +RtlDetermineDosPathNameType_U@4 +RtlDisableThreadProfiling@4 +RtlDllShutdownInProgress@0 +RtlDnsHostNameToComputerName@12 +RtlDoesFileExists_U@4 +RtlDosApplyFileIsolationRedirection_Ustr@36 +RtlDosPathNameToNtPathName_U@16 +RtlDosPathNameToNtPathName_U_WithStatus@16 +RtlDosPathNameToRelativeNtPathName_U@16 +RtlDosPathNameToRelativeNtPathName_U_WithStatus@16 +RtlDosSearchPath_U@24 +RtlDosSearchPath_Ustr@36 +RtlDowncaseUnicodeChar@4 +RtlDowncaseUnicodeString@12 +RtlDumpResource@4 +RtlDuplicateUnicodeString@12 +RtlEmptyAtomTable@8 +RtlEnableEarlyCriticalSectionEventCreation@0 +RtlEnableThreadProfiling@20 +RtlEncodePointer@4 +RtlEncodeSystemPointer@4 +RtlEndEnumerationHashTable@8 +RtlEndWeakEnumerationHashTable@8 +RtlEnlargedIntegerMultiply@8 +RtlEnlargedUnsignedDivide@16 +RtlEnlargedUnsignedMultiply@8 +RtlEnterCriticalSection@4 +RtlEnumProcessHeaps@8 +RtlEnumerateEntryHashTable@8 +RtlEnumerateGenericTable@8 +RtlEnumerateGenericTableAvl@8 +RtlEnumerateGenericTableLikeADirectory@28 +RtlEnumerateGenericTableWithoutSplaying@8 +RtlEnumerateGenericTableWithoutSplayingAvl@8 +RtlEqualComputerName@8 +RtlEqualDomainName@8 +RtlEqualLuid@8 +RtlEqualPrefixSid@8 +RtlEqualSid@8 +RtlEqualString@12 +RtlEqualUnicodeString@12 +RtlEraseUnicodeString@4 +RtlEthernetAddressToStringA@8 +RtlEthernetAddressToStringW@8 +RtlEthernetStringToAddressA@12 +RtlEthernetStringToAddressW@12 +RtlExitUserProcess@4 +; Not sure, but we assume @4 +RtlExitUserThread@4 +RtlExpandEnvironmentStrings@24 +RtlExpandEnvironmentStrings_U@16 +RtlExpandHashTable@4 +RtlExtendMemoryBlockLookaside@8 +RtlExtendMemoryZone@8 +RtlExtendedIntegerMultiply@12 +RtlExtendedLargeIntegerDivide@16 +RtlExtendedMagicDivide@20 +RtlExtendHeap@16 +RtlFillMemory@12 +RtlFillMemoryUlong@12 +RtlFillMemoryUlonglong@16 +RtlFinalReleaseOutOfProcessMemoryStream@4 +RtlFindAceByType@12 +RtlFindActivationContextSectionGuid@20 +RtlFindActivationContextSectionString@20 +RtlFindCharInUnicodeString@16 +RtlFindClearBits@12 +RtlFindClearBitsAndSet@12 +RtlFindClearRuns@16 +RtlFindClosestEncodableLength@12 +RtlFindLastBackwardRunClear@12 +RtlFindLeastSignificantBit@8 +RtlFindLongestRunClear@8 +RtlFindLongestRunSet@8 +RtlFindMessage@20 +RtlFindMostSignificantBit@8 +RtlFindNextForwardRunClear@12 +RtlFindRange@48 +RtlFindSetBits@12 +RtlFindSetBitsAndClear@12 +RtlFirstEntrySList@4 +RtlFirstFreeAce@8 +RtlFlsAlloc@8 +RtlFlsFree@4 +RtlFlushSecureMemoryCache@8 +RtlFormatCurrentUserKeyPath@4 +RtlFormatMessage@36 +RtlFormatMessageEx@40 +RtlFreeActivationContextStack@4 +RtlFreeAnsiString@4 +RtlFreeHandle@8 +RtlFreeHeap@12 +RtlFreeMemoryBlockLookaside@8 +RtlFreeOemString@4 +RtlFreeSid@4 +RtlFreeThreadActivationContextStack@0 +RtlFreeUnicodeString@4 +RtlFreeUserStack@4 +RtlFreeUserThreadStack@8 +RtlGUIDFromString@8 +RtlGenerate8dot3Name@16 +RtlGetAce@12 +RtlGetActiveActivationContext@4 +RtlGetCallersAddress@8 +RtlGetCompressionWorkSpaceSize@12 +RtlGetControlSecurityDescriptor@12 +RtlGetCriticalSectionRecursionCount@4 +RtlGetCurrentDirectory_U@8 +RtlGetCurrentPeb@0 +RtlGetCurrentProcessorNumber@0 +RtlGetCurrentProcessorNumberEx@4 +RtlGetCurrentTransaction@0 +RtlGetDaclSecurityDescriptor@16 +RtlGetElementGenericTable@8 +RtlGetElementGenericTableAvl@8 +RtlGetEnabledExtendedFeatures@8 +RtlGetExtendedContextLength@8 +RtlGetExtendedFeaturesMask@4 +RtlGetFileMUIPath@28 +RtlGetFirstRange@12 +RtlGetFrame@0 +RtlGetFullPathName_U@16 +RtlGetFullPathName_UEx@20 +RtlGetFullPathName_UstrEx@32 +RtlGetGroupSecurityDescriptor@12 +RtlGetIntegerAtom@8 +RtlGetLastNtStatus@0 +RtlGetLastWin32Error@0 +RtlGetLengthWithoutLastFullDosOrNtPathElement@12 +RtlGetLengthWithoutTrailingPathSeperators@12 +RtlGetLocaleFileMappingAddress@12 +RtlGetLongestNtPathLength@0 +RtlGetNativeSystemInformation@16 +RtlGetNextRange@12 +RtlGetNextEntryHashTable@8 +RtlGetNtGlobalFlags@0 +RtlGetNtProductType@4 +RtlGetNtVersionNumbers@12 +RtlGetOwnerSecurityDescriptor@12 +RtlGetParentLocaleName@16 +RtlGetProcessHeaps@8 +RtlGetProcessPreferredUILanguages@16 +RtlGetProductInfo@20 +RtlGetSaclSecurityDescriptor@16 +RtlGetSecurityDescriptorRMControl@8 +RtlGetSetBootStatusData@24 +RtlGetSystemPreferredUILanguages@20 +RtlGetThreadErrorMode@0 +RtlGetThreadLangIdByIndex@16 +RtlGetThreadPreferredUILanguages@16 +RtlGetUILanguageInfo@20 +RtlGetUnloadEventTrace@0 +RtlGetUnloadEventTraceEx@12 +RtlGetUserInfoHeap@20 +RtlGetUserPreferredUILanguages@20 +RtlGetVersion@4 +RtlGUIDFromString@8 +RtlHashUnicodeString@16 +RtlHeapTrkInitialize@4 +RtlIdentifierAuthoritySid@4 +RtlIdnToAscii@20 +RtlIdnToNameprepUnicode@20 +RtlIdnToUnicode@20 +RtlImageDirectoryEntryToData@16 +RtlImageNtHeader@4 +RtlImageNtHeaderEx@20 +RtlImageRvaToSection@12 +RtlImageRvaToVa@16 +RtlImpersonateLpcClient@8 +RtlImpersonateSelf@4 +RtlImpersonateSelfEx@12 +RtlInitAnsiString@8 +RtlInitAnsiStringEx@8 +RtlInitBarrier@12 +RtlInitCodePageTable@8 +RtlInitEnumerationHashTable@8 +RtlInitMemoryStream@4 +RtlInitNlsTables@16 +RtlInitOutOfProcessMemoryStream@4 +RtlInitString@8 +RtlInitUnicodeString@8 +RtlInitUnicodeStringEx@8 +RtlInitWeakEnumerationHashTable@8 +RtlInitializeAtomPackage@4 +RtlInitializeBitMap@12 +RtlInitializeConditionVariable@4 +RtlInitializeContext@20 +RtlInitializeCriticalSection@4 +RtlInitializeCriticalSectionAndSpinCount@8 +RtlInitializeCriticalSectionEx@12 +RtlInitializeExceptionChain@4 +RtlInitializeExtendedContext@12 +RtlInitializeGenericTable@20 +RtlInitializeGenericTableAvl@20 +RtlInitializeHandleTable@12 +RtlInitializeNtUserPfn@24 +RtlInitializeRXact@12 +RtlInitializeResource@4 +RtlInitializeSListHead@4 +RtlInitializeSRWLock@4 +RtlInitializeSid@12 +RtlInsertElementGenericTable@16 +RtlInsertElementGenericTableAvl@16 +RtlInsertElementGenericTableFull@24 +RtlInsertElementGenericTableFullAvl@24 +RtlInsertEntryHashTable@16 +RtlInt64ToUnicodeString@16 +RtlIntegerToChar@16 +RtlIntegerToUnicodeString@12 +RtlInterlockedClearBitRun@12 +RtlInterlockedCompareExchange64@20 +RtlInterlockedFlushSList@4 +RtlInterlockedPopEntrySList@4 +RtlInterlockedPushEntrySList@8 +RtlInvertRangeList@8 +RtlInterlockedSetBitRun@12 +RtlIoDecodeMemIoResource@16 +RtlIoEncodeMemIoResource@40 +RtlIpv4AddressToStringA@8 +RtlIpv4AddressToStringExA@16 +RtlIpv4AddressToStringExW@16 +RtlIpv4AddressToStringW@8 +RtlIpv4StringToAddressA@16 +RtlIpv4StringToAddressExA@16 +RtlIpv4StringToAddressExW@16 +RtlIpv4StringToAddressW@16 +RtlIpv6AddressToStringA@8 +RtlIpv6AddressToStringExA@20 +RtlIpv6AddressToStringExW@20 +RtlIpv6AddressToStringW@8 +RtlIpv6StringToAddressA@12 +RtlIpv6StringToAddressExA@16 +RtlIpv6StringToAddressExW@16 +RtlIpv6StringToAddressW@12 +RtlIsActivationContextActive@4 +RtlIsCriticalSectionLocked@4 +RtlIsCriticalSectionLockedByThread@4 +RtlIsCurrentThreadAttachExempt@0 +RtlIsDosDeviceName_U@4 +RtlIsGenericTableEmpty@4 +RtlIsGenericTableEmptyAvl@4 +RtlIsNameInExpression@16 +RtlIsNameLegalDOS8Dot3@12 +RtlIsNormalizedString@16 +RtlIsRangeAvailable@40 +RtlIsTextUnicode@12 +RtlIsThreadWithinLoaderCallout@0 +RtlIsValidHandle@8 +RtlIsValidIndexHandle@12 +RtlIsValidLocaleName@8 +RtlKnownExceptionFilter@4 +RtlLCIDToCultureName@8 +RtlLargeIntegerAdd@16 +RtlLargeIntegerArithmeticShift@12 +RtlLargeIntegerDivide@20 +RtlLargeIntegerNegate@8 +RtlLargeIntegerShiftLeft@12 +RtlLargeIntegerShiftRight@12 +RtlLargeIntegerSubtract@16 +RtlLargeIntegerToChar@16 +RtlLcidToLocaleName@16 +RtlLeaveCriticalSection@4 +RtlLengthRequiredSid@4 +RtlLengthSecurityDescriptor@4 +RtlLengthSid@4 +RtlLoadString@32 +RtlLocalTimeToSystemTime@8 +RtlLocaleNameToLcid@12 +RtlLocateExtendedFeature@12 +RtlLocateLegacyContext@8 +RtlLockBootStatusData@4 +RtlLockCurrentThread@0 +RtlLockHeap@4 +RtlLockMemoryBlockLookaside@4 +RtlLockMemoryStreamRegion@24 +RtlLockMemoryZone@4 +RtlLockModuleSection@4 +RtlLogStackBackTrace@0 +RtlLookupAtomInAtomTable@12 +RtlLookupElementGenericTable@8 +RtlLookupElementGenericTableAvl@8 +RtlLookupElementGenericTableFull@16 +RtlLookupElementGenericTableFullAvl@16 +RtlLookupEntryHashTable@12 +RtlMakeSelfRelativeSD@12 +RtlMapGenericMask@8 +RtlMapSecurityErrorToNtStatus@4 +RtlMergeRangeLists@16 +RtlMoveMemory@12 +RtlMultiAppendUnicodeStringBuffer@12 +RtlMultiByteToUnicodeN@20 +RtlMultiByteToUnicodeSize@12 +RtlMultipleAllocateHeap@20 +RtlMultipleFreeHeap@16 +RtlNewInstanceSecurityObject@40 +RtlNewSecurityGrantedAccess@24 +RtlNewSecurityObject@24 +RtlNewSecurityObjectEx@32 +RtlNewSecurityObjectWithMultipleInheritance@36 +RtlNormalizeProcessParams@4 +RtlNormalizeString@20 +RtlNtPathNameToDosPathName@16 +RtlNtStatusToDosError@4 +RtlNtStatusToDosErrorNoTeb@4 +RtlNumberGenericTableElements@4 +RtlNumberGenericTableElementsAvl@4 +RtlNumberOfClearBits@4 +RtlNumberOfSetBits@4 +RtlNumberOfSetBitsUlongPtr@4 +RtlOemStringToUnicodeSize@4 +RtlOemStringToUnicodeString@12 +RtlOemToUnicodeN@20 +RtlOpenCurrentUser@8 +RtlOwnerAcesPresent@4 +RtlPcToFileHeader@8 +RtlPinAtomInAtomTable@8 +RtlPopFrame@4 +RtlPrefixString@12 +RtlPrefixUnicodeString@12 +RtlProcessFlsData@4 +RtlProtectHeap@8 +RtlPushFrame@4 +RtlQueryActivationContextApplicationSettings@28 +RtlQueryAtomInAtomTable@24 +RtlQueryCriticalSectionOwner@4 +RtlQueryDepthSList@4 +RtlQueryDynamicTimeZoneInformation@4 +RtlQueryElevationFlags@4 +RtlQueryEnvironmentVariable@24 +RtlQueryEnvironmentVariable_U@12 +RtlQueryHeapInformation@20 +RtlQueryInformationAcl@16 +RtlQueryInformationActivationContext@28 +RtlQueryInformationActiveActivationContext@16 +RtlQueryInterfaceMemoryStream@12 +RtlQueryModuleInformation@12 +RtlQueryPerformanceCounter@4 +RtlQueryPerformanceFrequency@4 +RtlQueryProcessBackTraceInformation@4 +RtlQueryProcessDebugInformation@12 +RtlQueryProcessHeapInformation@4 +RtlQueryProcessLockInformation@4 +RtlQueryRegistryValues@20 +RtlQuerySecurityObject@20 +RtlQueryTagHeap@20 +RtlQueryThreadProfiling@8 +RtlQueryTimeZoneInformation@4 +RtlQueueApcWow64Thread@20 +RtlQueueWorkItem@12 +RtlRaiseException@4 +RtlRaiseStatus@4 +RtlRandom@4 +RtlRandomEx@4 +RtlReAllocateHeap@16 +RtlReadMemoryStream@16 +RtlReadOutOfProcessMemoryStream@16 +RtlReadThreadProfilingData@12 +RtlRealPredecessor@4 +RtlRealSuccessor@4 +RtlRegisterSecureMemoryCacheCallback@4 +RtlRegisterThreadWithCsrss@0 +RtlRegisterWait@24 +RtlReleaseActivationContext@4 +RtlReleaseMemoryStream@4 +RtlReleasePebLock@0 +RtlReleasePrivilege@4 +RtlReleaseRelativeName@4 +RtlReleaseResource@4 +RtlReleaseSRWLockExclusive@4 +RtlReleaseSRWLockShared@4 +RtlRemoteCall@28 +RtlRemoveEntryHashTable@12 +RtlRemovePrivileges@12 +RtlRemoveVectoredContinueHandler@4 +RtlRemoveVectoredExceptionHandler@4 +RtlReplaceSidInSd@16 +RtlReportException@12 +RtlReportSilentProcessExit@8 +RtlReportSqmEscalation@24 +RtlResetMemoryBlockLookaside@4 +RtlResetMemoryZone@4 +RtlResetRtlTranslations@4 +RtlRestoreLastWin32Error@4 +RtlRetrieveNtUserPfn@12 +RtlRevertMemoryStream@4 +RtlRunDecodeUnicodeString@8 +RtlRunEncodeUnicodeString@8 +RtlRunOnceBeginInitialize@12 +RtlRunOnceComplete@12 +RtlRunOnceExecuteOnce@16 +RtlRunOnceInitialize@4 +RtlSecondsSince1970ToTime@8 +RtlSecondsSince1980ToTime@8 +RtlSeekMemoryStream@20 +RtlSelfRelativeToAbsoluteSD2@8 +RtlSelfRelativeToAbsoluteSD@44 +RtlSendMsgToSm@8 +RtlSetAllBits@4 +RtlSetAttributesSecurityDescriptor@12 +RtlSetBits@12 +RtlSetControlSecurityDescriptor@12 +RtlSetCriticalSectionSpinCount@8 +RtlSetCurrentDirectory_U@4 +RtlSetCurrentEnvironment@8 +RtlSetCurrentTransaction@4 +RtlSetDaclSecurityDescriptor@16 +RtlSetDynamicTimeZoneInformation@4 +RtlSetEnvironmentStrings@8 +RtlSetEnvironmentVar@20 +RtlSetEnvironmentVariable@12 +RtlSetExtendedFeaturesMask@12 +RtlSetGroupSecurityDescriptor@12 +RtlSetHeapInformation@16 +RtlSetInformationAcl@16 +RtlSetIoCompletionCallback@12 +RtlSetLastWin32Error@4 +RtlSetLastWin32ErrorAndNtStatusFromNtStatus@4 +RtlSetMemoryStreamSize@12 +RtlSetOwnerSecurityDescriptor@12 +RtlSetProcessDebugInformation@12 +RtlSetProcessIsCritical@0 +RtlSetProcessPreferredUILanguages@12 +RtlSetSaclSecurityDescriptor@16 +RtlSetSecurityDescriptorRMControl@8 +RtlSetSecurityObject@20 +RtlSetSecurityObjectEx@24 +RtlSetThreadErrorMode@8 +RtlSetThreadIsCritical@0 +RtlSetThreadPoolStartFunc@8 +RtlSetThreadPreferredUILanguages@12 +RtlSetTimeZoneInformation@4 +RtlSetTimer@28 +RtlSetUnhandledExceptionFilter@4 +RtlSetUserCallbackExceptionFilter@4 +RtlSetUserFlagsHeap@20 +RtlSetUserValueHeap@16 +RtlShutdownLpcServer@4 +RtlSidDominates@12 +RtlSidEqualLevel@12 +RtlSidHashInitialize@12 +RtlSidHashLookup@8 +RtlSidIsHigherLevel@12 +RtlSizeHeap@12 +RtlSleepConditionVariableCS@12 +RtlSleepConditionVariableSRW@16 +RtlSplay@4 +RtlStartRXact@4 +RtlStatMemoryStream@12 +RtlStringFromGUID@8 +RtlSubAuthorityCountSid@4 +RtlSubAuthoritySid@8 +RtlSubtreePredecessor@4 +RtlSubtreeSuccessor@4 +RtlSystemTimeToLocalTime@8 +RtlTestBit@8 +RtlTimeFieldsToTime@8 +RtlTimeToElapsedTimeFields@8 +RtlTimeToSecondsSince1970@8 +RtlTimeToSecondsSince1980@8 +RtlTimeToTimeFields@8 +RtlTraceDatabaseAdd@16 +RtlTraceDatabaseCreate@20 +RtlTraceDatabaseDestroy@4 +RtlTraceDatabaseEnumerate@12 +RtlTraceDatabaseFind@16 +RtlTraceDatabaseLock@4 +RtlTraceDatabaseUnlock@4 +RtlTraceDatabaseValidate@4 +RtlTryAcquirePebLock@0 +RtlTryAcquireSRWLockExclusive@4 +RtlTryAcquireSRWLockShared@4 +RtlTryEnterCriticalSection@4 +RtlUTF8ToUnicodeN@20 +RtlUnhandledExceptionFilter2@8 +RtlUnhandledExceptionFilter@4 +RtlUnicodeStringToAnsiSize@4 +RtlUnicodeStringToAnsiString@12 +RtlUnicodeStringToCountedOemString@12 +RtlUnicodeStringToInteger@12 +RtlUnicodeStringToOemSize@4 +RtlUnicodeStringToOemString@12 +RtlUnicodeToCustomCPN@24 +RtlUnicodeToMultiByteN@20 +RtlUnicodeToMultiByteSize@12 +RtlUnicodeToOemN@20 +RtlUnicodeToUTF8N@20 +RtlUniform@4 +RtlUnlockBootStatusData@4 +RtlUnlockCurrentThread@0 +RtlUnlockHeap@4 +RtlUnlockMemoryBlockLookaside@4 +RtlUnlockMemoryStreamRegion@24 +RtlUnlockMemoryZone@4 +RtlUnlockModuleSection@4 +RtlUnwind@16 +RtlUpcaseUnicodeChar@4 +RtlUpcaseUnicodeString@12 +RtlUpcaseUnicodeStringToAnsiString@12 +RtlUpcaseUnicodeStringToCountedOemString@12 +RtlUpcaseUnicodeStringToOemString@12 +RtlUpcaseUnicodeToCustomCPN@24 +RtlUpcaseUnicodeToMultiByteN@20 +RtlUpcaseUnicodeToOemN@20 +RtlUpdateClonedCriticalSection@4 +RtlUpdateClonedSRWLock@8 +RtlUpdateTimer@16 +RtlUpperChar@4 +RtlUpperString@8 +RtlUsageHeap@12 +; Not sure. +RtlUserThreadStart +RtlValidAcl@4 +RtlValidRelativeSecurityDescriptor@12 +RtlValidSecurityDescriptor@4 +RtlValidSid@4 +RtlValidateHeap@12 +RtlValidateProcessHeaps@0 +RtlValidateUnicodeString@8 +RtlVerifyVersionInfo@16 +RtlWakeAllConditionVariable@4 +RtlWakeConditionVariable@4 +RtlWalkFrameChain@12 +RtlWalkHeap@8 +RtlWeaklyEnumerateEntryHashTable@8 +RtlWerpReportException@16 +RtlWow64CallFunction64@28 +RtlWow64EnableFsRedirection@4 +RtlWow64EnableFsRedirectionEx@8 +RtlWow64LogMessageInEventLogger@12 +RtlWriteMemoryStream@16 +RtlWriteRegistryValue@24 +RtlZeroHeap@8 +RtlZeroMemory@8 +RtlZombifyActivationContext@4 +RtlpApplyLengthFunction@16 +RtlpCheckDynamicTimeZoneInformation@8 +RtlpCleanupRegistryKeys@0 +RtlpConvertCultureNamesToLCIDs@8 +RtlpConvertLCIDsToCultureNames@8 +RtlpCreateProcessRegistryInfo@4 +RtlpEnsureBufferSize@12 +RtlpGetLCIDFromLangInfoNode@12 +RtlpGetNameFromLangInfoNode@12 +RtlpGetSystemDefaultUILanguage@4 ; Check!!! gendef says @8 +RtlpGetUserOrMachineUILanguage4NLS@12 +RtlpInitializeLangRegistryInfo@4 +RtlpIsQualifiedLanguage@12 +RtlpLoadMachineUIByPolicy@12 +RtlpLoadUserUIByPolicy@12 +RtlpMuiFreeLangRegistryInfo@4 +RtlpMuiRegCreateRegistryInfo@0 +RtlpMuiRegFreeRegistryInfo@8 +RtlpMuiRegLoadRegistryInfo@8 +RtlpNotOwnerCriticalSection@0 ; Check!!! gebdef says @4 +RtlpNtCreateKey@24 +RtlpNtEnumerateSubKey@16 +RtlpNtMakeTemporaryKey@4 +RtlpNtOpenKey@16 +RtlpNtQueryValueKey@20 +RtlpNtSetValueKey@16 +RtlpQueryDefaultUILanguage@8 +; Not sure. +RtlpQueryProcessDebugInformationRemote +RtlpRefreshCachedUILanguage@8 +RtlpSetInstallLanguage@8 +RtlpSetPreferredUILanguages@12 +RtlpSetUserPreferredUILanguages@12 +RtlpUnWaitCriticalSection@4 +RtlpVerifyAndCommitUILanguageSettings@4 +RtlpWaitForCriticalSection@4 +RtlxAnsiStringToUnicodeSize@4 +RtlxOemStringToUnicodeSize@4 +RtlxUnicodeStringToAnsiSize@4 +RtlxUnicodeStringToOemSize@4 +SbExecuteProcedure@20 +SbSelectProcedure@16 +ShipAssert@8 +ShipAssertGetBufferInfo@8 +ShipAssertMsgA@12 +ShipAssertMsgW@12 +TpAllocAlpcCompletion@20 +TpAllocAlpcCompletionEx@20 +TpAllocCleanupGroup@4 +TpAllocIoCompletion@20 +TpAllocPool@8 +TpAllocTimer@16 +TpAllocWait@16 +TpAllocWork@16 +TpAlpcRegisterCompletionList@4 +TpAlpcUnregisterCompletionList@4 +TpCallbackIndependent@4 +TpCallbackLeaveCriticalSectionOnCompletion@8 +TpCallbackMayRunLong@4 +TpCallbackReleaseMutexOnCompletion@8 +TpCallbackReleaseSemaphoreOnCompletion@12 +TpCallbackSetEventOnCompletion@8 +TpCallbackUnloadDllOnCompletion@8 +TpCancelAsyncIoOperation@4 +TpCaptureCaller@4 +TpCheckTerminateWorker@4 +TpDbgDumpHeapUsage@12 +TpDbgGetFreeInfo@8 +TpDbgSetLogRoutine@4 +TpDisablePoolCallbackChecks@4 +TpDisassociateCallback@4 +TpIsTimerSet@4 +TpPoolFreeUnusedNodes@4 +TpPostWork@4 +TpQueryPoolStackInformation@8 +TpReleaseAlpcCompletion@4 +TpReleaseCleanupGroup@4 +TpReleaseCleanupGroupMembers@12 +TpReleaseIoCompletion@4 +TpReleasePool@4 +TpReleaseTimer@4 +TpReleaseWait@4 +TpReleaseWork@4 +TpSetDefaultPoolMaxThreads@4 +TpSetDefaultPoolStackInformation@4 +TpSetPoolMaxThreads@8 +TpSetPoolMinThreads@8 +TpSetPoolStackInformation@8 +TpSetTimer@16 +TpSetWait@12 +TpSimpleTryPost@12 +TpStartAsyncIoOperation@4 +TpWaitForAlpcCompletion@4 +TpWaitForIoCompletion@8 +TpWaitForTimer@8 +TpWaitForWait@8 +TpWaitForWork@8 +VerSetConditionMask@16 +WerCheckEventEscalation@8 +WerReportSQMEvent@12 +WerReportWatsonEvent@16 +WerReportSQMEvent@16 +WinSqmAddToAverageDWORD@12 +WinSqmAddToStream@16 +WinSqmAddToStreamEx@20 +WinSqmCheckEscalationAddToStreamEx@20 +WinSqmCheckEscalationSetDWORD64@20 +WinSqmCheckEscalationSetDWORD@16 +WinSqmCheckEscalationSetString@16 +WinSqmCommonDatapointDelete@4 +WinSqmCommonDatapointSetDWORD64@16 +WinSqmCommonDatapointSetDWORD@12 +WinSqmCommonDatapointSetStreamEx@20 +WinSqmCommonDatapointSetString@12 +WinSqmEndSession@4 +WinSqmEventEnabled@8 +WinSqmEventWrite@12 +WinSqmGetEscalationRuleStatus@8 +WinSqmGetInstrumentationProperty@16 +WinSqmIncrementDWORD@12 +WinSqmIsOptedIn@0 +WinSqmIsOptedInEx@4 +WinSqmSetDWORD64@16 +WinSqmSetDWORD@12 +WinSqmSetEscalationInfo@16 +WinSqmSetIfMaxDWORD@12 +WinSqmSetIfMinDWORD@12 +WinSqmSetString@12 +WinSqmStartSession@12 +ZwAcceptConnectPort@24 +ZwAccessCheck@32 +ZwAccessCheckAndAuditAlarm@44 +ZwAccessCheckByType@44 +ZwAccessCheckByTypeAndAuditAlarm@64 +ZwAccessCheckByTypeResultList@44 +ZwAccessCheckByTypeResultListAndAuditAlarm@64 +ZwAccessCheckByTypeResultListAndAuditAlarmByHandle@68 +ZwAcquireCMFViewOwnership@12 +ZwAddAtom@12 +ZwAddBootEntry@8 +ZwAddDriverEntry@8 +ZwAdjustGroupsToken@24 +ZwAdjustPrivilegesToken@24 +ZwAlertResumeThread@8 +ZwAlertThread@4 +ZwAllocateLocallyUniqueId@4 +ZwAllocateReserveObject@12 +ZwAllocateUserPhysicalPages@12 +ZwAllocateUuids@16 +ZwAllocateVirtualMemory@24 +ZwAlpcAcceptConnectPort@36 +ZwAlpcCancelMessage@12 +ZwAlpcConnectPort@44 +ZwAlpcCreatePort@12 +ZwAlpcCreatePortSection@24 +ZwAlpcCreateResourceReserve@16 +ZwAlpcCreateSectionView@12 +ZwAlpcCreateSecurityContext@12 +ZwAlpcDeletePortSection@12 +ZwAlpcDeleteResourceReserve@12 +ZwAlpcDeleteSectionView@12 +ZwAlpcDeleteSecurityContext@12 +ZwAlpcDisconnectPort@8 +ZwAlpcImpersonateClientOfPort@12 +ZwAlpcOpenSenderProcess@24 +ZwAlpcOpenSenderThread@24 +ZwAlpcQueryInformation@20 +ZwAlpcQueryInformationMessage@24 +ZwAlpcRevokeSecurityContext@12 +ZwAlpcSendWaitReceivePort@32 +ZwAlpcSetInformation@16 +ZwApphelpCacheControl@8 +ZwAreMappedFilesTheSame@8 +ZwAssignProcessToJobObject@8 +ZwCallbackReturn@12 +ZwCancelDeviceWakeupRequest@4 +ZwCancelIoFile@8 +ZwCancelIoFileEx@12 +ZwCancelSynchronousIoFile@12 +ZwCancelTimer@8 +ZwClearEvent@4 +ZwClose@4 +ZwCloseObjectAuditAlarm@12 +ZwCommitComplete@8 +ZwCommitEnlistment@8 +ZwCommitTransaction@8 +ZwCompactKeys@8 +ZwCompareTokens@12 +ZwCompleteConnectPort@4 +ZwCompressKey@4 +ZwConnectPort@32 +ZwContinue@8 +ZwCreateDebugObject@16 +ZwCreateDirectoryObject@12 +ZwCreateEnlistment@32 +ZwCreateEvent@20 +ZwCreateEventPair@12 +ZwCreateFile@44 +ZwCreateIoCompletion@16 +ZwCreateJobObject@12 +ZwCreateJobSet@12 +ZwCreateKey@28 +ZwCreateKeyTransacted@32 +ZwCreateKeyedEvent@16 +ZwCreateMailslotFile@32 +ZwCreateMutant@16 +ZwCreateNamedPipeFile@56 +ZwCreatePagingFile@16 +ZwCreatePort@20 +ZwCreatePrivateNamespace@16 +ZwCreateProcess@32 +ZwCreateProcessEx@36 +ZwCreateProfile@36 +ZwCreateProfileEx@40 +ZwCreateResourceManager@28 +ZwCreateSection@28 +ZwCreateSemaphore@20 +ZwCreateSymbolicLinkObject@16 +ZwCreateThread@32 +ZwCreateThreadEx@44 +ZwCreateTimer@16 +ZwCreateToken@52 +ZwCreateTransaction@40 +ZwCreateTransactionManager@24 +ZwCreateUserProcess@44 +ZwCreateWaitablePort@20 +ZwCreateWorkerFactory@40 +ZwDebugActiveProcess@8 +ZwDebugContinue@12 +ZwDelayExecution@8 +ZwDeleteAtom@4 +ZwDeleteBootEntry@4 +ZwDeleteDriverEntry@4 +ZwDeleteFile@4 +ZwDeleteKey@4 +ZwDeleteObjectAuditAlarm@12 +ZwDeletePrivateNamespace@4 +ZwDeleteValueKey@8 +ZwDeviceIoControlFile@40 +ZwDisableLastKnownGood@0 +ZwDisplayString@4 +ZwDrawText@4 +ZwDuplicateObject@28 +ZwDuplicateToken@24 +ZwEnableLastKnownGood@0 +ZwEnumerateBootEntries@8 +ZwEnumerateDriverEntries@8 +ZwEnumerateKey@24 +ZwEnumerateSystemEnvironmentValuesEx@12 +ZwEnumerateTransactionObject@20 +ZwEnumerateValueKey@24 +ZwExtendSection@8 +ZwFilterToken@24 +ZwFindAtom@12 +ZwFlushBuffersFile@8 +ZwFlushInstallUILanguage@8 +ZwFlushInstructionCache@12 +ZwFlushKey@4 +ZwFlushProcessWriteBuffers@0 +ZwFlushVirtualMemory@16 +ZwFlushWriteBuffer@0 +ZwFreeUserPhysicalPages@12 +ZwFreeVirtualMemory@16 +ZwFreezeRegistry@4 +ZwFreezeTransactions@8 +ZwFsControlFile@40 +ZwGetContextThread@8 +ZwGetCurrentProcessorNumber@0 +ZwGetDevicePowerState@8 +ZwGetMUIRegistryInfo@12 +ZwGetNextProcess@20 +ZwGetNextThread@24 +ZwGetNlsSectionPtr@20 +ZwGetNotificationResourceManager@28 +ZwGetPlugPlayEvent@16 +ZwGetTickCount@0 +ZwGetWriteWatch@28 +ZwImpersonateAnonymousToken@4 +ZwImpersonateClientOfPort@8 +ZwImpersonateThread@12 +ZwInitializeNlsFiles@16 +ZwInitializeRegistry@4 +ZwInitiatePowerAction@16 +ZwIsProcessInJob@8 +ZwIsSystemResumeAutomatic@0 +ZwIsUILanguageComitted@0 +ZwListenPort@8 +ZwLoadDriver@4 +ZwLoadKey2@12 +ZwLoadKey@8 +ZwLoadKeyEx@32 +ZwLockFile@40 +ZwLockProductActivationKeys@8 +ZwLockRegistryKey@4 +ZwLockVirtualMemory@16 +ZwMakePermanentObject@4 +ZwMakeTemporaryObject@4 +ZwMapCMFModule@24 +ZwMapUserPhysicalPages@12 +ZwMapUserPhysicalPagesScatter@12 +ZwMapViewOfSection@40 +ZwModifyBootEntry@4 +ZwModifyDriverEntry@4 +ZwNotifyChangeDirectoryFile@36 +ZwNotifyChangeKey@40 +ZwNotifyChangeMultipleKeys@48 +ZwNotifyChangeSession@32 +ZwOpenDirectoryObject@12 +ZwOpenEnlistment@20 +ZwOpenEvent@12 +ZwOpenEventPair@12 +ZwOpenFile@24 +ZwOpenIoCompletion@12 +ZwOpenJobObject@12 +ZwOpenKey@12 +ZwOpenKeyEx@16 +ZwOpenKeyTransacted@16 +ZwOpenKeyTransactedEx@20 +ZwOpenKeyedEvent@12 +ZwOpenMutant@12 +ZwOpenObjectAuditAlarm@48 +ZwOpenPrivateNamespace@16 +ZwOpenProcess@16 +ZwOpenProcessToken@12 +ZwOpenProcessTokenEx@16 +ZwOpenResourceManager@20 +ZwOpenSection@12 +ZwOpenSemaphore@12 +ZwOpenSession@12 +ZwOpenSymbolicLinkObject@12 +ZwOpenThread@16 +ZwOpenThreadToken@16 +ZwOpenThreadTokenEx@20 +ZwOpenTimer@12 +ZwOpenTransaction@20 +ZwOpenTransactionManager@24 +ZwPlugPlayControl@12 +ZwPowerInformation@20 +ZwPrePrepareComplete@8 +ZwPrePrepareEnlistment@8 +ZwPrepareComplete@8 +ZwPrepareEnlistment@8 +ZwPrivilegeCheck@12 +ZwPrivilegeObjectAuditAlarm@24 +ZwPrivilegedServiceAuditAlarm@20 +ZwPropagationComplete@16 +ZwPropagationFailed@12 +ZwProtectVirtualMemory@20 +ZwPulseEvent@8 +ZwQueryAttributesFile@8 +ZwQueryBootEntryOrder@8 +ZwQueryBootOptions@8 +ZwQueryDebugFilterState@8 +ZwQueryDefaultLocale@8 +ZwQueryDefaultUILanguage@4 +ZwQueryDirectoryFile@44 +ZwQueryDirectoryObject@28 +ZwQueryDriverEntryOrder@8 +ZwQueryEaFile@36 +ZwQueryEvent@20 +ZwQueryFullAttributesFile@8 +ZwQueryInformationAtom@20 +ZwQueryInformationEnlistment@20 +ZwQueryInformationFile@20 +ZwQueryInformationJobObject@20 +ZwQueryInformationPort@20 +ZwQueryInformationProcess@20 +ZwQueryInformationResourceManager@20 +ZwQueryInformationThread@20 +ZwQueryInformationToken@20 +ZwQueryInformationTransaction@20 +ZwQueryInformationTransactionManager@20 +ZwQueryInformationWorkerFactory@20 +ZwQueryInstallUILanguage@4 +ZwQueryIntervalProfile@8 +ZwQueryIoCompletion@20 +ZwQueryKey@20 +ZwQueryLicenseValue@20 +ZwQueryMultipleValueKey@24 +ZwQueryMutant@20 +ZwQueryObject@20 +ZwQueryOpenSubKeys@8 +ZwQueryOpenSubKeysEx@16 +ZwQueryPerformanceCounter@8 +ZwQueryPortInformationProcess@0 +ZwQueryQuotaInformationFile@36 +ZwQuerySection@20 +ZwQuerySecurityAttributesToken@24 +ZwQuerySecurityObject@20 +ZwQuerySemaphore@20 +ZwQuerySymbolicLinkObject@12 +ZwQuerySystemEnvironmentValue@16 +ZwQuerySystemEnvironmentValueEx@20 +ZwQuerySystemInformation@16 +ZwQuerySystemInformationEx@24 +ZwQuerySystemTime@4 +ZwQueryTimer@20 +ZwQueryTimerResolution@12 +ZwQueryValueKey@24 +ZwQueryVirtualMemory@24 +ZwQueryVolumeInformationFile@20 +ZwQueueApcThread@20 +ZwQueueApcThreadEx@24 +ZwRaiseException@12 +ZwRaiseHardError@24 +ZwReadFile@36 +ZwReadFileScatter@36 +ZwReadOnlyEnlistment@8 +ZwReadRequestData@24 +ZwReadVirtualMemory@20 +ZwRecoverEnlistment@8 +ZwRecoverResourceManager@4 +ZwRecoverTransactionManager@4 +ZwRegisterProtocolAddressInformation@20 +ZwRegisterThreadTerminatePort@4 +ZwReleaseCMFViewOwnership@0 +ZwReleaseKeyedEvent@16 +ZwReleaseMutant@8 +ZwReleaseSemaphore@12 +ZwReleaseWorkerFactoryWorker@4 +ZwRemoveIoCompletion@20 +ZwRemoveIoCompletionEx@24 +ZwRemoveProcessDebug@8 +ZwRenameKey@8 +ZwRenameTransactionManager@8 +ZwReplaceKey@12 +ZwReplacePartitionUnit@12 +ZwReplyPort@8 +ZwReplyWaitReceivePort@16 +ZwReplyWaitReceivePortEx@20 +ZwReplyWaitReplyPort@8 +ZwRequestDeviceWakeup@4 +ZwRequestPort@8 +ZwRequestWaitReplyPort@12 +ZwRequestWakeupLatency@4 +ZwResetEvent@8 +ZwResetWriteWatch@12 +ZwRestoreKey@12 +ZwResumeProcess@4 +ZwResumeThread@8 +ZwRollbackComplete@8 +ZwRollbackEnlistment@8 +ZwRollbackTransaction@8 +ZwRollforwardTransactionManager@8 +ZwSaveKey@8 +ZwSaveKeyEx@12 +ZwSaveMergedKeys@12 +ZwSecureConnectPort@36 +ZwSerializeBoot@0 +ZwSetBootEntryOrder@8 +ZwSetBootOptions@8 +ZwSetContextThread@8 +ZwSetDebugFilterState@12 +ZwSetDefaultHardErrorPort@4 +ZwSetDefaultLocale@8 +ZwSetDefaultUILanguage@4 +ZwSetDriverEntryOrder@8 +ZwSetEaFile@16 +ZwSetEvent@8 +ZwSetEventBoostPriority@4 +ZwSetHighEventPair@4 +ZwSetHighWaitLowEventPair@4 +ZwSetInformationDebugObject@20 +ZwSetInformationEnlistment@16 +ZwSetInformationFile@20 +ZwSetInformationJobObject@16 +ZwSetInformationKey@16 +ZwSetInformationObject@16 +ZwSetInformationProcess@16 +ZwSetInformationResourceManager@16 +ZwSetInformationThread@16 +ZwSetInformationToken@16 +ZwSetInformationTransaction@16 +ZwSetInformationTransactionManager@16 +ZwSetInformationWorkerFactory@16 +ZwSetIntervalProfile@8 +ZwSetIoCompletion@20 +ZwSetIoCompletionEx@24 +ZwSetLdtEntries@24 +ZwSetLowEventPair@4 +ZwSetLowWaitHighEventPair@4 +ZwSetQuotaInformationFile@16 +ZwSetSecurityObject@12 +ZwSetSystemEnvironmentValue@8 +ZwSetSystemEnvironmentValueEx@20 +ZwSetSystemInformation@12 +ZwSetSystemPowerState@12 +ZwSetSystemTime@8 +ZwSetThreadExecutionState@8 +ZwSetTimer@28 +ZwSetTimerEx@16 +ZwSetTimerResolution@12 +ZwSetUuidSeed@4 +ZwSetValueKey@24 +ZwSetVolumeInformationFile@20 +ZwShutdownSystem@4 +ZwShutdownWorkerFactory@8 +ZwSignalAndWaitForSingleObject@16 +ZwSinglePhaseReject@8 +ZwStartProfile@4 +ZwStopProfile@4 +ZwSuspendProcess@4 +ZwSuspendThread@8 +ZwSystemDebugControl@24 +ZwTerminateJobObject@8 +ZwTerminateProcess@8 +ZwTerminateThread@8 +ZwTestAlert@0 +ZwThawRegistry@0 +ZwThawTransactions@0 +ZwTraceControl@24 +ZwTraceEvent@16 +ZwTranslateFilePath@16 +ZwUmsThreadYield@4 +ZwUnloadDriver@4 +ZwUnloadKey2@8 +ZwUnloadKey@4 +ZwUnloadKeyEx@8 +ZwUnlockFile@20 +ZwUnlockVirtualMemory@16 +ZwUnmapViewOfSection@8 +ZwVdmControl@8 +ZwWaitForDebugEvent@16 +ZwWaitForKeyedEvent@16 +ZwWaitForMultipleObjects32@20 +ZwWaitForMultipleObjects@20 +ZwWaitForSingleObject@12 +ZwWaitForWorkViaWorkerFactory@8 +ZwWaitHighEventPair@4 +ZwWaitLowEventPair@4 +ZwWorkerFactoryWorkerReady@4 +ZwWow64CallFunction64@28 +ZwWow64CsrAllocateCaptureBuffer@8 +ZwWow64CsrAllocateMessagePointer@12 +ZwWow64CsrCaptureMessageBuffer@16 +ZwWow64CsrCaptureMessageString@20 +ZwWow64CsrClientCallServer@16 +ZwWow64CsrClientConnectToServer@20 +ZwWow64CsrFreeCaptureBuffer@4 +ZwWow64CsrGetProcessId@0 +ZwWow64CsrIdentifyAlertableThread@0 +ZwWow64CsrVerifyRegion@8 +ZwWow64DebuggerCall@20 +ZwWow64GetCurrentProcessorNumberEx@4 +ZwWow64GetNativeSystemInformation@16 +ZwWow64InterlockedPopEntrySList@4 +ZwWow64QueryInformationProcess64@20 +ZwWow64QueryVirtualMemory64@32 +ZwWow64ReadVirtualMemory64@28 +ZwWow64WriteVirtualMemory64@28 +ZwWriteFile@36 +ZwWriteFileGather@36 +ZwWriteRequestData@24 +ZwWriteVirtualMemory@20 +ZwYieldExecution@0 +_CIcos +_CIlog +_CIpow +_CIsin +_CIsqrt +__isascii +__iscsym +__iscsymf +__toascii +_alldiv +_alldvrm@16 +_allmul@16 +_alloca_probe +_alloca_probe_16 +_alloca_probe_8 +_allrem@16 +_allshl +_allshr +_atoi64 +_aulldiv@16 +_aulldvrm@16 +_aullrem@16 +_aullshr +;_chkstk +_fltused DATA +_ftol +_i64toa +_i64toa_s +_i64tow +_i64tow_s +_itoa +_itoa_s +_itow +_itow_s +_lfind +_ltoa +_ltoa_s +_ltow +_ltow_s +_makepath_s +_memccpy +_memicmp +_snprintf +_snprintf_s +_snscanf_s +_snwprintf +_snwprintf_s +_snwscanf_s +_splitpath +_splitpath_s +_strcmpi +_stricmp +_strlwr +_strnicmp +_strnset_s +_strset_s +_strupr +_swprintf +_tolower +_toupper +_ui64toa +_ui64toa_s +_ui64tow +_ui64tow_s +_ultoa +_ultoa_s +_ultow +_ultow_s +_vscwprintf +_vsnprintf +_vsnprintf_s +_vsnwprintf +_vsnwprintf_s +_vswprintf +_wcsicmp +_wcslwr +_wcsnicmp +_wcsnset_s +_wcsset_s +_wcstoui64 +_wcsupr +_wmakepath_s +_wsplitpath_s +_wtoi +_wtoi64 +_wtol +abs +atan DATA +atoi +atol +bsearch +ceil +cos DATA +fabs DATA +floor DATA +isalnum +isalpha +iscntrl +isdigit +isgraph +islower +isprint +ispunct +isspace +isupper +iswalpha +iswctype +iswdigit +iswlower +iswspace +iswxdigit +isxdigit +labs +log +mbstowcs +memchr +memcmp +memcpy +memcpy_s +memmove +memmove_s +memset +pow +qsort +sin +sprintf +sprintf_s +sqrt +sscanf +sscanf_s +strcat +strcat_s +strchr +strcmp +strcpy +strcpy_s +strcspn +strlen +strncat +strncat_s +strncmp +strncpy +strncpy_s +strnlen +strpbrk +strrchr +strspn +strstr +strtok_s +strtol +strtoul +swprintf +swprintf_s +swscanf_s +tan +tolower +toupper +towlower +towupper +vDbgPrintEx@16 +vDbgPrintExWithPrefix@20 +vsprintf +vsprintf_s +vswprintf_s +wcscat +wcscat_s +wcschr +wcscmp +wcscpy +wcscpy_s +wcscspn +wcslen +wcsncat +wcsncat_s +wcsncmp +wcsncpy +wcsncpy_s +wcsnlen +wcspbrk +wcsrchr +wcsspn +wcsstr +wcstol +wcstombs +wcstoul diff --git a/lib/libc/mingw/lib64/ntdll.def b/lib/libc/mingw/lib64/ntdll.def new file mode 100644 index 0000000000..2b2ad36f8a --- /dev/null +++ b/lib/libc/mingw/lib64/ntdll.def @@ -0,0 +1,2037 @@ +; +; Definition file of ntdll.dll +; Automatic generated by gendef +; written by Kai Tietz 2008 +; +LIBRARY "ntdll.dll" +EXPORTS +PropertyLengthAsVariant +RtlConvertPropertyToVariant +RtlConvertVariantToProperty +A_SHAFinal +A_SHAInit +A_SHAUpdate +AlpcAdjustCompletionListConcurrencyCount +AlpcFreeCompletionListMessage +AlpcGetCompletionListLastMessageInformation +AlpcGetCompletionListMessageAttributes +AlpcGetHeaderSize +AlpcGetMessageAttribute +AlpcGetMessageFromCompletionList +AlpcGetOutstandingCompletionListMessageCount +AlpcInitializeMessageAttribute +AlpcMaxAllowedMessageLength +AlpcRegisterCompletionList +AlpcRegisterCompletionListWorkerThread +AlpcRundownCompletionList +AlpcUnregisterCompletionList +AlpcUnregisterCompletionListWorkerThread +CsrAllocateCaptureBuffer +CsrAllocateMessagePointer +CsrCaptureMessageBuffer +CsrCaptureMessageMultiUnicodeStringsInPlace +CsrCaptureMessageString +CsrCaptureTimeout +CsrClientCallServer +CsrClientConnectToServer +CsrFreeCaptureBuffer +CsrGetProcessId +CsrIdentifyAlertableThread +CsrNewThread +CsrProbeForRead +CsrProbeForWrite +CsrSetPriorityClass +CsrVerifyRegion +DbgBreakPoint +DbgPrint +DbgPrintEx +DbgPrintReturnControlC +DbgPrompt +DbgQueryDebugFilterState +DbgSetDebugFilterState +DbgUiConnectToDbg +DbgUiContinue +DbgUiConvertStateChangeStructure +DbgUiDebugActiveProcess +DbgUiGetThreadDebugObject +DbgUiIssueRemoteBreakin +DbgUiRemoteBreakin +DbgUiSetThreadDebugObject +DbgUiStopDebugging +DbgUiWaitStateChange +DbgUserBreakPoint +EtwControlTraceA +EtwControlTraceW +EtwCreateTraceInstanceId +EtwEnableTrace +EtwEnumerateTraceGuids +EtwFlushTraceA +EtwFlushTraceW +EtwDeliverDataBlock +EtwEnumerateProcessRegGuids +EtwEventActivityIdControl +EtwEventEnabled +EtwEventProviderEnabled +EtwEventRegister +EtwEventUnregister +EtwEventWrite +EtwEventWriteEndScenario +EtwEventWriteEx +EtwEventWriteFull +EtwEventWriteNoRegistration +EtwEventWriteStartScenario +EtwEventWriteString +EtwEventWriteTransfer +EtwGetTraceEnableFlags +EtwGetTraceEnableLevel +EtwGetTraceLoggerHandle +EtwNotificationRegistrationA +EtwNotificationRegistrationW +EtwQueryAllTracesA +EtwQueryAllTracesW +EtwQueryTraceA +EtwQueryTraceW +EtwReceiveNotificationsA +EtwReceiveNotificationsW +EtwLogTraceEvent +EtwNotificationRegister +EtwNotificationUnregister +EtwProcessPrivateLoggerRequest +EtwRegisterSecurityProvider +EtwRegisterTraceGuidsA +EtwRegisterTraceGuidsW +EtwStartTraceA +EtwStartTraceW +EtwStopTraceA +EtwStopTraceW +EtwTraceEvent +EtwReplyNotification +EtwSendNotification +EtwSetMark +EtwTraceEventInstance +EtwTraceMessage +EtwTraceMessageVa +EtwUnregisterTraceGuids +EtwUpdateTraceA +EtwUpdateTraceW +EtwpGetTraceBuffer +EtwpSetHWConfigFunction +EtwWriteUMSecurityEvent +EtwpCreateEtwThread +EtwpGetCpuSpeed +EtwpNotificationThread +EvtIntReportAuthzEventAndSourceAsync +EvtIntReportEventAndSourceAsync +ExpInterlockedPopEntrySListEnd +ExpInterlockedPopEntrySListEnd16 +ExpInterlockedPopEntrySListFault +ExpInterlockedPopEntrySListFault16 +ExpInterlockedPopEntrySListResume +ExpInterlockedPopEntrySListResume16 +KiRaiseUserExceptionDispatcher +KiUserApcDispatcher +KiUserCallbackDispatcher +KiUserExceptionDispatcher +LdrAccessOutOfProcessResource +LdrAccessResource +LdrAddLoadAsDataTable +LdrAddRefDll +LdrAlternateResourcesEnabled +LdrCreateOutOfProcessImage +LdrDestroyOutOfProcessImage +LdrDisableThreadCalloutsForDll +LdrEnumResources +LdrEnumerateLoadedModules +LdrFindCreateProcessManifest +LdrFindEntryForAddress +LdrFindResourceDirectory_U +LdrFindResourceEx_U +LdrFindResource_U +LdrFlushAlternateResourceModules +LdrGetDllHandle +LdrGetDllHandleByMapping +LdrGetDllHandleByName +LdrGetDllHandleEx +LdrGetFailureData +LdrGetFileNameFromLoadAsDataTable +LdrGetKnownDllSectionHandle +LdrGetProcedureAddress +LdrGetProcedureAddressEx +LdrHotPatchRoutine +LdrInitShimEngineDynamic +LdrInitializeThunk +LdrLoadAlternateResourceModule +LdrLoadAlternateResourceModuleEx +LdrLoadDll +LdrLockLoaderLock +LdrOpenImageFileOptionsKey +LdrProcessInitializationComplete +LdrProcessRelocationBlock +LdrQueryImageFileExecutionOptions +LdrQueryImageFileExecutionOptionsEx +LdrQueryImageFileKeyOption +LdrQueryModuleServiceTags +LdrQueryProcessModuleInformation +LdrRegisterDllNotification +LdrRemoveLoadAsDataTable +LdrResFindResource +LdrResFindResourceDirectory +LdrResGetRCConfig +LdrResRelease +LdrResSearchResource +LdrRscIsTypeExist +LdrSetAppCompatDllRedirectionCallback +LdrSetDllManifestProber +LdrSetMUICacheType +LdrShutdownProcess +LdrShutdownThread +LdrUnloadAlternateResourceModule +LdrUnloadAlternateResourceModuleEx +LdrUnloadDll +LdrUnlockLoaderLock +LdrUnregisterDllNotification +LdrVerifyImageMatchesChecksum +LdrVerifyImageMatchesChecksumEx +LdrpResGetMappingSize +LdrpResGetResourceDirectory +MD4Final +MD4Init +MD4Update +MD5Final +MD5Init +MD5Update +NlsAnsiCodePage DATA +NlsMbCodePageTag DATA +NlsMbOemCodePageTag DATA +NtAcceptConnectPort +NtAccessCheck +NtAccessCheckAndAuditAlarm +NtAccessCheckByType +NtAccessCheckByTypeAndAuditAlarm +NtAccessCheckByTypeResultList +NtAccessCheckByTypeResultListAndAuditAlarm +NtAccessCheckByTypeResultListAndAuditAlarmByHandle +NtAddAtom +NtAddBootEntry +NtAddDriverEntry +NtAdjustGroupsToken +NtAdjustPrivilegesToken +NtAlertResumeThread +NtAlertThread +NtAllocateLocallyUniqueId +NtAllocateReserveObject +NtAllocateUserPhysicalPages +NtAllocateUuids +NtAllocateVirtualMemory +NtAlpcAcceptConnectPort +NtAlpcCancelMessage +NtAlpcConnectPort +NtAlpcCreatePort +NtAlpcCreatePortSection +NtAlpcCreateResourceReserve +NtAlpcCreateSectionView +NtAlpcCreateSecurityContext +NtAlpcDeletePortSection +NtAlpcDeleteResourceReserve +NtAlpcDeleteSectionView +NtAlpcDeleteSecurityContext +NtAlpcDisconnectPort +NtAlpcImpersonateClientOfPort +NtAlpcOpenSenderProcess +NtAlpcOpenSenderThread +NtAlpcQueryInformation +NtAlpcQueryInformationMessage +NtAlpcRevokeSecurityContext +NtAlpcSendWaitReceivePort +NtAlpcSetInformation +NtApphelpCacheControl +NtAreMappedFilesTheSame +NtAssignProcessToJobObject +NtCallbackReturn +NtCancelDeviceWakeupRequest +NtCancelIoFile +NtCancelIoFileEx +NtCancelSynchronousIoFile +NtCancelTimer +NtClearEvent +NtClose +NtCloseObjectAuditAlarm +NtCommitComplete +NtCommitEnlistment +NtCommitTransaction +NtCompactKeys +NtCompareTokens +NtCompleteConnectPort +NtCompressKey +NtConnectPort +NtContinue +NtCreateDebugObject +NtCreateDirectoryObject +NtCreateEnlistment +NtCreateEvent +NtCreateEventPair +NtCreateFile +NtCreateIoCompletion +NtCreateJobObject +NtCreateJobSet +NtCreateKey +NtCreateKeyTransacted +NtCreateKeyedEvent +NtCreateMailslotFile +NtCreateMutant +NtCreateNamedPipeFile +NtCreatePagingFile +NtCreatePort +NtCreatePrivateNamespace +NtCreateProcess +NtCreateProcessEx +NtCreateProfile +NtCreateProfileEx +NtCreateResourceManager +NtCreateSection +NtCreateSemaphore +NtCreateSymbolicLinkObject +NtCreateThread +NtCreateThreadEx +NtCreateTimer +NtCreateToken +NtCreateTransaction +NtCreateTransactionManager +NtCreateUserProcess +NtCreateWaitablePort +NtCreateWorkerFactory +NtDebugActiveProcess +NtDebugContinue +NtDelayExecution +NtDeleteAtom +NtDeleteBootEntry +NtDeleteDriverEntry +NtDeleteFile +NtDeleteKey +NtDeleteObjectAuditAlarm +NtDeletePrivateNamespace +NtDeleteValueKey +NtDeviceIoControlFile +NtDisableLastKnownGood +NtDisplayString +NtDrawText +NtDuplicateObject +NtDuplicateToken +NtEnableLastKnownGood +NtEnumerateBootEntries +NtEnumerateDriverEntries +NtEnumerateKey +NtEnumerateSystemEnvironmentValuesEx +NtEnumerateTransactionObject +NtEnumerateValueKey +NtExtendSection +NtFilterToken +NtFindAtom +NtFlushBuffersFile +NtFlushInstallUILanguage +NtFlushInstructionCache +NtFlushKey +NtFlushProcessWriteBuffers +NtFlushVirtualMemory +NtFlushWriteBuffer +NtFreeUserPhysicalPages +NtFreeVirtualMemory +NtFreezeRegistry +NtFreezeTransactions +NtFsControlFile +NtGetContextThread +NtGetCurrentProcessorNumber +NtGetDevicePowerState +NtGetMUIRegistryInfo +NtGetNextProcess +NtGetNextThread +NtGetNlsSectionPtr +NtGetNotificationResourceManager +NtGetPlugPlayEvent +NtGetTickCount +NtGetWriteWatch +NtImpersonateAnonymousToken +NtImpersonateClientOfPort +NtImpersonateThread +NtInitializeNlsFiles +NtInitializeRegistry +NtInitiatePowerAction +NtIsProcessInJob +NtIsSystemResumeAutomatic +NtIsUILanguageComitted +NtListenPort +NtLoadDriver +NtLoadKey +NtLoadKey2 +NtLoadKeyEx +NtLockFile +NtLockProductActivationKeys +NtLockRegistryKey +NtLockVirtualMemory +NtMakePermanentObject +NtMakeTemporaryObject +NtMapCMFModule +NtMapUserPhysicalPages +NtMapUserPhysicalPagesScatter +NtMapViewOfSection +NtModifyBootEntry +NtModifyDriverEntry +NtNotifyChangeDirectoryFile +NtNotifyChangeKey +NtNotifyChangeMultipleKeys +NtNotifyChangeSession +NtOpenDirectoryObject +NtOpenEnlistment +NtOpenEvent +NtOpenEventPair +NtOpenFile +NtOpenIoCompletion +NtOpenJobObject +NtOpenKey +NtOpenKeyEx +NtOpenKeyTransacted +NtOpenKeyTransactedEx +NtOpenKeyedEvent +NtOpenMutant +NtOpenObjectAuditAlarm +NtOpenPrivateNamespace +NtOpenProcess +NtOpenProcessToken +NtOpenProcessTokenEx +NtOpenResourceManager +NtOpenSection +NtOpenSemaphore +NtOpenSession +NtOpenSymbolicLinkObject +NtOpenThread +NtOpenThreadToken +NtOpenThreadTokenEx +NtOpenTimer +NtOpenTransaction +NtOpenTransactionManager +NtPlugPlayControl +NtPowerInformation +NtPrePrepareComplete +NtPrePrepareEnlistment +NtPrepareComplete +NtPrepareEnlistment +NtPrivilegeCheck +NtPrivilegeObjectAuditAlarm +NtPrivilegedServiceAuditAlarm +NtPropagationComplete +NtPropagationFailed +NtProtectVirtualMemory +NtPulseEvent +NtQueryAttributesFile +NtQueryBootEntryOrder +NtQueryBootOptions +NtQueryDebugFilterState +NtQueryDefaultLocale +NtQueryDefaultUILanguage +NtQueryDirectoryFile +NtQueryDirectoryObject +NtQueryDriverEntryOrder +NtQueryEaFile +NtQueryEvent +NtQueryFullAttributesFile +NtQueryInformationAtom +NtQueryInformationEnlistment +NtQueryInformationFile +NtQueryInformationJobObject +NtQueryInformationPort +NtQueryInformationProcess +NtQueryInformationResourceManager +NtQueryInformationThread +NtQueryInformationToken +NtQueryInformationTransaction +NtQueryInformationTransactionManager +NtQueryInformationWorkerFactory +NtQueryInstallUILanguage +NtQueryIntervalProfile +NtQueryIoCompletion +NtQueryKey +NtQueryLicenseValue +NtQueryMultipleValueKey +NtQueryMutant +NtQueryObject +NtQueryOpenSubKeys +NtQueryOpenSubKeysEx +NtQueryPerformanceCounter +NtQueryPortInformationProcess +NtQueryQuotaInformationFile +NtQuerySection +NtQuerySecurityAttributesToken +NtQuerySecurityObject +NtQuerySemaphore +NtQuerySymbolicLinkObject +NtQuerySystemEnvironmentValue +NtQuerySystemEnvironmentValueEx +NtQuerySystemInformation +NtQuerySystemInformationEx +NtQuerySystemTime +NtQueryTimer +NtQueryTimerResolution +NtQueryValueKey +NtQueryVirtualMemory +NtQueryVolumeInformationFile +NtQueueApcThread +NtQueueApcThreadEx +NtRaiseException +NtRaiseHardError +NtReadFile +NtReadFileScatter +NtReadOnlyEnlistment +NtReadRequestData +NtReadVirtualMemory +NtRecoverEnlistment +NtRecoverResourceManager +NtRecoverTransactionManager +NtRegisterProtocolAddressInformation +NtRegisterThreadTerminatePort +NtReleaseKeyedEvent +NtReleaseMutant +NtReleaseSemaphore +NtReleaseWorkerFactoryWorker +NtRemoveIoCompletion +NtRemoveIoCompletionEx +NtRemoveProcessDebug +NtRenameKey +NtRenameTransactionManager +NtReplaceKey +NtReplacePartitionUnit +NtReplyPort +NtReplyWaitReceivePort +NtReplyWaitReceivePortEx +NtReplyWaitReplyPort +NtRequestDeviceWakeup +NtRequestPort +NtRequestWaitReplyPort +NtRequestWakeupLatency +NtResetEvent +NtResetWriteWatch +NtRestoreKey +NtResumeProcess +NtResumeThread +NtRollbackComplete +NtRollbackEnlistment +NtRollbackTransaction +NtRollforwardTransactionManager +NtSaveKey +NtSaveKeyEx +NtSaveMergedKeys +NtSecureConnectPort +NtSerializeBoot +NtSetBootEntryOrder +NtSetBootOptions +NtSetContextThread +NtSetDebugFilterState +NtSetDefaultHardErrorPort +NtSetDefaultLocale +NtSetDefaultUILanguage +NtSetDriverEntryOrder +NtSetEaFile +NtSetEvent +NtSetEventBoostPriority +NtSetHighEventPair +NtSetHighWaitLowEventPair +NtSetInformationDebugObject +NtSetInformationEnlistment +NtSetInformationFile +NtSetInformationJobObject +NtSetInformationKey +NtSetInformationObject +NtSetInformationProcess +NtSetInformationResourceManager +NtSetInformationThread +NtSetInformationToken +NtSetInformationTransaction +NtSetInformationTransactionManager +NtSetInformationWorkerFactory +NtSetIntervalProfile +NtSetIoCompletion +NtSetIoCompletionEx +NtSetLdtEntries +NtSetLowEventPair +NtSetLowWaitHighEventPair +NtSetQuotaInformationFile +NtSetSecurityObject +NtSetSystemEnvironmentValue +NtSetSystemEnvironmentValueEx +NtSetSystemInformation +NtSetSystemPowerState +NtSetSystemTime +NtSetThreadExecutionState +NtSetTimer +NtSetTimerEx +NtSetTimerResolution +NtSetUuidSeed +NtSetValueKey +NtSetVolumeInformationFile +NtShutdownSystem +NtShutdownWorkerFactory +NtSignalAndWaitForSingleObject +NtSinglePhaseReject +NtStartProfile +NtStopProfile +NtSuspendProcess +NtSuspendThread +NtSystemDebugControl +NtTerminateJobObject +NtTerminateProcess +NtTerminateThread +NtTestAlert +NtThawRegistry +NtThawTransactions +NtTraceControl +NtTraceEvent +NtTranslateFilePath +NtUmsThreadYield +NtUnloadDriver +NtUnloadKey +NtUnloadKey2 +NtUnloadKeyEx +NtUnlockFile +NtUnlockVirtualMemory +NtUnmapViewOfSection +NtVdmControl +NtWaitForDebugEvent +NtWaitForKeyedEvent +NtWaitForMultipleObjects +NtWaitForMultipleObjects32 +NtWaitForSingleObject +NtWaitForWorkViaWorkerFactory +NtWaitHighEventPair +NtWaitLowEventPair +NtWorkerFactoryWorkerReady +NtWriteFile +NtWriteFileGather +NtWriteRequestData +NtWriteVirtualMemory +NtYieldExecution +NtdllDefWindowProc_A +NtdllDefWindowProc_W +NtdllDialogWndProc_A +NtdllDialogWndProc_W +PfxFindPrefix +PfxInitialize +PfxInsertPrefix +PfxRemovePrefix +RtlAbortRXact +RtlAbsoluteToSelfRelativeSD +RtlAcquirePebLock +RtlAcquirePrivilege +RtlAcquireReleaseSRWLockExclusive +RtlAcquireResourceExclusive +RtlAcquireResourceShared +RtlAcquireSRWLockExclusive +RtlAcquireSRWLockShared +RtlActivateActivationContext +RtlActivateActivationContextEx +RtlActivateActivationContextUnsafeFast +RtlAddAccessAllowedAce +RtlAddAccessAllowedAceEx +RtlAddAccessAllowedObjectAce +RtlAddAccessDeniedAce +RtlAddAccessDeniedAceEx +RtlAddAccessDeniedObjectAce +RtlAddAce +RtlAddActionToRXact +RtlAddAtomToAtomTable +RtlAddAttributeActionToRXact +RtlAddAuditAccessAce +RtlAddAuditAccessAceEx +RtlAddAuditAccessObjectAce +RtlAddCompoundAce +RtlAddFunctionTable +RtlAddIntegrityLabelToBoundaryDescriptor +RtlAddMandatoryAce +RtlAddRefActivationContext +RtlAddRefMemoryStream +RtlAddSIDToBoundaryDescriptor +RtlAddVectoredContinueHandler +RtlAddVectoredExceptionHandler +RtlAddressInSectionTable +RtlAdjustPrivilege +RtlAllocateActivationContextStack +RtlAllocateAndInitializeSid +RtlAllocateHandle +RtlAllocateHeap +RtlAllocateMemoryBlockLookaside +RtlAllocateMemoryZone +RtlAnsiCharToUnicodeChar +RtlAnsiStringToUnicodeSize +RtlAnsiStringToUnicodeString +RtlAppendAsciizToString +RtlAppendPathElement +RtlAppendStringToString +RtlAppendUnicodeStringToString +RtlAppendUnicodeToString +RtlApplicationVerifierStop +RtlApplyRXact +RtlApplyRXactNoFlush +RtlAreAllAccessesGranted +RtlAreAnyAccessesGranted +RtlAreBitsClear +RtlAreBitsSet +RtlAssert +RtlBarrier +RtlBarrierForDelete +RtlCancelTimer +RtlCaptureContext +RtlCaptureStackBackTrace +RtlCharToInteger +RtlCheckForOrphanedCriticalSections +RtlCheckProcessParameters +RtlCheckRegistryKey +RtlCleanUpTEBLangLists +RtlClearAllBits +RtlClearBits +RtlCloneMemoryStream +RtlCloneUserProcess +RtlCmDecodeMemIoResource +RtlCmEncodeMemIoResource +RtlCommitDebugInfo +RtlCommitMemoryStream +RtlCompactHeap +RtlCompareAltitudes +RtlCompareMemory +RtlCompareMemoryUlong +RtlCompareString +RtlCompareUnicodeString +RtlCompareUnicodeStrings +RtlCompleteProcessCloning +RtlCompressBuffer +RtlComputeCrc32 +RtlComputeImportTableHash +RtlComputePrivatizedDllName_U +RtlConnectToSm +RtlConsoleMultiByteToUnicodeN +RtlContractHashTable +RtlConvertExclusiveToShared +RtlConvertLCIDToString +RtlConvertSharedToExclusive +RtlConvertSidToUnicodeString +RtlConvertToAutoInheritSecurityObject +RtlConvertUiListToApiList +RtlCopyExtendedContext +RtlCopyLuid +RtlCopyLuidAndAttributesArray +RtlCopyMappedMemory +RtlCopyMemory +RtlCopyMemoryNonTemporal +RtlCopyMemoryStreamTo +RtlCopyOutOfProcessMemoryStreamTo +RtlCopySecurityDescriptor +RtlCopySid +RtlCopySidAndAttributesArray +RtlCopyString +RtlCopyUnicodeString +RtlCreateAcl +RtlCreateActivationContext +RtlCreateAndSetSD +RtlCreateAtomTable +RtlCreateBootStatusDataFile +RtlCreateBoundaryDescriptor +RtlCreateEnvironment +RtlCreateEnvironmentEx +RtlCreateHashTable +RtlCreateHeap +RtlCreateMemoryBlockLookaside +RtlCreateMemoryZone +RtlCreateProcessParameters +RtlCreateProcessParametersEx +RtlCreateProcessReflection +RtlCreateQueryDebugBuffer +RtlCreateRegistryKey +RtlCreateSecurityDescriptor +RtlCreateServiceSid +RtlCreateSystemVolumeInformationFolder +RtlCreateTagHeap +RtlCreateTimer +RtlCreateTimerQueue +RtlCreateUmsCompletionList +RtlCreateUmsThread +RtlCreateUmsThreadContext +RtlCreateUnicodeString +RtlCreateUnicodeStringFromAsciiz +RtlCreateUserProcess +RtlCreateUserSecurityObject +RtlCreateUserStack +RtlCreateUserThread +RtlCreateVirtualAccountSid +RtlCultureNameToLCID +RtlCustomCPToUnicodeN +RtlCutoverTimeToSystemTime +RtlDeCommitDebugInfo +RtlDeNormalizeProcessParams +RtlDeactivateActivationContext +RtlDeactivateActivationContextUnsafeFast +RtlDebugPrintTimes +RtlDecodePointer +RtlDecodeSystemPointer +RtlDecompressBuffer +RtlDecompressFragment +RtlDefaultNpAcl +RtlDelete +RtlDeleteAce +RtlDeleteAtomFromAtomTable +RtlDeleteBarrier +RtlDeleteBoundaryDescriptor +RtlDeleteCriticalSection +RtlDeleteElementGenericTable +RtlDeleteElementGenericTableAvl +RtlDeleteFunctionTable +RtlDeleteHashTable +RtlDeleteNoSplay +RtlDeleteRegistryValue +RtlDeleteResource +RtlDeleteSecurityObject +RtlDeleteTimer +RtlDeleteTimerQueue +RtlDeleteTimerQueueEx +RtlDeleteUmsCompletionList +RtlDeleteUmsThreadContext +RtlDequeueUmsCompletionListItems +RtlDeregisterSecureMemoryCacheCallback +RtlDeregisterWait +RtlDeregisterWaitEx +RtlDestroyAtomTable +RtlDestroyEnvironment +RtlDestroyHandleTable +RtlDestroyHeap +RtlDestroyMemoryBlockLookaside +RtlDestroyMemoryZone +RtlDestroyProcessParameters +RtlDestroyQueryDebugBuffer +RtlDetectHeapLeaks +RtlDetermineDosPathNameType_U +RtlDisableThreadProfiling +RtlDllShutdownInProgress +RtlDnsHostNameToComputerName +RtlDoesFileExists_U +RtlDosApplyFileIsolationRedirection_Ustr +RtlDosPathNameToNtPathName_U +RtlDosPathNameToNtPathName_U_WithStatus +RtlDosPathNameToRelativeNtPathName_U +RtlDosPathNameToRelativeNtPathName_U_WithStatus +RtlDosSearchPath_U +RtlDosSearchPath_Ustr +RtlDowncaseUnicodeChar +RtlDowncaseUnicodeString +RtlDumpResource +RtlDuplicateUnicodeString +RtlEmptyAtomTable +RtlEnableEarlyCriticalSectionEventCreation +RtlEnableThreadProfiling +RtlEncodePointer +RtlEncodeSystemPointer +RtlEndEnumerationHashTable +RtlEndWeakEnumerationHashTable +RtlEnterCriticalSection +RtlEnterUmsSchedulingMode +RtlEnumProcessHeaps +RtlEnumerateEntryHashTable +RtlEnumerateGenericTable +RtlEnumerateGenericTableAvl +RtlEnumerateGenericTableLikeADirectory +RtlEnumerateGenericTableWithoutSplaying +RtlEnumerateGenericTableWithoutSplayingAvl +RtlEqualComputerName +RtlEqualDomainName +RtlEqualLuid +RtlEqualPrefixSid +RtlEqualSid +RtlEqualString +RtlEqualUnicodeString +RtlEraseUnicodeString +RtlEthernetAddressToStringA +RtlEthernetAddressToStringW +RtlEthernetStringToAddressA +RtlEthernetStringToAddressW +RtlExecuteUmsThread +RtlExitUserProcess +RtlExitUserThread +RtlExpandEnvironmentStrings +RtlExpandEnvironmentStrings_U +RtlExtendHeap +RtlExpandHashTable +RtlExtendMemoryBlockLookaside +RtlExtendMemoryZone +RtlFillMemory +RtlFinalReleaseOutOfProcessMemoryStream +RtlFindAceByType +RtlFindActivationContextSectionGuid +RtlFindActivationContextSectionString +RtlFindCharInUnicodeString +RtlFindClearBits +RtlFindClearBitsAndSet +RtlFindClearRuns +RtlFindClosestEncodableLength +RtlFindLastBackwardRunClear +RtlFindLeastSignificantBit +RtlFindLongestRunClear +RtlFindMessage +RtlFindMostSignificantBit +RtlFindNextForwardRunClear +RtlFindSetBits +RtlFindSetBitsAndClear +RtlFirstEntrySList +RtlFirstFreeAce +RtlFlsAlloc +RtlFlsFree +RtlFlushSecureMemoryCache +RtlFormatCurrentUserKeyPath +RtlFormatMessage +RtlFormatMessageEx +RtlFreeActivationContextStack +RtlFreeAnsiString +RtlFreeHandle +RtlFreeHeap +RtlFreeMemoryBlockLookaside +RtlFreeOemString +RtlFreeSid +RtlFreeThreadActivationContextStack +RtlFreeUnicodeString +RtlFreeUserThreadStack +RtlFreeUserStack +RtlGUIDFromString +RtlGenerate8dot3Name +RtlGetAce +RtlGetActiveActivationContext +RtlGetCallersAddress +RtlGetCompressionWorkSpaceSize +RtlGetControlSecurityDescriptor +RtlGetCriticalSectionRecursionCount +RtlGetCurrentDirectory_U +RtlGetCurrentPeb +RtlGetCurrentProcessorNumber +RtlGetCurrentProcessorNumberEx +RtlGetCurrentTransaction +RtlGetCurrentUmsThread +RtlGetDaclSecurityDescriptor +RtlGetElementGenericTable +RtlGetElementGenericTableAvl +RtlGetEnabledExtendedFeatures +RtlGetExtendedContextLength +RtlGetExtendedFeaturesMask +RtlGetFileMUIPath +RtlGetFrame +RtlGetFullPathName_U +RtlGetFullPathName_UEx +RtlGetFullPathName_UstrEx +RtlGetFunctionTableListHead +RtlGetGroupSecurityDescriptor +RtlGetIntegerAtom +RtlGetLastNtStatus +RtlGetLastWin32Error +RtlGetLengthWithoutLastFullDosOrNtPathElement +RtlGetLengthWithoutTrailingPathSeperators +RtlGetLocaleFileMappingAddress +RtlGetLongestNtPathLength +RtlGetNativeSystemInformation +RtlGetNextEntryHashTable +RtlGetNextUmsListItem +RtlGetNtGlobalFlags +RtlGetNtProductType +RtlGetNtVersionNumbers +RtlGetOwnerSecurityDescriptor +RtlGetParentLocaleName +RtlGetProcessHeaps +RtlGetProcessPreferredUILanguages +RtlGetProductInfo +RtlGetSaclSecurityDescriptor +RtlGetSecurityDescriptorRMControl +RtlGetSetBootStatusData +RtlGetSystemPreferredUILanguages +RtlGetThreadErrorMode +RtlGetThreadLangIdByIndex +RtlGetThreadPreferredUILanguages +RtlGetUILanguageInfo +RtlGetUmsCompletionListEvent +RtlGetUnloadEventTrace +RtlGetUnloadEventTraceEx +RtlGetUserInfoHeap +RtlGetUserPreferredUILanguages +RtlGetVersion +RtlHashUnicodeString +RtlHeapTrkInitialize +RtlIdentifierAuthoritySid +RtlIdnToAscii +RtlIdnToNameprepUnicode +RtlIdnToUnicode +RtlImageDirectoryEntryToData +RtlImageNtHeader +RtlImageNtHeaderEx +RtlImageRvaToSection +RtlImageRvaToVa +RtlImpersonateSelf +RtlImpersonateSelfEx +RtlInitAnsiString +RtlInitAnsiStringEx +RtlInitBarrier +RtlInitCodePageTable +RtlInitEnumerationHashTable +RtlInitMemoryStream +RtlInitNlsTables +RtlInitOutOfProcessMemoryStream +RtlInitString +RtlInitUnicodeString +RtlInitUnicodeStringEx +RtlInitWeakEnumerationHashTable +RtlInitializeAtomPackage +RtlInitializeBitMap +RtlInitializeConditionVariable +RtlInitializeContext +RtlInitializeCriticalSection +RtlInitializeCriticalSectionAndSpinCount +RtlInitializeCriticalSectionEx +RtlInitializeExtendedContext +RtlInitializeGenericTable +RtlInitializeGenericTableAvl +RtlInitializeHandleTable +RtlInitializeNtUserPfn +RtlInitializeRXact +RtlInitializeResource +RtlInitializeSListHead +RtlInitializeSRWLock +RtlInitializeSid +RtlInsertElementGenericTable +RtlInsertElementGenericTableAvl +RtlInsertElementGenericTableFull +RtlInsertElementGenericTableFullAvl +RtlInsertEntryHashTable +RtlInstallFunctionTableCallback +RtlInt64ToUnicodeString +RtlIntegerToChar +RtlIntegerToUnicodeString +RtlInterlockedClearBitRun +RtlInterlockedFlushSList +RtlInterlockedPopEntrySList +RtlInterlockedPushEntrySList +RtlInterlockedPushListSList +RtlInterlockedSetBitRun +RtlIoDecodeMemIoResource +RtlIoEncodeMemIoResource +RtlIpv4AddressToStringA +RtlIpv4AddressToStringExA +RtlIpv4AddressToStringExW +RtlIpv4AddressToStringW +RtlIpv4StringToAddressA +RtlIpv4StringToAddressExA +RtlIpv4StringToAddressExW +RtlIpv4StringToAddressW +RtlIpv6AddressToStringA +RtlIpv6AddressToStringExA +RtlIpv6AddressToStringExW +RtlIpv6AddressToStringW +RtlIpv6StringToAddressA +RtlIpv6StringToAddressExA +RtlIpv6StringToAddressExW +RtlIpv6StringToAddressW +RtlIsActivationContextActive +RtlIsCriticalSectionLocked +RtlIsCriticalSectionLockedByThread +RtlIsCurrentThreadAttachExempt +RtlIsDosDeviceName_U +RtlIsGenericTableEmpty +RtlIsGenericTableEmptyAvl +RtlIsNameInExpression +RtlIsNameLegalDOS8Dot3 +RtlIsNormalizedString +RtlIsTextUnicode +RtlIsThreadWithinLoaderCallout +RtlIsValidHandle +RtlIsValidIndexHandle +RtlIsValidLocaleName +RtlKnownExceptionFilter +RtlLCIDToCultureName +RtlLargeIntegerToChar +RtlLcidToLocaleName +RtlLeaveCriticalSection +RtlLengthRequiredSid +RtlLengthSecurityDescriptor +RtlLengthSid +RtlLoadString +RtlLocalTimeToSystemTime +RtlLocaleNameToLcid +RtlLocateExtendedFeature +RtlLocateLegacyContext +RtlLockBootStatusData +RtlLockCurrentThread +RtlLockHeap +RtlLockMemoryBlockLookaside +RtlLockMemoryStreamRegion +RtlLockMemoryZone +RtlLockModuleSection +RtlLogStackBackTrace +RtlLookupAtomInAtomTable +RtlLookupElementGenericTable +RtlLookupElementGenericTableAvl +RtlLookupElementGenericTableFull +RtlLookupElementGenericTableFullAvl +RtlLookupEntryHashTable +RtlLookupFunctionEntry +RtlLookupFunctionTable +RtlMakeSelfRelativeSD +RtlMapGenericMask +RtlMapSecurityErrorToNtStatus +RtlMoveMemory +RtlMultiAppendUnicodeStringBuffer +RtlMultiByteToUnicodeN +RtlMultiByteToUnicodeSize +RtlMultipleAllocateHeap +RtlMultipleFreeHeap +RtlNewInstanceSecurityObject +RtlNewSecurityGrantedAccess +RtlNewSecurityObject +RtlNewSecurityObjectEx +RtlNewSecurityObjectWithMultipleInheritance +RtlNormalizeProcessParams +RtlNormalizeString +RtlNtPathNameToDosPathName +RtlNtStatusToDosError +RtlNtStatusToDosErrorNoTeb +RtlNtdllName DATA +RtlNumberGenericTableElements +RtlNumberGenericTableElementsAvl +RtlNumberOfClearBits +RtlNumberOfSetBits +RtlNumberOfSetBitsUlongPtr +RtlOemStringToUnicodeSize +RtlOemStringToUnicodeString +RtlOemToUnicodeN +RtlOpenCurrentUser +RtlOwnerAcesPresent +RtlPcToFileHeader +RtlPinAtomInAtomTable +RtlPopFrame +RtlPrefixString +RtlPrefixUnicodeString +RtlPrepareForProcessCloning +RtlProcessFlsData +RtlProtectHeap +RtlPushFrame +RtlQueryActivationContextApplicationSettings +RtlQueryAtomInAtomTable +RtlQueryCriticalSectionOwner +RtlQueryDepthSList +RtlQueryDynamicTimeZoneInformation +RtlQueryElevationFlags +RtlQueryEnvironmentVariable +RtlQueryEnvironmentVariable_U +RtlQueryHeapInformation +RtlQueryInformationAcl +RtlQueryInformationActivationContext +RtlQueryInformationActiveActivationContext +RtlQueryInterfaceMemoryStream +RtlQueryModuleInformation +RtlQueryPerformanceCounter +RtlQueryPerformanceFrequency +RtlQueryProcessBackTraceInformation +RtlQueryProcessDebugInformation +RtlQueryProcessHeapInformation +RtlQueryProcessLockInformation +RtlQueryRegistryValues +RtlQuerySecurityObject +RtlQueryTagHeap +RtlQueryThreadProfiling +RtlQueryTimeZoneInformation +RtlQueryUmsThreadInformation +RtlQueueApcWow64Thread +RtlQueueWorkItem +RtlRaiseException +RtlRaiseStatus +RtlRandom +RtlRandomEx +RtlReAllocateHeap +RtlReadMemoryStream +RtlReadOutOfProcessMemoryStream +RtlReadThreadProfilingData +RtlRealPredecessor +RtlRealSuccessor +RtlRegisterSecureMemoryCacheCallback +RtlRegisterThreadWithCsrss +RtlRegisterWait +RtlReleaseActivationContext +RtlReleaseMemoryStream +RtlReleasePebLock +RtlReleasePrivilege +RtlReleaseRelativeName +RtlReleaseResource +RtlReleaseSRWLockExclusive +RtlReleaseSRWLockShared +RtlRemoteCall +RtlRemoveEntryHashTable +RtlRemovePrivileges +RtlRemoveVectoredContinueHandler +RtlRemoveVectoredExceptionHandler +RtlReplaceSidInSd +RtlReportException +RtlReportSilentProcessExit +RtlReportSqmEscalation +RtlResetMemoryBlockLookaside +RtlResetMemoryZone +RtlResetRtlTranslations +RtlRestoreContext +RtlRestoreLastWin32Error +RtlRetrieveNtUserPfn +RtlRevertMemoryStream +RtlRunDecodeUnicodeString +RtlRunEncodeUnicodeString +RtlRunOnceBeginInitialize +RtlRunOnceComplete +RtlRunOnceExecuteOnce +RtlRunOnceInitialize +RtlSecondsSince1970ToTime +RtlSecondsSince1980ToTime +RtlSeekMemoryStream +RtlSelfRelativeToAbsoluteSD +RtlSelfRelativeToAbsoluteSD2 +RtlSendMsgToSm +RtlSetAllBits +RtlSetAttributesSecurityDescriptor +RtlSetBits +RtlSetControlSecurityDescriptor +RtlSetCriticalSectionSpinCount +RtlSetCurrentDirectory_U +RtlSetCurrentEnvironment +RtlSetCurrentTransaction +RtlSetDaclSecurityDescriptor +RtlSetDynamicTimeZoneInformation +RtlSetEnvironmentStrings +RtlSetEnvironmentVar +RtlSetEnvironmentVariable +RtlSetExtendedFeaturesMask +RtlSetGroupSecurityDescriptor +RtlSetHeapInformation +RtlSetInformationAcl +RtlSetIoCompletionCallback +RtlSetLastWin32Error +RtlSetLastWin32ErrorAndNtStatusFromNtStatus +RtlSetMemoryStreamSize +RtlSetOwnerSecurityDescriptor +RtlSetProcessDebugInformation +RtlSetProcessIsCritical +RtlSetProcessPreferredUILanguages +RtlSetSaclSecurityDescriptor +RtlSetSecurityDescriptorRMControl +RtlSetSecurityObject +RtlSetSecurityObjectEx +RtlSetThreadErrorMode +RtlSetThreadIsCritical +RtlSetThreadPoolStartFunc +RtlSetThreadPreferredUILanguages +RtlSetTimeZoneInformation +RtlSetTimer +RtlSetUmsThreadInformation +RtlSetUnhandledExceptionFilter +RtlSetUnicodeCallouts +RtlSetUserFlagsHeap +RtlSetUserValueHeap +RtlSidDominates +RtlSidEqualLevel +RtlSidHashInitialize +RtlSidHashLookup +RtlSidIsHigherLevel +RtlSizeHeap +RtlSleepConditionVariableCS +RtlSleepConditionVariableSRW +RtlSplay +RtlStartRXact +RtlStatMemoryStream +RtlStringFromGUID +RtlSubAuthorityCountSid +RtlSubAuthoritySid +RtlSubtreePredecessor +RtlSubtreeSuccessor +RtlSystemTimeToLocalTime +RtlTestBit +RtlTimeFieldsToTime +RtlTimeToElapsedTimeFields +RtlTimeToSecondsSince1970 +RtlTimeToSecondsSince1980 +RtlTimeToTimeFields +RtlTraceDatabaseAdd +RtlTraceDatabaseCreate +RtlTraceDatabaseDestroy +RtlTraceDatabaseEnumerate +RtlTraceDatabaseFind +RtlTraceDatabaseLock +RtlTraceDatabaseUnlock +RtlTraceDatabaseValidate +RtlTryAcquirePebLock +RtlTryAcquireSRWLockExclusive +RtlTryAcquireSRWLockShared +RtlTryEnterCriticalSection +RtlUTF8ToUnicodeN +RtlUmsThreadYield +RtlUnhandledExceptionFilter +RtlUnhandledExceptionFilter2 +RtlUnicodeStringToAnsiSize +RtlUnicodeStringToAnsiString +RtlUnicodeStringToCountedOemString +RtlUnicodeStringToInteger +RtlUnicodeStringToOemSize +RtlUnicodeStringToOemString +RtlUnicodeToCustomCPN +RtlUnicodeToMultiByteN +RtlUnicodeToMultiByteSize +RtlUnicodeToOemN +RtlUnicodeToUTF8N +RtlUniform +RtlUnlockBootStatusData +RtlUnlockCurrentThread +RtlUnlockHeap +RtlUnlockMemoryBlockLookaside +RtlUnlockMemoryStreamRegion +RtlUnlockMemoryZone +RtlUnlockModuleSection +RtlUnwind +RtlUnwindEx +RtlUpcaseUnicodeChar +RtlUpcaseUnicodeString +RtlUpcaseUnicodeStringToAnsiString +RtlUpcaseUnicodeStringToCountedOemString +RtlUpcaseUnicodeStringToOemString +RtlUpcaseUnicodeToCustomCPN +RtlUpcaseUnicodeToMultiByteN +RtlUpcaseUnicodeToOemN +RtlUpdateClonedCriticalSection +RtlUpdateClonedSRWLock +RtlUpdateTimer +RtlUpperChar +RtlUpperString +RtlUsageHeap +RtlUserThreadStart +RtlValidAcl +RtlValidRelativeSecurityDescriptor +RtlValidSecurityDescriptor +RtlValidSid +RtlValidateHeap +RtlValidateProcessHeaps +RtlValidateUnicodeString +RtlVerifyVersionInfo +RtlVirtualUnwind +RtlWakeAllConditionVariable +RtlWakeConditionVariable +RtlWalkFrameChain +RtlWalkHeap +RtlWeaklyEnumerateEntryHashTable +RtlWerpReportException +RtlWow64CallFunction64 +RtlWow64EnableFsRedirection +RtlWow64EnableFsRedirectionEx +RtlWow64GetThreadContext +RtlWow64GetThreadSelectorEntry +RtlWow64LogMessageInEventLogger +RtlWow64SetThreadContext +RtlWow64SuspendThread +RtlWriteMemoryStream +RtlWriteRegistryValue +RtlZeroHeap +RtlZeroMemory +RtlZombifyActivationContext +RtlpApplyLengthFunction +RtlpCheckDynamicTimeZoneInformation +RtlpCleanupRegistryKeys +RtlpConvertCultureNamesToLCIDs +RtlpConvertLCIDsToCultureNames +RtlpCreateProcessRegistryInfo +RtlpEnsureBufferSize +RtlpExecuteUmsThread +RtlpGetLCIDFromLangInfoNode +RtlpGetNameFromLangInfoNode +RtlpGetSystemDefaultUILanguage +RtlpGetUserOrMachineUILanguage4NLS +RtlpInitializeLangRegistryInfo +RtlpIsQualifiedLanguage +RtlpLoadMachineUIByPolicy +RtlpLoadUserUIByPolicy +RtlpMuiFreeLangRegistryInfo +RtlpMuiRegCreateRegistryInfo +RtlpMuiRegFreeRegistryInfo +RtlpMuiRegLoadRegistryInfo +RtlpNotOwnerCriticalSection +RtlpNtCreateKey +RtlpNtEnumerateSubKey +RtlpNtMakeTemporaryKey +RtlpNtOpenKey +RtlpNtQueryValueKey +RtlpNtSetValueKey +RtlpQueryDefaultUILanguage +RtlpQueryProcessDebugInformationFromWow64 +RtlpRefreshCachedUILanguage +RtlpSetInstallLanguage +RtlpSetPreferredUILanguages +RtlpSetUserPreferredUILanguages +RtlpUmsExecuteYieldThreadEnd +RtlpUmsThreadYield +RtlpUnWaitCriticalSection +RtlpVerifyAndCommitUILanguageSettings +RtlpWaitForCriticalSection +RtlxAnsiStringToUnicodeSize +RtlxOemStringToUnicodeSize +RtlxUnicodeStringToAnsiSize +RtlxUnicodeStringToOemSize +SbExecuteProcedure +SbSelectProcedure +ShipAssert +ShipAssertGetBufferInfo +ShipAssertMsgA +ShipAssertMsgW +TpAllocAlpcCompletion +TpAllocAlpcCompletionEx +TpAllocCleanupGroup +TpAllocIoCompletion +TpAllocPool +TpAllocTimer +TpAllocWait +TpAllocWork +TpAlpcRegisterCompletionList +TpAlpcUnregisterCompletionList +TpCallbackIndependent +TpCallbackLeaveCriticalSectionOnCompletion +TpCallbackMayRunLong +TpCallbackReleaseMutexOnCompletion +TpCallbackReleaseSemaphoreOnCompletion +TpCallbackSetEventOnCompletion +TpCallbackUnloadDllOnCompletion +TpCancelAsyncIoOperation +TpCaptureCaller +TpCheckTerminateWorker +TpDbgDumpHeapUsage +TpDbgGetFreeInfo +TpDbgSetLogRoutine +TpDisablePoolCallbackChecks +TpDisassociateCallback +TpIsTimerSet +TpPoolFreeUnusedNodes +TpPostWork +TpQueryPoolStackInformation +TpReleaseAlpcCompletion +TpReleaseCleanupGroup +TpReleaseCleanupGroupMembers +TpReleaseIoCompletion +TpReleasePool +TpReleaseTimer +TpReleaseWait +TpReleaseWork +TpSetDefaultPoolMaxThreads +TpSetDefaultPoolStackInformation +TpSetPoolMaxThreads +TpSetPoolMinThreads +TpSetPoolStackInformation +TpSetTimer +TpSetWait +TpSimpleTryPost +TpStartAsyncIoOperation +TpWaitForAlpcCompletion +TpWaitForIoCompletion +TpWaitForTimer +TpWaitForWait +TpWaitForWork +VerSetConditionMask +WerReportSQMEvent +WinSqmAddToAverageDWORD +WinSqmAddToStream +WinSqmAddToStreamEx +WinSqmCheckEscalationAddToStreamEx +WinSqmCheckEscalationSetDWORD +WinSqmCheckEscalationSetDWORD64 +WinSqmCheckEscalationSetString +WinSqmCommonDatapointDelete +WinSqmCommonDatapointSetDWORD +WinSqmCommonDatapointSetDWORD64 +WinSqmCommonDatapointSetStreamEx +WinSqmCommonDatapointSetString +WinSqmEndSession +WinSqmEventEnabled +WinSqmEventWrite +WinSqmGetEscalationRuleStatus +WinSqmGetInstrumentationProperty +WinSqmIncrementDWORD +WinSqmIsOptedIn +WinSqmIsOptedInEx +WinSqmSetDWORD +WinSqmSetDWORD64 +WinSqmSetEscalationInfo +WinSqmSetIfMaxDWORD +WinSqmSetIfMinDWORD +WinSqmSetString +WinSqmStartSession +ZwAcceptConnectPort +ZwAccessCheck +ZwAccessCheckAndAuditAlarm +ZwAccessCheckByType +ZwAccessCheckByTypeAndAuditAlarm +ZwAccessCheckByTypeResultList +ZwAccessCheckByTypeResultListAndAuditAlarm +ZwAccessCheckByTypeResultListAndAuditAlarmByHandle +ZwAddAtom +ZwAddBootEntry +ZwAddDriverEntry +ZwAdjustGroupsToken +ZwAdjustPrivilegesToken +ZwAlertResumeThread +ZwAlertThread +ZwAllocateLocallyUniqueId +ZwAllocateReserveObject +ZwAllocateUserPhysicalPages +ZwAllocateUuids +ZwAllocateVirtualMemory +ZwAlpcAcceptConnectPort +ZwAlpcCancelMessage +ZwAlpcConnectPort +ZwAlpcCreatePort +ZwAlpcCreatePortSection +ZwAlpcCreateResourceReserve +ZwAlpcCreateSectionView +ZwAlpcCreateSecurityContext +ZwAlpcDeletePortSection +ZwAlpcDeleteResourceReserve +ZwAlpcDeleteSectionView +ZwAlpcDeleteSecurityContext +ZwAlpcDisconnectPort +ZwAlpcImpersonateClientOfPort +ZwAlpcOpenSenderProcess +ZwAlpcOpenSenderThread +ZwAlpcQueryInformation +ZwAlpcQueryInformationMessage +ZwAlpcRevokeSecurityContext +ZwAlpcSendWaitReceivePort +ZwAlpcSetInformation +ZwApphelpCacheControl +ZwAreMappedFilesTheSame +ZwAssignProcessToJobObject +ZwCallbackReturn +ZwCancelDeviceWakeupRequest +ZwCancelIoFile +ZwCancelIoFileEx +ZwCancelSynchronousIoFile +ZwCancelTimer +ZwClearEvent +ZwClose +ZwCloseObjectAuditAlarm +ZwCommitComplete +ZwCommitEnlistment +ZwCommitTransaction +ZwCompactKeys +ZwCompareTokens +ZwCompleteConnectPort +ZwCompressKey +ZwConnectPort +ZwContinue +ZwCreateDebugObject +ZwCreateDirectoryObject +ZwCreateEnlistment +ZwCreateEvent +ZwCreateEventPair +ZwCreateFile +ZwCreateIoCompletion +ZwCreateJobObject +ZwCreateJobSet +ZwCreateKey +ZwCreateKeyTransacted +ZwCreateKeyedEvent +ZwCreateMailslotFile +ZwCreateMutant +ZwCreateNamedPipeFile +ZwCreatePagingFile +ZwCreatePort +ZwCreatePrivateNamespace +ZwCreateProcess +ZwCreateProcessEx +ZwCreateProfile +ZwCreateProfileEx +ZwCreateResourceManager +ZwCreateSection +ZwCreateSemaphore +ZwCreateSymbolicLinkObject +ZwCreateThread +ZwCreateThreadEx +ZwCreateTimer +ZwCreateToken +ZwCreateTransaction +ZwCreateTransactionManager +ZwCreateUserProcess +ZwCreateWaitablePort +ZwCreateWorkerFactory +ZwDebugActiveProcess +ZwDebugContinue +ZwDelayExecution +ZwDeleteAtom +ZwDeleteBootEntry +ZwDeleteDriverEntry +ZwDeleteFile +ZwDeleteKey +ZwDeleteObjectAuditAlarm +ZwDeletePrivateNamespace +ZwDeleteValueKey +ZwDeviceIoControlFile +ZwDisableLastKnownGood +ZwDisplayString +ZwDrawText +ZwDuplicateObject +ZwDuplicateToken +ZwEnableLastKnownGood +ZwEnumerateBootEntries +ZwEnumerateDriverEntries +ZwEnumerateKey +ZwEnumerateSystemEnvironmentValuesEx +ZwEnumerateTransactionObject +ZwEnumerateValueKey +ZwExtendSection +ZwFilterToken +ZwFindAtom +ZwFlushBuffersFile +ZwFlushInstallUILanguage +ZwFlushInstructionCache +ZwFlushKey +ZwFlushProcessWriteBuffers +ZwFlushVirtualMemory +ZwFlushWriteBuffer +ZwFreeUserPhysicalPages +ZwFreeVirtualMemory +ZwFreezeRegistry +ZwFreezeTransactions +ZwFsControlFile +ZwGetContextThread +ZwGetCurrentProcessorNumber +ZwGetDevicePowerState +ZwGetMUIRegistryInfo +ZwGetNextProcess +ZwGetNextThread +ZwGetNlsSectionPtr +ZwGetNotificationResourceManager +ZwGetPlugPlayEvent +ZwGetWriteWatch +ZwImpersonateAnonymousToken +ZwImpersonateClientOfPort +ZwImpersonateThread +ZwInitializeNlsFiles +ZwInitializeRegistry +ZwInitiatePowerAction +ZwIsProcessInJob +ZwIsSystemResumeAutomatic +ZwIsUILanguageComitted +ZwListenPort +ZwLoadDriver +ZwLoadKey +ZwLoadKey2 +ZwLoadKeyEx +ZwLockFile +ZwLockProductActivationKeys +ZwLockRegistryKey +ZwLockVirtualMemory +ZwMakePermanentObject +ZwMakeTemporaryObject +ZwMapCMFModule +ZwMapUserPhysicalPages +ZwMapUserPhysicalPagesScatter +ZwMapViewOfSection +ZwModifyBootEntry +ZwModifyDriverEntry +ZwNotifyChangeDirectoryFile +ZwNotifyChangeKey +ZwNotifyChangeMultipleKeys +ZwNotifyChangeSession +ZwOpenDirectoryObject +ZwOpenEnlistment +ZwOpenEvent +ZwOpenEventPair +ZwOpenFile +ZwOpenIoCompletion +ZwOpenJobObject +ZwOpenKey +ZwOpenKeyEx +ZwOpenKeyTransacted +ZwOpenKeyTransactedEx +ZwOpenKeyedEvent +ZwOpenMutant +ZwOpenObjectAuditAlarm +ZwOpenPrivateNamespace +ZwOpenProcess +ZwOpenProcessToken +ZwOpenProcessTokenEx +ZwOpenResourceManager +ZwOpenSection +ZwOpenSemaphore +ZwOpenSession +ZwOpenSymbolicLinkObject +ZwOpenThread +ZwOpenThreadToken +ZwOpenThreadTokenEx +ZwOpenTimer +ZwOpenTransaction +ZwOpenTransactionManager +ZwPlugPlayControl +ZwPowerInformation +ZwPrePrepareComplete +ZwPrePrepareEnlistment +ZwPrepareComplete +ZwPrepareEnlistment +ZwPrivilegeCheck +ZwPrivilegeObjectAuditAlarm +ZwPrivilegedServiceAuditAlarm +ZwPropagationComplete +ZwPropagationFailed +ZwProtectVirtualMemory +ZwPulseEvent +ZwQueryAttributesFile +ZwQueryBootEntryOrder +ZwQueryBootOptions +ZwQueryDebugFilterState +ZwQueryDefaultLocale +ZwQueryDefaultUILanguage +ZwQueryDirectoryFile +ZwQueryDirectoryObject +ZwQueryDriverEntryOrder +ZwQueryEaFile +ZwQueryEvent +ZwQueryFullAttributesFile +ZwQueryInformationAtom +ZwQueryInformationEnlistment +ZwQueryInformationFile +ZwQueryInformationJobObject +ZwQueryInformationPort +ZwQueryInformationProcess +ZwQueryInformationResourceManager +ZwQueryInformationThread +ZwQueryInformationToken +ZwQueryInformationTransaction +ZwQueryInformationTransactionManager +ZwQueryInformationWorkerFactory +ZwQueryInstallUILanguage +ZwQueryIntervalProfile +ZwQueryIoCompletion +ZwQueryKey +ZwQueryLicenseValue +ZwQueryMultipleValueKey +ZwQueryMutant +ZwQueryObject +ZwQueryOpenSubKeys +ZwQueryOpenSubKeysEx +ZwQueryPerformanceCounter +ZwQueryPortInformationProcess +ZwQueryQuotaInformationFile +ZwQuerySection +ZwQuerySecurityAttributesToken +ZwQuerySecurityObject +ZwQuerySemaphore +ZwQuerySymbolicLinkObject +ZwQuerySystemEnvironmentValue +ZwQuerySystemEnvironmentValueEx +ZwQuerySystemInformation +ZwQuerySystemInformationEx +ZwQuerySystemTime +ZwQueryTimer +ZwQueryTimerResolution +ZwQueryValueKey +ZwQueryVirtualMemory +ZwQueryVolumeInformationFile +ZwQueueApcThread +ZwQueueApcThreadEx +ZwRaiseException +ZwRaiseHardError +ZwReadFile +ZwReadFileScatter +ZwReadOnlyEnlistment +ZwReadRequestData +ZwReadVirtualMemory +ZwRecoverEnlistment +ZwRecoverResourceManager +ZwRecoverTransactionManager +ZwRegisterProtocolAddressInformation +ZwRegisterThreadTerminatePort +ZwReleaseKeyedEvent +ZwReleaseMutant +ZwReleaseSemaphore +ZwReleaseWorkerFactoryWorker +ZwRemoveIoCompletion +ZwRemoveIoCompletionEx +ZwRemoveProcessDebug +ZwRenameKey +ZwRenameTransactionManager +ZwReplaceKey +ZwReplacePartitionUnit +ZwReplyPort +ZwReplyWaitReceivePort +ZwReplyWaitReceivePortEx +ZwReplyWaitReplyPort +ZwRequestDeviceWakeup +ZwRequestPort +ZwRequestWaitReplyPort +ZwRequestWakeupLatency +ZwResetEvent +ZwResetWriteWatch +ZwRestoreKey +ZwResumeProcess +ZwResumeThread +ZwRollbackComplete +ZwRollbackEnlistment +ZwRollbackTransaction +ZwRollforwardTransactionManager +ZwSaveKey +ZwSaveKeyEx +ZwSaveMergedKeys +ZwSecureConnectPort +ZwSerializeBoot +ZwSetBootEntryOrder +ZwSetBootOptions +ZwSetContextThread +ZwSetDebugFilterState +ZwSetDefaultHardErrorPort +ZwSetDefaultLocale +ZwSetDefaultUILanguage +ZwSetDriverEntryOrder +ZwSetEaFile +ZwSetEvent +ZwSetEventBoostPriority +ZwSetHighEventPair +ZwSetHighWaitLowEventPair +ZwSetInformationDebugObject +ZwSetInformationEnlistment +ZwSetInformationFile +ZwSetInformationJobObject +ZwSetInformationKey +ZwSetInformationObject +ZwSetInformationProcess +ZwSetInformationResourceManager +ZwSetInformationThread +ZwSetInformationToken +ZwSetInformationTransaction +ZwSetInformationTransactionManager +ZwSetInformationWorkerFactory +ZwSetIntervalProfile +ZwSetIoCompletion +ZwSetIoCompletionEx +ZwSetLdtEntries +ZwSetLowEventPair +ZwSetLowWaitHighEventPair +ZwSetQuotaInformationFile +ZwSetSecurityObject +ZwSetSystemEnvironmentValue +ZwSetSystemEnvironmentValueEx +ZwSetSystemInformation +ZwSetSystemPowerState +ZwSetSystemTime +ZwSetThreadExecutionState +ZwSetTimer +ZwSetTimerEx +ZwSetTimerResolution +ZwSetUuidSeed +ZwSetValueKey +ZwSetVolumeInformationFile +ZwShutdownSystem +ZwShutdownWorkerFactory +ZwSignalAndWaitForSingleObject +ZwSinglePhaseReject +ZwStartProfile +ZwStopProfile +ZwSuspendProcess +ZwSuspendThread +ZwSystemDebugControl +ZwTerminateJobObject +ZwTerminateProcess +ZwTerminateThread +ZwTestAlert +ZwThawRegistry +ZwThawTransactions +ZwTraceControl +ZwTraceEvent +ZwTranslateFilePath +ZwUmsThreadYield +ZwUnloadDriver +ZwUnloadKey +ZwUnloadKey2 +ZwUnloadKeyEx +ZwUnlockFile +ZwUnlockVirtualMemory +ZwUnmapViewOfSection +ZwVdmControl +ZwWaitForDebugEvent +ZwWaitForKeyedEvent +ZwWaitForMultipleObjects +ZwWaitForMultipleObjects32 +ZwWaitForSingleObject +ZwWaitForWorkViaWorkerFactory +ZwWaitHighEventPair +ZwWaitLowEventPair +ZwWorkerFactoryWorkerReady +ZwWriteFile +ZwWriteFileGather +ZwWriteRequestData +ZwWriteVirtualMemory +ZwYieldExecution +__C_specific_handler +;__chkstk +__isascii +__iscsym +__iscsymf +__misaligned_access +__toascii +_atoi64 +_fltused DATA +_i64toa +_i64toa_s +_i64tow +_i64tow_s +_itoa +_itoa_s +_itow +_itow_s +_lfind +_local_unwind +_ltoa +_ltoa_s +_ltow +_ltow_s +_makepath_s +_memccpy +_memicmp +_setjmp +_setjmpex +_snprintf +_snprintf_s +_snscanf_s +_snwprintf +_snwprintf_s +_snwscanf_s +_splitpath +_splitpath_s +_strcmpi +_stricmp +_strlwr +_strnicmp +_strnset_s +_strset_s +_strupr +_tolower +_toupper +_swprintf +_ui64toa +_ui64toa_s +_ui64tow +_ui64tow_s +_ultoa +_ultoa_s +_ultow +_ultow_s +_vscwprintf +_vsnprintf +_vsnprintf_s +_vsnwprintf +_vsnwprintf_s +_vswprintf +_wcsicmp +_wcslwr +_wcsnicmp +_wcsnset_s +_wcsset_s +_wcstoui64 +_wcsupr +_wmakepath_s +_wsplitpath_s +_wtoi +_wtoi64 +_wtol +abs +atan DATA +atoi +atol +bsearch +ceil +cos DATA +fabs DATA +floor DATA +isalnum +isalpha +iscntrl +isdigit +isgraph +islower +isprint +ispunct +isspace +isupper +iswalpha +iswctype +iswdigit +iswlower +iswspace +iswxdigit +isxdigit +labs +log +longjmp DATA +mbstowcs +memchr +memcmp +memcpy +memcpy_s +memmove +memmove_s +memset +pow +qsort +sin +sprintf +sprintf_s +sqrt +sscanf +sscanf_s +strcat +strcat_s +strchr +strcmp +strcpy +strcpy_s +strcspn +strlen +strncat +strncat_s +strncmp +strncpy +strncpy_s +strnlen +strpbrk +strrchr +strspn +strstr +strtok_s +strtol +strtoul +swprintf +swprintf_s +swscanf_s +tan +tolower +toupper +towlower +towupper +vDbgPrintEx +vDbgPrintExWithPrefix +vsprintf +vsprintf_s +vswprintf_s +wcscat +wcscat_s +wcschr +wcscmp +wcscpy +wcscpy_s +wcscspn +wcslen +wcsncat +wcsncat_s +wcsncmp +wcsncpy +wcsncpy_s +wcsnlen +wcspbrk +wcsrchr +wcsspn +wcsstr +wcstol +wcstombs +wcstoul diff --git a/lib/libc/mingw/libarm32/ntdll.def b/lib/libc/mingw/libarm32/ntdll.def new file mode 100644 index 0000000000..13099a9792 --- /dev/null +++ b/lib/libc/mingw/libarm32/ntdll.def @@ -0,0 +1,2165 @@ +; +; Definition file of ntdll.dll +; Automatic generated by gendef +; written by Kai Tietz 2008-2014 +; +LIBRARY "ntdll.dll" +EXPORTS +ord_1 @1 +ord_2 @2 +ord_3 @3 +ord_4 @4 +ord_5 @5 +ord_6 @6 +ord_7 @7 +ord_8 @8 +A_SHAFinal +A_SHAInit +A_SHAUpdate +AlpcAdjustCompletionListConcurrencyCount +AlpcFreeCompletionListMessage +AlpcGetCompletionListLastMessageInformation +AlpcGetCompletionListMessageAttributes +AlpcGetHeaderSize +AlpcGetMessageAttribute +AlpcGetMessageFromCompletionList +AlpcGetOutstandingCompletionListMessageCount +AlpcInitializeMessageAttribute +AlpcMaxAllowedMessageLength +AlpcRegisterCompletionList +AlpcRegisterCompletionListWorkerThread +AlpcRundownCompletionList +AlpcUnregisterCompletionList +AlpcUnregisterCompletionListWorkerThread +ApiSetQueryApiSetPresence +CsrAllocateCaptureBuffer +CsrAllocateMessagePointer +CsrCaptureMessageBuffer +CsrCaptureMessageMultiUnicodeStringsInPlace +CsrCaptureMessageString +CsrCaptureTimeout +CsrClientCallServer +CsrClientConnectToServer +CsrFreeCaptureBuffer +CsrGetProcessId +CsrIdentifyAlertableThread +CsrSetPriorityClass +CsrVerifyRegion +DbgBreakPoint +DbgPrint +DbgPrintEx +DbgPrintReturnControlC +DbgPrompt +DbgQueryDebugFilterState +DbgSetDebugFilterState +DbgUiConnectToDbg +DbgUiContinue +DbgUiConvertStateChangeStructure +DbgUiDebugActiveProcess +DbgUiGetThreadDebugObject +DbgUiIssueRemoteBreakin +DbgUiRemoteBreakin +DbgUiSetThreadDebugObject +DbgUiStopDebugging +DbgUiWaitStateChange +DbgUserBreakPoint +EtwCreateTraceInstanceId +EtwDeliverDataBlock +EtwEnumerateProcessRegGuids +EtwEventActivityIdControl +EtwEventEnabled +EtwEventProviderEnabled +EtwEventRegister +EtwEventSetInformation +EtwEventUnregister +EtwEventWrite +EtwEventWriteEndScenario +EtwEventWriteEx +EtwEventWriteFull +EtwEventWriteNoRegistration +EtwEventWriteStartScenario +EtwEventWriteString +EtwEventWriteTransfer +EtwGetTraceEnableFlags +EtwGetTraceEnableLevel +EtwGetTraceLoggerHandle +EtwLogTraceEvent +EtwNotificationRegister +EtwNotificationUnregister +EtwProcessPrivateLoggerRequest +EtwRegisterSecurityProvider +EtwRegisterTraceGuidsA +EtwRegisterTraceGuidsW +EtwReplyNotification +EtwSendNotification +EtwSetMark +EtwTraceEventInstance +EtwTraceMessage +EtwTraceMessageVa +EtwUnregisterTraceGuids +EtwWriteUMSecurityEvent +EtwpCreateEtwThread +EtwpGetCpuSpeed +EvtIntReportAuthzEventAndSourceAsync +EvtIntReportEventAndSourceAsync +ExpInterlockedPopEntrySListEnd +ExpInterlockedPopEntrySListFault +ExpInterlockedPopEntrySListResume +KiRaiseUserExceptionDispatcher +KiUserApcDispatcher +KiUserCallbackDispatcher +KiUserExceptionDispatcher +KiUserInvertedFunctionTable DATA +LdrAccessResource +LdrAddDllDirectory +LdrAddLoadAsDataTable +LdrAddRefDll +LdrAppxHandleIntegrityFailure +LdrDisableThreadCalloutsForDll +LdrEnumResources +LdrEnumerateLoadedModules +LdrFindEntryForAddress +LdrFindResourceDirectory_U +LdrFindResourceEx_U +LdrFindResource_U +LdrFlushAlternateResourceModules +LdrGetDllDirectory +LdrGetDllFullName +LdrGetDllHandle +LdrGetDllHandleByMapping +LdrGetDllHandleByName +LdrGetDllHandleEx +LdrGetDllPath +LdrGetFailureData +LdrGetFileNameFromLoadAsDataTable +LdrGetProcedureAddress +LdrGetProcedureAddressEx +LdrGetProcedureAddressForCaller +LdrInitShimEngineDynamic +LdrInitializeThunk +LdrLoadAlternateResourceModule +LdrLoadAlternateResourceModuleEx +LdrLoadDll +LdrLockLoaderLock +LdrOpenImageFileOptionsKey +LdrProcessRelocationBlock +LdrProcessRelocationBlockEx +LdrQueryImageFileExecutionOptions +LdrQueryImageFileExecutionOptionsEx +LdrQueryImageFileKeyOption +LdrQueryModuleServiceTags +LdrQueryOptionalDelayLoadedAPI +LdrQueryProcessModuleInformation +LdrRegisterDllNotification +LdrRemoveDllDirectory +LdrRemoveLoadAsDataTable +LdrResFindResource +LdrResFindResourceDirectory +LdrResGetRCConfig +LdrResRelease +LdrResSearchResource +LdrResolveDelayLoadedAPI +LdrResolveDelayLoadsFromDll +LdrRscIsTypeExist +LdrSetAppCompatDllRedirectionCallback +LdrSetDefaultDllDirectories +LdrSetDllDirectory +LdrSetDllManifestProber +LdrSetImplicitPathOptions +LdrSetMUICacheType +LdrShutdownProcess +LdrShutdownThread +LdrStandardizeSystemPath +LdrSystemDllInitBlock DATA +LdrUnloadAlternateResourceModule +LdrUnloadAlternateResourceModuleEx +LdrUnloadDll +LdrUnlockLoaderLock +LdrUnregisterDllNotification +LdrVerifyImageMatchesChecksum +LdrVerifyImageMatchesChecksumEx +LdrpResGetMappingSize +LdrpResGetResourceDirectory +MD4Final +MD4Init +MD4Update +MD5Final +MD5Init +MD5Update +NlsAnsiCodePage DATA +NlsMbCodePageTag DATA +NlsMbOemCodePageTag DATA +NtAcceptConnectPort +NtAccessCheck +NtAccessCheckAndAuditAlarm +NtAccessCheckByType +NtAccessCheckByTypeAndAuditAlarm +NtAccessCheckByTypeResultList +NtAccessCheckByTypeResultListAndAuditAlarm +NtAccessCheckByTypeResultListAndAuditAlarmByHandle +NtAddAtom +NtAddAtomEx +NtAddBootEntry +NtAddDriverEntry +NtAdjustGroupsToken +NtAdjustPrivilegesToken +NtAdjustTokenClaimsAndDeviceGroups +NtAlertResumeThread +NtAlertThread +NtAlertThreadByThreadId +NtAllocateLocallyUniqueId +NtAllocateReserveObject +NtAllocateUserPhysicalPages +NtAllocateUuids +NtAllocateVirtualMemory +NtAlpcAcceptConnectPort +NtAlpcCancelMessage +NtAlpcConnectPort +NtAlpcConnectPortEx +NtAlpcCreatePort +NtAlpcCreatePortSection +NtAlpcCreateResourceReserve +NtAlpcCreateSectionView +NtAlpcCreateSecurityContext +NtAlpcDeletePortSection +NtAlpcDeleteResourceReserve +NtAlpcDeleteSectionView +NtAlpcDeleteSecurityContext +NtAlpcDisconnectPort +NtAlpcImpersonateClientOfPort +NtAlpcOpenSenderProcess +NtAlpcOpenSenderThread +NtAlpcQueryInformation +NtAlpcQueryInformationMessage +NtAlpcRevokeSecurityContext +NtAlpcSendWaitReceivePort +NtAlpcSetInformation +NtApphelpCacheControl +NtAreMappedFilesTheSame +NtAssignProcessToJobObject +NtAssociateWaitCompletionPacket +NtCallbackReturn +NtCancelIoFile +NtCancelIoFileEx +NtCancelSynchronousIoFile +NtCancelTimer +NtCancelTimer2 +NtCancelWaitCompletionPacket +NtClearEvent +NtClose +NtCloseObjectAuditAlarm +NtCommitComplete +NtCommitEnlistment +NtCommitTransaction +NtCompactKeys +NtCompareTokens +NtCompleteConnectPort +NtCompressKey +NtConnectPort +NtContinue +NtCreateDebugObject +NtCreateDirectoryObject +NtCreateDirectoryObjectEx +NtCreateEnlistment +NtCreateEvent +NtCreateEventPair +NtCreateFile +NtCreateIRTimer +NtCreateIoCompletion +NtCreateJobObject +NtCreateJobSet +NtCreateKey +NtCreateKeyTransacted +NtCreateKeyedEvent +NtCreateLowBoxToken +NtCreateMailslotFile +NtCreateMutant +NtCreateNamedPipeFile +NtCreatePagingFile +NtCreatePort +NtCreatePrivateNamespace +NtCreateProcess +NtCreateProcessEx +NtCreateProfile +NtCreateProfileEx +NtCreateResourceManager +NtCreateSection +NtCreateSemaphore +NtCreateSymbolicLinkObject +NtCreateThread +NtCreateThreadEx +NtCreateTimer +NtCreateTimer2 +NtCreateToken +NtCreateTokenEx +NtCreateTransaction +NtCreateTransactionManager +NtCreateUserProcess +NtCreateWaitCompletionPacket +NtCreateWaitablePort +NtCreateWnfStateName +NtCreateWorkerFactory +NtDebugActiveProcess +NtDebugContinue +NtDelayExecution +NtDeleteAtom +NtDeleteBootEntry +NtDeleteDriverEntry +NtDeleteFile +NtDeleteKey +NtDeleteObjectAuditAlarm +NtDeletePrivateNamespace +NtDeleteValueKey +NtDeleteWnfStateData +NtDeleteWnfStateName +NtDeviceIoControlFile +NtDisableLastKnownGood +NtDisplayString +NtDrawText +NtDuplicateObject +NtDuplicateToken +NtEnableLastKnownGood +NtEnumerateBootEntries +NtEnumerateDriverEntries +NtEnumerateKey +NtEnumerateSystemEnvironmentValuesEx +NtEnumerateTransactionObject +NtEnumerateValueKey +NtExtendSection +NtFilterBootOption +NtFilterToken +NtFilterTokenEx +NtFindAtom +NtFlushBuffersFile +NtFlushBuffersFileEx +NtFlushInstallUILanguage +NtFlushInstructionCache +NtFlushKey +NtFlushProcessWriteBuffers +NtFlushVirtualMemory +NtFlushWriteBuffer +NtFreeUserPhysicalPages +NtFreeVirtualMemory +NtFreezeRegistry +NtFreezeTransactions +NtFsControlFile +NtGetCachedSigningLevel +NtGetCompleteWnfStateSubscription +NtGetContextThread +NtGetCurrentProcessorNumber +NtGetDevicePowerState +NtGetMUIRegistryInfo +NtGetNextProcess +NtGetNextThread +NtGetNlsSectionPtr +NtGetNotificationResourceManager +NtGetTickCount +NtGetWriteWatch +NtImpersonateAnonymousToken +NtImpersonateClientOfPort +NtImpersonateThread +NtInitializeNlsFiles +NtInitializeRegistry +NtInitiatePowerAction +NtIsProcessInJob +NtIsSystemResumeAutomatic +NtIsUILanguageComitted +NtListenPort +NtLoadDriver +NtLoadKey +NtLoadKey2 +NtLoadKeyEx +NtLockFile +NtLockProductActivationKeys +NtLockRegistryKey +NtLockVirtualMemory +NtMakePermanentObject +NtMakeTemporaryObject +NtMapCMFModule +NtMapUserPhysicalPages +NtMapUserPhysicalPagesScatter +NtMapViewOfSection +NtModifyBootEntry +NtModifyDriverEntry +NtNotifyChangeDirectoryFile +NtNotifyChangeKey +NtNotifyChangeMultipleKeys +NtNotifyChangeSession +NtOpenDirectoryObject +NtOpenEnlistment +NtOpenEvent +NtOpenEventPair +NtOpenFile +NtOpenIoCompletion +NtOpenJobObject +NtOpenKey +NtOpenKeyEx +NtOpenKeyTransacted +NtOpenKeyTransactedEx +NtOpenKeyedEvent +NtOpenMutant +NtOpenObjectAuditAlarm +NtOpenPrivateNamespace +NtOpenProcess +NtOpenProcessToken +NtOpenProcessTokenEx +NtOpenResourceManager +NtOpenSection +NtOpenSemaphore +NtOpenSession +NtOpenSymbolicLinkObject +NtOpenThread +NtOpenThreadToken +NtOpenThreadTokenEx +NtOpenTimer +NtOpenTransaction +NtOpenTransactionManager +NtPlugPlayControl +NtPowerInformation +NtPrePrepareComplete +NtPrePrepareEnlistment +NtPrepareComplete +NtPrepareEnlistment +NtPrivilegeCheck +NtPrivilegeObjectAuditAlarm +NtPrivilegedServiceAuditAlarm +NtPropagationComplete +NtPropagationFailed +NtProtectVirtualMemory +NtPulseEvent +NtQueryAttributesFile +NtQueryBootEntryOrder +NtQueryBootOptions +NtQueryDebugFilterState +NtQueryDefaultLocale +NtQueryDefaultUILanguage +NtQueryDirectoryFile +NtQueryDirectoryObject +NtQueryDriverEntryOrder +NtQueryEaFile +NtQueryEvent +NtQueryFullAttributesFile +NtQueryInformationAtom +NtQueryInformationEnlistment +NtQueryInformationFile +NtQueryInformationJobObject +NtQueryInformationPort +NtQueryInformationProcess +NtQueryInformationResourceManager +NtQueryInformationThread +NtQueryInformationToken +NtQueryInformationTransaction +NtQueryInformationTransactionManager +NtQueryInformationWorkerFactory +NtQueryInstallUILanguage +NtQueryIntervalProfile +NtQueryIoCompletion +NtQueryKey +NtQueryLicenseValue +NtQueryMultipleValueKey +NtQueryMutant +NtQueryObject +NtQueryOpenSubKeys +NtQueryOpenSubKeysEx +NtQueryPerformanceCounter +NtQueryPortInformationProcess +NtQueryQuotaInformationFile +NtQuerySection +NtQuerySecurityAttributesToken +NtQuerySecurityObject +NtQuerySemaphore +NtQuerySymbolicLinkObject +NtQuerySystemEnvironmentValue +NtQuerySystemEnvironmentValueEx +NtQuerySystemInformation +NtQuerySystemInformationEx +NtQuerySystemTime +NtQueryTimer +NtQueryTimerResolution +NtQueryValueKey +NtQueryVirtualMemory +NtQueryVolumeInformationFile +NtQueryWnfStateData +NtQueryWnfStateNameInformation +NtQueueApcThread +NtQueueApcThreadEx +NtRaiseException +NtRaiseHardError +NtReadFile +NtReadFileScatter +NtReadOnlyEnlistment +NtReadRequestData +NtReadVirtualMemory +NtRecoverEnlistment +NtRecoverResourceManager +NtRecoverTransactionManager +NtRegisterProtocolAddressInformation +NtRegisterThreadTerminatePort +NtReleaseKeyedEvent +NtReleaseMutant +NtReleaseSemaphore +NtReleaseWorkerFactoryWorker +NtRemoveIoCompletion +NtRemoveIoCompletionEx +NtRemoveProcessDebug +NtRenameKey +NtRenameTransactionManager +NtReplaceKey +NtReplacePartitionUnit +NtReplyPort +NtReplyWaitReceivePort +NtReplyWaitReceivePortEx +NtReplyWaitReplyPort +NtRequestPort +NtRequestWaitReplyPort +NtResetEvent +NtResetWriteWatch +NtRestoreKey +NtResumeProcess +NtResumeThread +NtRollbackComplete +NtRollbackEnlistment +NtRollbackTransaction +NtRollforwardTransactionManager +NtSaveKey +NtSaveKeyEx +NtSaveMergedKeys +NtSecureConnectPort +NtSerializeBoot +NtSetBootEntryOrder +NtSetBootOptions +NtSetCachedSigningLevel +NtSetContextThread +NtSetDebugFilterState +NtSetDefaultHardErrorPort +NtSetDefaultLocale +NtSetDefaultUILanguage +NtSetDriverEntryOrder +NtSetEaFile +NtSetEvent +NtSetEventBoostPriority +NtSetHighEventPair +NtSetHighWaitLowEventPair +NtSetIRTimer +NtSetInformationDebugObject +NtSetInformationEnlistment +NtSetInformationFile +NtSetInformationJobObject +NtSetInformationKey +NtSetInformationObject +NtSetInformationProcess +NtSetInformationResourceManager +NtSetInformationThread +NtSetInformationToken +NtSetInformationTransaction +NtSetInformationTransactionManager +NtSetInformationVirtualMemory +NtSetInformationWorkerFactory +NtSetIntervalProfile +NtSetIoCompletion +NtSetIoCompletionEx +NtSetLdtEntries +NtSetLowEventPair +NtSetLowWaitHighEventPair +NtSetQuotaInformationFile +NtSetSecurityObject +NtSetSystemEnvironmentValue +NtSetSystemEnvironmentValueEx +NtSetSystemInformation +NtSetSystemPowerState +NtSetSystemTime +NtSetThreadExecutionState +NtSetTimer +NtSetTimer2 +NtSetTimerEx +NtSetTimerResolution +NtSetUuidSeed +NtSetValueKey +NtSetVolumeInformationFile +NtSetWnfProcessNotificationEvent +NtShutdownSystem +NtShutdownWorkerFactory +NtSignalAndWaitForSingleObject +NtSinglePhaseReject +NtStartProfile +NtStopProfile +NtSubscribeWnfStateChange +NtSuspendProcess +NtSuspendThread +NtSystemDebugControl +NtTerminateJobObject +NtTerminateProcess +NtTerminateThread +NtTestAlert +NtThawRegistry +NtThawTransactions +NtTraceControl +NtTraceEvent +NtTranslateFilePath +NtUmsThreadYield +NtUnloadDriver +NtUnloadKey +NtUnloadKey2 +NtUnloadKeyEx +NtUnlockFile +NtUnlockVirtualMemory +NtUnmapViewOfSection +NtUnmapViewOfSectionEx +NtUnsubscribeWnfStateChange +NtUpdateWnfStateData +NtVdmControl +NtWaitForAlertByThreadId +NtWaitForDebugEvent +NtWaitForKeyedEvent +NtWaitForMultipleObjects +NtWaitForMultipleObjects32 +NtWaitForSingleObject +NtWaitForWorkViaWorkerFactory +NtWaitHighEventPair +NtWaitLowEventPair +NtWorkerFactoryWorkerReady +NtWriteFile +NtWriteFileGather +NtWriteRequestData +NtWriteVirtualMemory +NtYieldExecution +NtdllDefWindowProc_A +NtdllDefWindowProc_W +NtdllDialogWndProc_A +NtdllDialogWndProc_W +PfxFindPrefix +PfxInitialize +PfxInsertPrefix +PfxRemovePrefix +PssNtCaptureSnapshot +PssNtDuplicateSnapshot +PssNtFreeRemoteSnapshot +PssNtFreeSnapshot +PssNtFreeWalkMarker +PssNtQuerySnapshot +PssNtValidateDescriptor +PssNtWalkSnapshot +ReadTimeStampCounter +RtlAbortRXact +RtlAbsoluteToSelfRelativeSD +RtlAcquirePebLock +RtlAcquirePrivilege +RtlAcquireReleaseSRWLockExclusive +RtlAcquireResourceExclusive +RtlAcquireResourceShared +RtlAcquireSRWLockExclusive +RtlAcquireSRWLockShared +RtlActivateActivationContext +RtlActivateActivationContextEx +RtlActivateActivationContextUnsafeFast +RtlAddAccessAllowedAce +RtlAddAccessAllowedAceEx +RtlAddAccessAllowedObjectAce +RtlAddAccessDeniedAce +RtlAddAccessDeniedAceEx +RtlAddAccessDeniedObjectAce +RtlAddAce +RtlAddActionToRXact +RtlAddAtomToAtomTable +RtlAddAttributeActionToRXact +RtlAddAuditAccessAce +RtlAddAuditAccessAceEx +RtlAddAuditAccessObjectAce +RtlAddCompoundAce +RtlAddFunctionTable +RtlAddGrowableFunctionTable +RtlAddIntegrityLabelToBoundaryDescriptor +RtlAddMandatoryAce +RtlAddProcessTrustLabelAce +RtlAddRefActivationContext +RtlAddRefMemoryStream +RtlAddResourceAttributeAce +RtlAddSIDToBoundaryDescriptor +RtlAddScopedPolicyIDAce +RtlAddVectoredContinueHandler +RtlAddVectoredExceptionHandler +RtlAddressInSectionTable +RtlAdjustPrivilege +RtlAllocateActivationContextStack +RtlAllocateAndInitializeSid +RtlAllocateAndInitializeSidEx +RtlAllocateHandle +RtlAllocateHeap +RtlAllocateMemoryBlockLookaside +RtlAllocateMemoryZone +RtlAllocateWnfSerializationGroup +RtlAnsiCharToUnicodeChar +RtlAnsiStringToUnicodeSize +RtlAnsiStringToUnicodeString +RtlAppendAsciizToString +RtlAppendPathElement +RtlAppendStringToString +RtlAppendUnicodeStringToString +RtlAppendUnicodeToString +RtlApplicationVerifierStop +RtlApplyRXact +RtlApplyRXactNoFlush +RtlAppxIsFileOwnedByTrustedInstaller +RtlAreAllAccessesGranted +RtlAreAnyAccessesGranted +RtlAreBitsClear +RtlAreBitsSet +RtlAssert +RtlAvlInsertNodeEx +RtlAvlRemoveNode +RtlBarrier +RtlBarrierForDelete +RtlCancelTimer +RtlCanonicalizeDomainName +RtlCaptureContext +RtlCaptureStackBackTrace +RtlCharToInteger +RtlCheckForOrphanedCriticalSections +RtlCheckPortableOperatingSystem +RtlCheckRegistryKey +RtlCheckTokenCapability +RtlCheckTokenMembership +RtlCheckTokenMembershipEx +RtlCleanUpTEBLangLists +RtlClearAllBits +RtlClearBit +RtlClearBits +RtlCloneMemoryStream +RtlCloneUserProcess +RtlCmDecodeMemIoResource +RtlCmEncodeMemIoResource +RtlCommitDebugInfo +RtlCommitMemoryStream +RtlCompactHeap +RtlCompareAltitudes +RtlCompareMemory +RtlCompareMemoryUlong +RtlCompareString +RtlCompareUnicodeString +RtlCompareUnicodeStrings +RtlCompressBuffer +RtlComputeCrc32 +RtlComputeImportTableHash +RtlComputePrivatizedDllName_U +RtlConnectToSm +RtlConsoleMultiByteToUnicodeN +RtlContractHashTable +RtlConvertExclusiveToShared +RtlConvertLCIDToString +RtlConvertSharedToExclusive +RtlConvertSidToUnicodeString +RtlConvertToAutoInheritSecurityObject +RtlCopyBitMap +RtlCopyContext +RtlCopyExtendedContext +RtlCopyLuid +RtlCopyLuidAndAttributesArray +RtlCopyMappedMemory +RtlCopyMemory +RtlCopyMemoryStreamTo +RtlCopyOutOfProcessMemoryStreamTo +RtlCopySecurityDescriptor +RtlCopySid +RtlCopySidAndAttributesArray +RtlCopyString +RtlCopyUnicodeString +RtlCrc32 +RtlCrc64 +RtlCreateAcl +RtlCreateActivationContext +RtlCreateAndSetSD +RtlCreateAtomTable +RtlCreateBootStatusDataFile +RtlCreateBoundaryDescriptor +RtlCreateEnvironment +RtlCreateEnvironmentEx +RtlCreateHashTable +RtlCreateHashTableEx +RtlCreateHeap +RtlCreateMemoryBlockLookaside +RtlCreateMemoryZone +RtlCreateProcessParameters +RtlCreateProcessParametersEx +RtlCreateProcessReflection +RtlCreateQueryDebugBuffer +RtlCreateRegistryKey +RtlCreateSecurityDescriptor +RtlCreateServiceSid +RtlCreateSystemVolumeInformationFolder +RtlCreateTagHeap +RtlCreateTimer +RtlCreateTimerQueue +RtlCreateUnicodeString +RtlCreateUnicodeStringFromAsciiz +RtlCreateUserProcess +RtlCreateUserSecurityObject +RtlCreateUserStack +RtlCreateUserThread +RtlCreateVirtualAccountSid +RtlCultureNameToLCID +RtlCustomCPToUnicodeN +RtlCutoverTimeToSystemTime +RtlDeCommitDebugInfo +RtlDeNormalizeProcessParams +RtlDeactivateActivationContext +RtlDeactivateActivationContextUnsafeFast +RtlDebugPrintTimes +RtlDecodePointer +RtlDecodeSystemPointer +RtlDecompressBuffer +RtlDecompressBufferEx +RtlDecompressFragment +RtlDefaultNpAcl +RtlDelete +RtlDeleteAce +RtlDeleteAtomFromAtomTable +RtlDeleteBarrier +RtlDeleteBoundaryDescriptor +RtlDeleteCriticalSection +RtlDeleteElementGenericTable +RtlDeleteElementGenericTableAvl +RtlDeleteElementGenericTableAvlEx +RtlDeleteFunctionTable +RtlDeleteGrowableFunctionTable +RtlDeleteHashTable +RtlDeleteNoSplay +RtlDeleteRegistryValue +RtlDeleteResource +RtlDeleteSecurityObject +RtlDeleteTimer +RtlDeleteTimerQueue +RtlDeleteTimerQueueEx +RtlDeregisterSecureMemoryCacheCallback +RtlDeregisterWait +RtlDeregisterWaitEx +RtlDestroyAtomTable +RtlDestroyEnvironment +RtlDestroyHandleTable +RtlDestroyHeap +RtlDestroyMemoryBlockLookaside +RtlDestroyMemoryZone +RtlDestroyProcessParameters +RtlDestroyQueryDebugBuffer +RtlDetectHeapLeaks +RtlDetermineDosPathNameType_U +RtlDisableThreadProfiling +RtlDllShutdownInProgress +RtlDnsHostNameToComputerName +RtlDoesFileExists_U +RtlDosApplyFileIsolationRedirection_Ustr +RtlDosPathNameToNtPathName_U +RtlDosPathNameToNtPathName_U_WithStatus +RtlDosPathNameToRelativeNtPathName_U +RtlDosPathNameToRelativeNtPathName_U_WithStatus +RtlDosSearchPath_U +RtlDosSearchPath_Ustr +RtlDowncaseUnicodeChar +RtlDowncaseUnicodeString +RtlDumpResource +RtlDuplicateUnicodeString +RtlEmptyAtomTable +RtlEnableEarlyCriticalSectionEventCreation +RtlEnableThreadProfiling +RtlEncodePointer +RtlEncodeSystemPointer +RtlEndEnumerationHashTable +RtlEndWeakEnumerationHashTable +RtlEnterCriticalSection +RtlEnumProcessHeaps +RtlEnumerateEntryHashTable +RtlEnumerateGenericTable +RtlEnumerateGenericTableAvl +RtlEnumerateGenericTableLikeADirectory +RtlEnumerateGenericTableWithoutSplaying +RtlEnumerateGenericTableWithoutSplayingAvl +RtlEqualComputerName +RtlEqualDomainName +RtlEqualLuid +RtlEqualPrefixSid +RtlEqualSid +RtlEqualString +RtlEqualUnicodeString +RtlEqualWnfChangeStamps +RtlEraseUnicodeString +RtlEthernetAddressToStringA +RtlEthernetAddressToStringW +RtlEthernetStringToAddressA +RtlEthernetStringToAddressW +RtlExitUserProcess +RtlExitUserThread +RtlExpandEnvironmentStrings +RtlExpandEnvironmentStrings_U +RtlExpandHashTable +RtlExtendMemoryBlockLookaside +RtlExtendMemoryZone +RtlExtendedMagicDivide +RtlExtractBitMap +RtlFillMemory +RtlFillMemoryUlong +RtlFillMemoryUlonglong +RtlFinalReleaseOutOfProcessMemoryStream +RtlFindAceByType +RtlFindActivationContextSectionGuid +RtlFindActivationContextSectionString +RtlFindCharInUnicodeString +RtlFindClearBits +RtlFindClearBitsAndSet +RtlFindClearRuns +RtlFindClosestEncodableLength +RtlFindLastBackwardRunClear +RtlFindLeastSignificantBit +RtlFindLongestRunClear +RtlFindMessage +RtlFindMostSignificantBit +RtlFindNextForwardRunClear +RtlFindSetBits +RtlFindSetBitsAndClear +RtlFirstEntrySList +RtlFirstFreeAce +RtlFlsAlloc +RtlFlsFree +RtlFlushHeaps +RtlFlushSecureMemoryCache +RtlFormatCurrentUserKeyPath +RtlFormatMessage +RtlFormatMessageEx +RtlFreeActivationContextStack +RtlFreeAnsiString +RtlFreeHandle +RtlFreeHeap +RtlFreeMemoryBlockLookaside +RtlFreeOemString +RtlFreeSid +RtlFreeThreadActivationContextStack +RtlFreeUnicodeString +RtlFreeUserStack +RtlGUIDFromString +RtlGenerate8dot3Name +RtlGetAce +RtlGetActiveActivationContext +RtlGetAppContainerNamedObjectPath +RtlGetAppContainerParent +RtlGetAppContainerSidType +RtlGetCallersAddress +RtlGetCompressionWorkSpaceSize +RtlGetControlSecurityDescriptor +RtlGetCriticalSectionRecursionCount +RtlGetCurrentDirectory_U +RtlGetCurrentPeb +RtlGetCurrentProcessorNumber +RtlGetCurrentProcessorNumberEx +RtlGetCurrentTransaction +RtlGetDaclSecurityDescriptor +RtlGetElementGenericTable +RtlGetElementGenericTableAvl +RtlGetEnabledExtendedFeatures +RtlGetExePath +RtlGetExtendedContextLength +RtlGetExtendedFeaturesMask +RtlGetFileMUIPath +RtlGetFrame +RtlGetFullPathName_U +RtlGetFullPathName_UEx +RtlGetFullPathName_UstrEx +RtlGetFunctionTableListHead +RtlGetGroupSecurityDescriptor +RtlGetIntegerAtom +RtlGetLastNtStatus +RtlGetLastWin32Error +RtlGetLengthWithoutLastFullDosOrNtPathElement +RtlGetLengthWithoutTrailingPathSeperators +RtlGetLocaleFileMappingAddress +RtlGetLongestNtPathLength +RtlGetNativeSystemInformation +RtlGetNextEntryHashTable +RtlGetNtGlobalFlags +RtlGetNtProductType +RtlGetNtVersionNumbers +RtlGetOwnerSecurityDescriptor +RtlGetParentLocaleName +RtlGetProcessHeaps +RtlGetProcessPreferredUILanguages +RtlGetProductInfo +RtlGetSaclSecurityDescriptor +RtlGetSearchPath +RtlGetSecurityDescriptorRMControl +RtlGetSetBootStatusData +RtlGetSystemPreferredUILanguages +RtlGetSystemTimePrecise +RtlGetThreadErrorMode +RtlGetThreadLangIdByIndex +RtlGetThreadPreferredUILanguages +RtlGetUILanguageInfo +RtlGetUnloadEventTrace +RtlGetUnloadEventTraceEx +RtlGetUserInfoHeap +RtlGetUserPreferredUILanguages +RtlGetVersion +RtlGrowFunctionTable +RtlHashUnicodeString +RtlHeapTrkInitialize +RtlIdentifierAuthoritySid +RtlIdnToAscii +RtlIdnToNameprepUnicode +RtlIdnToUnicode +RtlImageDirectoryEntryToData +RtlImageNtHeader +RtlImageNtHeaderEx +RtlImageRvaToSection +RtlImageRvaToVa +RtlImpersonateSelf +RtlImpersonateSelfEx +RtlInitAnsiString +RtlInitAnsiStringEx +RtlInitBarrier +RtlInitCodePageTable +RtlInitEnumerationHashTable +RtlInitMemoryStream +RtlInitNlsTables +RtlInitOutOfProcessMemoryStream +RtlInitString +RtlInitUnicodeString +RtlInitUnicodeStringEx +RtlInitWeakEnumerationHashTable +RtlInitializeAtomPackage +RtlInitializeBitMap +RtlInitializeConditionVariable +RtlInitializeContext +RtlInitializeCriticalSection +RtlInitializeCriticalSectionAndSpinCount +RtlInitializeCriticalSectionEx +RtlInitializeExtendedContext +RtlInitializeGenericTable +RtlInitializeGenericTableAvl +RtlInitializeHandleTable +RtlInitializeNtUserPfn +RtlInitializeRXact +RtlInitializeResource +RtlInitializeSListHead +RtlInitializeSRWLock +RtlInitializeSid +RtlInsertElementGenericTable +RtlInsertElementGenericTableAvl +RtlInsertElementGenericTableFull +RtlInsertElementGenericTableFullAvl +RtlInsertEntryHashTable +RtlInstallFunctionTableCallback +RtlInt64ToUnicodeString +RtlIntegerToChar +RtlIntegerToUnicodeString +RtlInterlockedClearBitRun +RtlInterlockedFlushSList +RtlInterlockedPopEntrySList +RtlInterlockedPushEntrySList +RtlInterlockedPushListSList +RtlInterlockedPushListSListEx +RtlInterlockedSetBitRun +RtlIoDecodeMemIoResource +RtlIoEncodeMemIoResource +RtlIpv4AddressToStringA +RtlIpv4AddressToStringExA +RtlIpv4AddressToStringExW +RtlIpv4AddressToStringW +RtlIpv4StringToAddressA +RtlIpv4StringToAddressExA +RtlIpv4StringToAddressExW +RtlIpv4StringToAddressW +RtlIpv6AddressToStringA +RtlIpv6AddressToStringExA +RtlIpv6AddressToStringExW +RtlIpv6AddressToStringW +RtlIpv6StringToAddressA +RtlIpv6StringToAddressExA +RtlIpv6StringToAddressExW +RtlIpv6StringToAddressW +RtlIsActivationContextActive +RtlIsCapabilitySid +RtlIsCriticalSectionLocked +RtlIsCriticalSectionLockedByThread +RtlIsCurrentThreadAttachExempt +RtlIsDosDeviceName_U +RtlIsGenericTableEmpty +RtlIsGenericTableEmptyAvl +RtlIsNameInExpression +RtlIsNameLegalDOS8Dot3 +RtlIsNormalizedString +RtlIsPackageSid +RtlIsParentOfChildAppContainer +RtlIsTextUnicode +RtlIsThreadWithinLoaderCallout +RtlIsUntrustedObject +RtlIsValidHandle +RtlIsValidIndexHandle +RtlIsValidLocaleName +RtlIsValidProcessTrustLabelSid +RtlKnownExceptionFilter +RtlLCIDToCultureName +RtlLargeIntegerToChar +RtlLcidToLocaleName +RtlLeaveCriticalSection +RtlLengthRequiredSid +RtlLengthSecurityDescriptor +RtlLengthSid +RtlLengthSidAsUnicodeString +RtlLoadString +RtlLocalTimeToSystemTime +RtlLocaleNameToLcid +RtlLocateExtendedFeature +RtlLocateLegacyContext +RtlLockBootStatusData +RtlLockCurrentThread +RtlLockHeap +RtlLockMemoryBlockLookaside +RtlLockMemoryStreamRegion +RtlLockMemoryZone +RtlLockModuleSection +RtlLogStackBackTrace +RtlLookupAtomInAtomTable +RtlLookupElementGenericTable +RtlLookupElementGenericTableAvl +RtlLookupElementGenericTableFull +RtlLookupElementGenericTableFullAvl +RtlLookupEntryHashTable +RtlLookupFunctionEntry +RtlLookupFunctionTable +RtlMakeSelfRelativeSD +RtlMapGenericMask +RtlMapSecurityErrorToNtStatus +RtlMoveMemory +RtlMultiAppendUnicodeStringBuffer +RtlMultiByteToUnicodeN +RtlMultiByteToUnicodeSize +RtlMultipleAllocateHeap +RtlMultipleFreeHeap +RtlNewInstanceSecurityObject +RtlNewSecurityGrantedAccess +RtlNewSecurityObject +RtlNewSecurityObjectEx +RtlNewSecurityObjectWithMultipleInheritance +RtlNormalizeProcessParams +RtlNormalizeString +RtlNtPathNameToDosPathName +RtlNtStatusToDosError +RtlNtStatusToDosErrorNoTeb +RtlNumberGenericTableElements +RtlNumberGenericTableElementsAvl +RtlNumberOfClearBits +RtlNumberOfClearBitsInRange +RtlNumberOfSetBits +RtlNumberOfSetBitsInRange +RtlNumberOfSetBitsUlongPtr +RtlOemStringToUnicodeSize +RtlOemStringToUnicodeString +RtlOemToUnicodeN +RtlOpenCurrentUser +RtlOwnerAcesPresent +RtlPcToFileHeader +RtlPinAtomInAtomTable +RtlPopFrame +RtlPrefixString +RtlPrefixUnicodeString +RtlProcessFlsData +RtlProtectHeap +RtlPublishWnfStateData +RtlPushFrame +RtlQueryActivationContextApplicationSettings +RtlQueryAtomInAtomTable +RtlQueryCriticalSectionOwner +RtlQueryDepthSList +RtlQueryDynamicTimeZoneInformation +RtlQueryElevationFlags +RtlQueryEnvironmentVariable +RtlQueryEnvironmentVariable_U +RtlQueryHeapInformation +RtlQueryInformationAcl +RtlQueryInformationActivationContext +RtlQueryInformationActiveActivationContext +RtlQueryInterfaceMemoryStream +RtlQueryModuleInformation +RtlQueryPackageIdentity +RtlQueryPackageIdentityEx +RtlQueryPerformanceCounter +RtlQueryPerformanceFrequency +RtlQueryProcessBackTraceInformation +RtlQueryProcessDebugInformation +RtlQueryProcessHeapInformation +RtlQueryProcessLockInformation +RtlQueryRegistryValues +RtlQueryRegistryValuesEx +RtlQueryResourcePolicy +RtlQuerySecurityObject +RtlQueryTagHeap +RtlQueryThreadProfiling +RtlQueryTimeZoneInformation +RtlQueryUnbiasedInterruptTime +RtlQueryValidationRunlevel +RtlQueryWnfMetaNotification +RtlQueryWnfStateData +RtlQueryWnfStateDataWithExplicitScope +RtlQueueApcWow64Thread +RtlQueueWorkItem +RtlRaiseException +RtlRaiseStatus +RtlRandom +RtlRandomEx +RtlRbInsertNodeEx +RtlRbRemoveNode +RtlReAllocateHeap +RtlReadMemoryStream +RtlReadOutOfProcessMemoryStream +RtlReadThreadProfilingData +RtlRealPredecessor +RtlRealSuccessor +RtlRegisterForWnfMetaNotification +RtlRegisterSecureMemoryCacheCallback +RtlRegisterThreadWithCsrss +RtlRegisterWait +RtlReleaseActivationContext +RtlReleaseMemoryStream +RtlReleasePath +RtlReleasePebLock +RtlReleasePrivilege +RtlReleaseRelativeName +RtlReleaseResource +RtlReleaseSRWLockExclusive +RtlReleaseSRWLockShared +RtlRemoteCall +RtlRemoveEntryHashTable +RtlRemovePrivileges +RtlRemoveVectoredContinueHandler +RtlRemoveVectoredExceptionHandler +RtlReplaceSidInSd +RtlReportException +RtlReportSilentProcessExit +RtlReportSqmEscalation +RtlResetMemoryBlockLookaside +RtlResetMemoryZone +RtlResetNtUserPfn +RtlResetRtlTranslations +RtlRestoreContext +RtlRestoreLastWin32Error +RtlRetrieveNtUserPfn +RtlRevertMemoryStream +RtlRunDecodeUnicodeString +RtlRunEncodeUnicodeString +RtlRunOnceBeginInitialize +RtlRunOnceComplete +RtlRunOnceExecuteOnce +RtlRunOnceInitialize +RtlSecondsSince1970ToTime +RtlSecondsSince1980ToTime +RtlSeekMemoryStream +RtlSelfRelativeToAbsoluteSD +RtlSelfRelativeToAbsoluteSD2 +RtlSendMsgToSm +RtlSetAllBits +RtlSetAttributesSecurityDescriptor +RtlSetBit +RtlSetBits +RtlSetControlSecurityDescriptor +RtlSetCriticalSectionSpinCount +RtlSetCurrentDirectory_U +RtlSetCurrentEnvironment +RtlSetCurrentTransaction +RtlSetDaclSecurityDescriptor +RtlSetDynamicTimeZoneInformation +RtlSetEnvironmentStrings +RtlSetEnvironmentVar +RtlSetEnvironmentVariable +RtlSetExtendedFeaturesMask +RtlSetGroupSecurityDescriptor +RtlSetHeapInformation +RtlSetInformationAcl +RtlSetIoCompletionCallback +RtlSetLastWin32Error +RtlSetLastWin32ErrorAndNtStatusFromNtStatus +RtlSetMemoryStreamSize +RtlSetOwnerSecurityDescriptor +RtlSetPortableOperatingSystem +RtlSetProcessDebugInformation +RtlSetProcessIsCritical +RtlSetProcessPreferredUILanguages +RtlSetSaclSecurityDescriptor +RtlSetSearchPathMode +RtlSetSecurityDescriptorRMControl +RtlSetSecurityObject +RtlSetSecurityObjectEx +RtlSetThreadErrorMode +RtlSetThreadIsCritical +RtlSetThreadPoolStartFunc +RtlSetThreadPreferredUILanguages +RtlSetTimeZoneInformation +RtlSetTimer +RtlSetUnhandledExceptionFilter +RtlSetUserFlagsHeap +RtlSetUserValueHeap +RtlSidDominates +RtlSidDominatesForTrust +RtlSidEqualLevel +RtlSidHashInitialize +RtlSidHashLookup +RtlSidIsHigherLevel +RtlSizeHeap +RtlSleepConditionVariableCS +RtlSleepConditionVariableSRW +RtlSplay +RtlStartRXact +RtlStatMemoryStream +RtlStringFromGUID +RtlStringFromGUIDEx +RtlSubAuthorityCountSid +RtlSubAuthoritySid +RtlSubscribeWnfStateChangeNotification +RtlSubtreePredecessor +RtlSubtreeSuccessor +RtlSystemTimeToLocalTime +RtlTestAndPublishWnfStateData +RtlTestBit +RtlTestProtectedAccess +RtlTimeFieldsToTime +RtlTimeToElapsedTimeFields +RtlTimeToSecondsSince1970 +RtlTimeToSecondsSince1980 +RtlTimeToTimeFields +RtlTraceDatabaseAdd +RtlTraceDatabaseCreate +RtlTraceDatabaseDestroy +RtlTraceDatabaseEnumerate +RtlTraceDatabaseFind +RtlTraceDatabaseLock +RtlTraceDatabaseUnlock +RtlTraceDatabaseValidate +RtlTryAcquirePebLock +RtlTryAcquireSRWLockExclusive +RtlTryAcquireSRWLockShared +RtlTryConvertSRWLockSharedToExclusiveOrRelease +RtlTryEnterCriticalSection +RtlUTF8ToUnicodeN +RtlUlongByteSwap +RtlUlonglongByteSwap +RtlUnhandledExceptionFilter +RtlUnhandledExceptionFilter2 +RtlUnicodeStringToAnsiSize +RtlUnicodeStringToAnsiString +RtlUnicodeStringToCountedOemString +RtlUnicodeStringToInteger +RtlUnicodeStringToOemSize +RtlUnicodeStringToOemString +RtlUnicodeToCustomCPN +RtlUnicodeToMultiByteN +RtlUnicodeToMultiByteSize +RtlUnicodeToOemN +RtlUnicodeToUTF8N +RtlUniform +RtlUnlockBootStatusData +RtlUnlockCurrentThread +RtlUnlockHeap +RtlUnlockMemoryBlockLookaside +RtlUnlockMemoryStreamRegion +RtlUnlockMemoryZone +RtlUnlockModuleSection +RtlUnsubscribeWnfNotificationWaitForCompletion +RtlUnsubscribeWnfNotificationWithCompletionCallback +RtlUnsubscribeWnfStateChangeNotification +RtlUnwind +RtlUnwindEx +RtlUpcaseUnicodeChar +RtlUpcaseUnicodeString +RtlUpcaseUnicodeStringToAnsiString +RtlUpcaseUnicodeStringToCountedOemString +RtlUpcaseUnicodeStringToOemString +RtlUpcaseUnicodeToCustomCPN +RtlUpcaseUnicodeToMultiByteN +RtlUpcaseUnicodeToOemN +RtlUpdateClonedCriticalSection +RtlUpdateClonedSRWLock +RtlUpdateTimer +RtlUpperChar +RtlUpperString +RtlUserThreadStart +RtlUshortByteSwap +RtlValidAcl +RtlValidProcessProtection +RtlValidRelativeSecurityDescriptor +RtlValidSecurityDescriptor +RtlValidSid +RtlValidateHeap +RtlValidateProcessHeaps +RtlValidateUnicodeString +RtlVerifyVersionInfo +RtlVirtualUnwind +RtlWaitForWnfMetaNotification +RtlWaitOnAddress +RtlWakeAddressAll +RtlWakeAddressAllNoFence +RtlWakeAddressSingle +RtlWakeAddressSingleNoFence +RtlWakeAllConditionVariable +RtlWakeConditionVariable +RtlWalkFrameChain +RtlWalkHeap +RtlWeaklyEnumerateEntryHashTable +RtlWerpReportException +RtlWnfCompareChangeStamp +RtlWnfDllUnloadCallback +RtlWow64CallFunction64 +RtlWow64EnableFsRedirection +RtlWow64EnableFsRedirectionEx +RtlWriteMemoryStream +RtlWriteRegistryValue +RtlZeroHeap +RtlZeroMemory +RtlZombifyActivationContext +RtlpApplyLengthFunction +RtlpCheckDynamicTimeZoneInformation +RtlpCleanupRegistryKeys +RtlpConvertAbsoluteToRelativeSecurityAttribute +RtlpConvertCultureNamesToLCIDs +RtlpConvertLCIDsToCultureNames +RtlpConvertRelativeToAbsoluteSecurityAttribute +RtlpCreateProcessRegistryInfo +RtlpEnsureBufferSize +RtlpFreezeTimeBias DATA +RtlpGetLCIDFromLangInfoNode +RtlpGetNameFromLangInfoNode +RtlpGetSystemDefaultUILanguage +RtlpGetUserOrMachineUILanguage4NLS +RtlpInitializeLangRegistryInfo +RtlpIsQualifiedLanguage +RtlpLoadMachineUIByPolicy +RtlpLoadUserUIByPolicy +RtlpMergeSecurityAttributeInformation +RtlpMuiFreeLangRegistryInfo +RtlpMuiRegCreateRegistryInfo +RtlpMuiRegFreeRegistryInfo +RtlpMuiRegLoadRegistryInfo +RtlpNotOwnerCriticalSection +RtlpNtCreateKey +RtlpNtEnumerateSubKey +RtlpNtMakeTemporaryKey +RtlpNtOpenKey +RtlpNtQueryValueKey +RtlpNtSetValueKey +RtlpQueryDefaultUILanguage +RtlpRefreshCachedUILanguage +RtlpSetInstallLanguage +RtlpSetPreferredUILanguages +RtlpSetUserPreferredUILanguages +RtlpUnWaitCriticalSection +RtlpVerifyAndCommitUILanguageSettings +RtlpWaitForCriticalSection +RtlxAnsiStringToUnicodeSize +RtlxOemStringToUnicodeSize +RtlxUnicodeStringToAnsiSize +RtlxUnicodeStringToOemSize +SbExecuteProcedure +SbSelectProcedure +ShipAssert +ShipAssertGetBufferInfo +ShipAssertMsgA +ShipAssertMsgW +TpAllocAlpcCompletion +TpAllocAlpcCompletionEx +TpAllocCleanupGroup +TpAllocIoCompletion +TpAllocJobNotification +TpAllocPool +TpAllocTimer +TpAllocWait +TpAllocWork +TpAlpcRegisterCompletionList +TpAlpcUnregisterCompletionList +TpCallbackDetectedUnrecoverableError +TpCallbackIndependent +TpCallbackLeaveCriticalSectionOnCompletion +TpCallbackMayRunLong +TpCallbackReleaseMutexOnCompletion +TpCallbackReleaseSemaphoreOnCompletion +TpCallbackSendAlpcMessageOnCompletion +TpCallbackSendPendingAlpcMessage +TpCallbackSetEventOnCompletion +TpCallbackUnloadDllOnCompletion +TpCancelAsyncIoOperation +TpCaptureCaller +TpCheckTerminateWorker +TpDbgDumpHeapUsage +TpDbgSetLogRoutine +TpDisablePoolCallbackChecks +TpDisassociateCallback +TpIsTimerSet +TpPostWork +TpQueryPoolStackInformation +TpReleaseAlpcCompletion +TpReleaseCleanupGroup +TpReleaseCleanupGroupMembers +TpReleaseIoCompletion +TpReleaseJobNotification +TpReleasePool +TpReleaseTimer +TpReleaseWait +TpReleaseWork +TpSetDefaultPoolMaxThreads +TpSetDefaultPoolStackInformation +TpSetPoolMaxThreads +TpSetPoolMinThreads +TpSetPoolStackInformation +TpSetPoolThreadBasePriority +TpSetTimer +TpSetTimerEx +TpSetWait +TpSetWaitEx +TpSimpleTryPost +TpStartAsyncIoOperation +TpTimerOutstandingCallbackCount +TpTrimPools +TpWaitForAlpcCompletion +TpWaitForIoCompletion +TpWaitForJobNotification +TpWaitForTimer +TpWaitForWait +TpWaitForWork +VerSetConditionMask +WerReportSQMEvent +WinSqmAddToAverageDWORD +WinSqmAddToStream +WinSqmAddToStreamEx +WinSqmCheckEscalationAddToStreamEx +WinSqmCheckEscalationSetDWORD +WinSqmCheckEscalationSetDWORD64 +WinSqmCheckEscalationSetString +WinSqmCommonDatapointDelete +WinSqmCommonDatapointSetDWORD +WinSqmCommonDatapointSetDWORD64 +WinSqmCommonDatapointSetStreamEx +WinSqmCommonDatapointSetString +WinSqmEndSession +WinSqmEventEnabled +WinSqmEventWrite +WinSqmGetEscalationRuleStatus +WinSqmGetInstrumentationProperty +WinSqmIncrementDWORD +WinSqmIsOptedIn +WinSqmIsOptedInEx +WinSqmIsSessionDisabled +WinSqmSetDWORD +WinSqmSetDWORD64 +WinSqmSetEscalationInfo +WinSqmSetIfMaxDWORD +WinSqmSetIfMinDWORD +WinSqmSetString +WinSqmStartSession +WinSqmStartSessionForPartner +ZwAcceptConnectPort +ZwAccessCheck +ZwAccessCheckAndAuditAlarm +ZwAccessCheckByType +ZwAccessCheckByTypeAndAuditAlarm +ZwAccessCheckByTypeResultList +ZwAccessCheckByTypeResultListAndAuditAlarm +ZwAccessCheckByTypeResultListAndAuditAlarmByHandle +ZwAddAtom +ZwAddAtomEx +ZwAddBootEntry +ZwAddDriverEntry +ZwAdjustGroupsToken +ZwAdjustPrivilegesToken +ZwAdjustTokenClaimsAndDeviceGroups +ZwAlertResumeThread +ZwAlertThread +ZwAlertThreadByThreadId +ZwAllocateLocallyUniqueId +ZwAllocateReserveObject +ZwAllocateUserPhysicalPages +ZwAllocateUuids +ZwAllocateVirtualMemory +ZwAlpcAcceptConnectPort +ZwAlpcCancelMessage +ZwAlpcConnectPort +ZwAlpcConnectPortEx +ZwAlpcCreatePort +ZwAlpcCreatePortSection +ZwAlpcCreateResourceReserve +ZwAlpcCreateSectionView +ZwAlpcCreateSecurityContext +ZwAlpcDeletePortSection +ZwAlpcDeleteResourceReserve +ZwAlpcDeleteSectionView +ZwAlpcDeleteSecurityContext +ZwAlpcDisconnectPort +ZwAlpcImpersonateClientOfPort +ZwAlpcOpenSenderProcess +ZwAlpcOpenSenderThread +ZwAlpcQueryInformation +ZwAlpcQueryInformationMessage +ZwAlpcRevokeSecurityContext +ZwAlpcSendWaitReceivePort +ZwAlpcSetInformation +ZwApphelpCacheControl +ZwAreMappedFilesTheSame +ZwAssignProcessToJobObject +ZwAssociateWaitCompletionPacket +ZwCallbackReturn +ZwCancelIoFile +ZwCancelIoFileEx +ZwCancelSynchronousIoFile +ZwCancelTimer +ZwCancelTimer2 +ZwCancelWaitCompletionPacket +ZwClearEvent +ZwClose +ZwCloseObjectAuditAlarm +ZwCommitComplete +ZwCommitEnlistment +ZwCommitTransaction +ZwCompactKeys +ZwCompareTokens +ZwCompleteConnectPort +ZwCompressKey +ZwConnectPort +ZwContinue +ZwCreateDebugObject +ZwCreateDirectoryObject +ZwCreateDirectoryObjectEx +ZwCreateEnlistment +ZwCreateEvent +ZwCreateEventPair +ZwCreateFile +ZwCreateIRTimer +ZwCreateIoCompletion +ZwCreateJobObject +ZwCreateJobSet +ZwCreateKey +ZwCreateKeyTransacted +ZwCreateKeyedEvent +ZwCreateLowBoxToken +ZwCreateMailslotFile +ZwCreateMutant +ZwCreateNamedPipeFile +ZwCreatePagingFile +ZwCreatePort +ZwCreatePrivateNamespace +ZwCreateProcess +ZwCreateProcessEx +ZwCreateProfile +ZwCreateProfileEx +ZwCreateResourceManager +ZwCreateSection +ZwCreateSemaphore +ZwCreateSymbolicLinkObject +ZwCreateThread +ZwCreateThreadEx +ZwCreateTimer +ZwCreateTimer2 +ZwCreateToken +ZwCreateTokenEx +ZwCreateTransaction +ZwCreateTransactionManager +ZwCreateUserProcess +ZwCreateWaitCompletionPacket +ZwCreateWaitablePort +ZwCreateWnfStateName +ZwCreateWorkerFactory +ZwDebugActiveProcess +ZwDebugContinue +ZwDelayExecution +ZwDeleteAtom +ZwDeleteBootEntry +ZwDeleteDriverEntry +ZwDeleteFile +ZwDeleteKey +ZwDeleteObjectAuditAlarm +ZwDeletePrivateNamespace +ZwDeleteValueKey +ZwDeleteWnfStateData +ZwDeleteWnfStateName +ZwDeviceIoControlFile +ZwDisableLastKnownGood +ZwDisplayString +ZwDrawText +ZwDuplicateObject +ZwDuplicateToken +ZwEnableLastKnownGood +ZwEnumerateBootEntries +ZwEnumerateDriverEntries +ZwEnumerateKey +ZwEnumerateSystemEnvironmentValuesEx +ZwEnumerateTransactionObject +ZwEnumerateValueKey +ZwExtendSection +ZwFilterBootOption +ZwFilterToken +ZwFilterTokenEx +ZwFindAtom +ZwFlushBuffersFile +ZwFlushBuffersFileEx +ZwFlushInstallUILanguage +ZwFlushInstructionCache +ZwFlushKey +ZwFlushProcessWriteBuffers +ZwFlushVirtualMemory +ZwFlushWriteBuffer +ZwFreeUserPhysicalPages +ZwFreeVirtualMemory +ZwFreezeRegistry +ZwFreezeTransactions +ZwFsControlFile +ZwGetCachedSigningLevel +ZwGetCompleteWnfStateSubscription +ZwGetContextThread +ZwGetCurrentProcessorNumber +ZwGetDevicePowerState +ZwGetMUIRegistryInfo +ZwGetNextProcess +ZwGetNextThread +ZwGetNlsSectionPtr +ZwGetNotificationResourceManager +ZwGetWriteWatch +ZwImpersonateAnonymousToken +ZwImpersonateClientOfPort +ZwImpersonateThread +ZwInitializeNlsFiles +ZwInitializeRegistry +ZwInitiatePowerAction +ZwIsProcessInJob +ZwIsSystemResumeAutomatic +ZwIsUILanguageComitted +ZwListenPort +ZwLoadDriver +ZwLoadKey +ZwLoadKey2 +ZwLoadKeyEx +ZwLockFile +ZwLockProductActivationKeys +ZwLockRegistryKey +ZwLockVirtualMemory +ZwMakePermanentObject +ZwMakeTemporaryObject +ZwMapCMFModule +ZwMapUserPhysicalPages +ZwMapUserPhysicalPagesScatter +ZwMapViewOfSection +ZwModifyBootEntry +ZwModifyDriverEntry +ZwNotifyChangeDirectoryFile +ZwNotifyChangeKey +ZwNotifyChangeMultipleKeys +ZwNotifyChangeSession +ZwOpenDirectoryObject +ZwOpenEnlistment +ZwOpenEvent +ZwOpenEventPair +ZwOpenFile +ZwOpenIoCompletion +ZwOpenJobObject +ZwOpenKey +ZwOpenKeyEx +ZwOpenKeyTransacted +ZwOpenKeyTransactedEx +ZwOpenKeyedEvent +ZwOpenMutant +ZwOpenObjectAuditAlarm +ZwOpenPrivateNamespace +ZwOpenProcess +ZwOpenProcessToken +ZwOpenProcessTokenEx +ZwOpenResourceManager +ZwOpenSection +ZwOpenSemaphore +ZwOpenSession +ZwOpenSymbolicLinkObject +ZwOpenThread +ZwOpenThreadToken +ZwOpenThreadTokenEx +ZwOpenTimer +ZwOpenTransaction +ZwOpenTransactionManager +ZwPlugPlayControl +ZwPowerInformation +ZwPrePrepareComplete +ZwPrePrepareEnlistment +ZwPrepareComplete +ZwPrepareEnlistment +ZwPrivilegeCheck +ZwPrivilegeObjectAuditAlarm +ZwPrivilegedServiceAuditAlarm +ZwPropagationComplete +ZwPropagationFailed +ZwProtectVirtualMemory +ZwPulseEvent +ZwQueryAttributesFile +ZwQueryBootEntryOrder +ZwQueryBootOptions +ZwQueryDebugFilterState +ZwQueryDefaultLocale +ZwQueryDefaultUILanguage +ZwQueryDirectoryFile +ZwQueryDirectoryObject +ZwQueryDriverEntryOrder +ZwQueryEaFile +ZwQueryEvent +ZwQueryFullAttributesFile +ZwQueryInformationAtom +ZwQueryInformationEnlistment +ZwQueryInformationFile +ZwQueryInformationJobObject +ZwQueryInformationPort +ZwQueryInformationProcess +ZwQueryInformationResourceManager +ZwQueryInformationThread +ZwQueryInformationToken +ZwQueryInformationTransaction +ZwQueryInformationTransactionManager +ZwQueryInformationWorkerFactory +ZwQueryInstallUILanguage +ZwQueryIntervalProfile +ZwQueryIoCompletion +ZwQueryKey +ZwQueryLicenseValue +ZwQueryMultipleValueKey +ZwQueryMutant +ZwQueryObject +ZwQueryOpenSubKeys +ZwQueryOpenSubKeysEx +ZwQueryPerformanceCounter +ZwQueryPortInformationProcess +ZwQueryQuotaInformationFile +ZwQuerySection +ZwQuerySecurityAttributesToken +ZwQuerySecurityObject +ZwQuerySemaphore +ZwQuerySymbolicLinkObject +ZwQuerySystemEnvironmentValue +ZwQuerySystemEnvironmentValueEx +ZwQuerySystemInformation +ZwQuerySystemInformationEx +ZwQuerySystemTime +ZwQueryTimer +ZwQueryTimerResolution +ZwQueryValueKey +ZwQueryVirtualMemory +ZwQueryVolumeInformationFile +ZwQueryWnfStateData +ZwQueryWnfStateNameInformation +ZwQueueApcThread +ZwQueueApcThreadEx +ZwRaiseException +ZwRaiseHardError +ZwReadFile +ZwReadFileScatter +ZwReadOnlyEnlistment +ZwReadRequestData +ZwReadVirtualMemory +ZwRecoverEnlistment +ZwRecoverResourceManager +ZwRecoverTransactionManager +ZwRegisterProtocolAddressInformation +ZwRegisterThreadTerminatePort +ZwReleaseKeyedEvent +ZwReleaseMutant +ZwReleaseSemaphore +ZwReleaseWorkerFactoryWorker +ZwRemoveIoCompletion +ZwRemoveIoCompletionEx +ZwRemoveProcessDebug +ZwRenameKey +ZwRenameTransactionManager +ZwReplaceKey +ZwReplacePartitionUnit +ZwReplyPort +ZwReplyWaitReceivePort +ZwReplyWaitReceivePortEx +ZwReplyWaitReplyPort +ZwRequestPort +ZwRequestWaitReplyPort +ZwResetEvent +ZwResetWriteWatch +ZwRestoreKey +ZwResumeProcess +ZwResumeThread +ZwRollbackComplete +ZwRollbackEnlistment +ZwRollbackTransaction +ZwRollforwardTransactionManager +ZwSaveKey +ZwSaveKeyEx +ZwSaveMergedKeys +ZwSecureConnectPort +ZwSerializeBoot +ZwSetBootEntryOrder +ZwSetBootOptions +ZwSetCachedSigningLevel +ZwSetContextThread +ZwSetDebugFilterState +ZwSetDefaultHardErrorPort +ZwSetDefaultLocale +ZwSetDefaultUILanguage +ZwSetDriverEntryOrder +ZwSetEaFile +ZwSetEvent +ZwSetEventBoostPriority +ZwSetHighEventPair +ZwSetHighWaitLowEventPair +ZwSetIRTimer +ZwSetInformationDebugObject +ZwSetInformationEnlistment +ZwSetInformationFile +ZwSetInformationJobObject +ZwSetInformationKey +ZwSetInformationObject +ZwSetInformationProcess +ZwSetInformationResourceManager +ZwSetInformationThread +ZwSetInformationToken +ZwSetInformationTransaction +ZwSetInformationTransactionManager +ZwSetInformationVirtualMemory +ZwSetInformationWorkerFactory +ZwSetIntervalProfile +ZwSetIoCompletion +ZwSetIoCompletionEx +ZwSetLdtEntries +ZwSetLowEventPair +ZwSetLowWaitHighEventPair +ZwSetQuotaInformationFile +ZwSetSecurityObject +ZwSetSystemEnvironmentValue +ZwSetSystemEnvironmentValueEx +ZwSetSystemInformation +ZwSetSystemPowerState +ZwSetSystemTime +ZwSetThreadExecutionState +ZwSetTimer +ZwSetTimer2 +ZwSetTimerEx +ZwSetTimerResolution +ZwSetUuidSeed +ZwSetValueKey +ZwSetVolumeInformationFile +ZwSetWnfProcessNotificationEvent +ZwShutdownSystem +ZwShutdownWorkerFactory +ZwSignalAndWaitForSingleObject +ZwSinglePhaseReject +ZwStartProfile +ZwStopProfile +ZwSubscribeWnfStateChange +ZwSuspendProcess +ZwSuspendThread +ZwSystemDebugControl +ZwTerminateJobObject +ZwTerminateProcess +ZwTerminateThread +ZwTestAlert +ZwThawRegistry +ZwThawTransactions +ZwTraceControl +ZwTraceEvent +ZwTranslateFilePath +ZwUmsThreadYield +ZwUnloadDriver +ZwUnloadKey +ZwUnloadKey2 +ZwUnloadKeyEx +ZwUnlockFile +ZwUnlockVirtualMemory +ZwUnmapViewOfSection +ZwUnmapViewOfSectionEx +ZwUnsubscribeWnfStateChange +ZwUpdateWnfStateData +ZwVdmControl +ZwWaitForAlertByThreadId +ZwWaitForDebugEvent +ZwWaitForKeyedEvent +ZwWaitForMultipleObjects +ZwWaitForMultipleObjects32 +ZwWaitForSingleObject +ZwWaitForWorkViaWorkerFactory +ZwWaitHighEventPair +ZwWaitLowEventPair +ZwWorkerFactoryWorkerReady +ZwWriteFile +ZwWriteFileGather +ZwWriteRequestData +ZwWriteVirtualMemory +ZwYieldExecution +__C_specific_handler +__chkstk +__isascii +__iscsym +__iscsymf +__jump_unwind +__toascii +_atoi64 +_errno +_fltused DATA +_i64toa +_i64toa_s +_i64tow +_i64tow_s +_itoa +_itoa_s +_itow +_itow_s +_lfind +_ltoa +_ltoa_s +_ltow +_ltow_s +_makepath_s +_memccpy +_memicmp +_setjmp +_setjmpex +_snprintf +_snprintf_s +_snscanf_s +_snwprintf +_snwprintf_s +_snwscanf_s +_splitpath +_splitpath_s +_strcmpi +_stricmp +_strlwr +_strlwr_s +_strnicmp +_strnset_s +_strset_s +_strupr +_strupr_s +_swprintf +_ui64toa +_ui64toa_s +_ui64tow +_ui64tow_s +_ultoa +_ultoa_s +_ultow +_ultow_s +_vscwprintf +_vsnprintf +_vsnprintf_s +_vsnwprintf +_vsnwprintf_s +_vswprintf +_wcsicmp +_wcslwr +_wcslwr_s +_wcsnicmp +_wcsnset_s +_wcsset_s +_wcstoi64 +_wcstoui64 +_wcsupr +_wcsupr_s +_wmakepath_s +_wsplitpath_s +_wtoi +_wtoi64 +_wtol +abs +atan +atoi +atol +bsearch +ceil +cos +fabs +floor +isalnum +isalpha +iscntrl +isdigit +isgraph +islower +isprint +ispunct +isspace +isupper +iswalnum +iswalpha +iswascii +iswctype +iswdigit +iswgraph +iswlower +iswprint +iswspace +iswxdigit +isxdigit +labs +log +longjmp +mbstowcs +memchr +memcmp +memcpy +memcpy_s +memmove +memmove_s +memset +pow +qsort +qsort_s +sin +sprintf +sprintf_s +sqrt +sscanf +sscanf_s +strcat +strcat_s +strchr +strcmp +strcpy +strcpy_s +strcspn +strlen +strncat +strncat_s +strncmp +strncpy +strncpy_s +strnlen +strpbrk +strrchr +strspn +strstr +strtok_s +strtol +strtoul +swprintf +swprintf_s +swscanf_s +tan +tolower +toupper +towlower +towupper +vDbgPrintEx +vDbgPrintExWithPrefix +vsprintf +vsprintf_s +vswprintf_s +wcscat +wcscat_s +wcschr +wcscmp +wcscpy +wcscpy_s +wcscspn +wcslen +wcsncat +wcsncat_s +wcsncmp +wcsncpy +wcsncpy_s +wcsnlen +wcspbrk +wcsrchr +wcsspn +wcsstr +wcstok_s +wcstol +wcstombs +wcstoul diff --git a/src/link.cpp b/src/link.cpp index 215710d6a8..445035eb73 100644 --- a/src/link.cpp +++ b/src/link.cpp @@ -571,6 +571,9 @@ static const MinGWDef mingw_def_list[] = { {"shell32", "lib-common" OS_SEP "shell32.def", true}, {"user32", "lib-common" OS_SEP "user32.def.in", true}, {"kernel32", "lib-common" OS_SEP "kernel32.def.in", true}, + {"ntdll", "libarm32" OS_SEP "ntdll.def", true}, + {"ntdll", "lib32" OS_SEP "ntdll.def", true}, + {"ntdll", "lib64" OS_SEP "ntdll.def", true}, }; struct LinkJob { -- cgit v1.2.3 From eaf545e24c009e308b9463d3c521c28621477b8f Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 19:50:56 -0400 Subject: fix build on windows --- build.zig | 1 + src/buffer.hpp | 10 ++++++++++ src/util.hpp | 10 ++++++++++ std/os/windows.zig | 18 ++---------------- std/unicode.zig | 4 ++-- 5 files changed, 25 insertions(+), 18 deletions(-) (limited to 'src') diff --git a/build.zig b/build.zig index ed9856a437..d6e365b02d 100644 --- a/build.zig +++ b/build.zig @@ -372,6 +372,7 @@ fn addLibUserlandStep(b: *Builder) void { artifact.bundle_compiler_rt = true; artifact.setTarget(builtin.arch, builtin.os, builtin.abi); artifact.linkSystemLibrary("c"); + artifact.linkSystemLibrary("ntdll"); const libuserland_step = b.step("libuserland", "Build the userland compiler library for use in stage1"); libuserland_step.dependOn(&artifact.step); diff --git a/src/buffer.hpp b/src/buffer.hpp index d4a911fc21..d7254c18a7 100644 --- a/src/buffer.hpp +++ b/src/buffer.hpp @@ -136,11 +136,21 @@ static inline bool buf_eql_mem(Buf *buf, const char *mem, size_t mem_len) { return mem_eql_mem(buf_ptr(buf), buf_len(buf), mem, mem_len); } +static inline bool buf_eql_mem_ignore_case(Buf *buf, const char *mem, size_t mem_len) { + assert(buf->list.length); + return mem_eql_mem_ignore_case(buf_ptr(buf), buf_len(buf), mem, mem_len); +} + static inline bool buf_eql_str(Buf *buf, const char *str) { assert(buf->list.length); return buf_eql_mem(buf, str, strlen(str)); } +static inline bool buf_eql_str_ignore_case(Buf *buf, const char *str) { + assert(buf->list.length); + return buf_eql_mem_ignore_case(buf, str, strlen(str)); +} + static inline bool buf_starts_with_mem(Buf *buf, const char *mem, size_t mem_len) { if (buf_len(buf) < mem_len) { return false; diff --git a/src/util.hpp b/src/util.hpp index 6f26725135..1fa33b30f9 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -12,6 +12,7 @@ #include #include #include +#include #if defined(_MSC_VER) @@ -161,6 +162,15 @@ static inline bool mem_eql_mem(const char *a_ptr, size_t a_len, const char *b_pt return false; return memcmp(a_ptr, b_ptr, a_len) == 0; } +static inline bool mem_eql_mem_ignore_case(const char *a_ptr, size_t a_len, const char *b_ptr, size_t b_len) { + if (a_len != b_len) + return false; + for (size_t i = 0; i < a_len; i += 1) { + if (tolower(a_ptr[i]) != tolower(b_ptr[i])) + return false; + } + return true; +} static inline bool mem_eql_str(const char *mem, size_t mem_len, const char *str) { return mem_eql_mem(mem, mem_len, str, strlen(str)); diff --git a/std/os/windows.zig b/std/os/windows.zig index aa97671298..ac76e8f58f 100644 --- a/std/os/windows.zig +++ b/std/os/windows.zig @@ -267,7 +267,7 @@ pub fn GetQueuedCompletionStatus( } pub fn CloseHandle(hObject: HANDLE) void { - assert(ntdll.NtClose(hObject) == STATUS.SUCCESS); + assert(kernel32.CloseHandle(hObject) != 0); } pub fn FindClose(hFindFile: HANDLE) void { @@ -820,24 +820,9 @@ pub fn sliceToPrefixedFileW(s: []const u8) ![PATH_MAX_WIDE + 1]u16 { return sliceToPrefixedSuffixedFileW(s, [_]u16{0}); } -/// TODO once https://github.com/ziglang/zig/issues/2765 and https://github.com/ziglang/zig/issues/2761 are both solved, -/// this can be removed. Callsites that do not have performance bottlenecks -/// in this function should call `sliceToPrefixedFileW` to be future-proof. -pub fn sliceToPrefixedFileW_elidecopy(s: []const u8, result: *[PATH_MAX_WIDE + 1]u16) !void { - return sliceToPrefixedSuffixedFileW_elidecopy(s, [_]u16{0}, result); -} - pub fn sliceToPrefixedSuffixedFileW(s: []const u8, comptime suffix: []const u16) ![PATH_MAX_WIDE + suffix.len]u16 { // TODO https://github.com/ziglang/zig/issues/2765 var result: [PATH_MAX_WIDE + suffix.len]u16 = undefined; - try sliceToPrefixedSuffixedFileW_elidecopy(s, suffix, &result); - return result; -} - -/// TODO once https://github.com/ziglang/zig/issues/2765 and https://github.com/ziglang/zig/issues/2761 are both solved, -/// this can be removed. Callsites that do not have performance bottlenecks -/// in this function should call `sliceToPrefixedSuffixedFileW` to be future-proof. -pub fn sliceToPrefixedSuffixedFileW_elidecopy(s: []const u8, comptime suffix: []const u16, result: *[PATH_MAX_WIDE + suffix.len]u16) !void { // > File I/O functions in the Windows API convert "/" to "\" as part of // > converting the name to an NT-style name, except when using the "\\?\" // > prefix as detailed in the following sections. @@ -859,6 +844,7 @@ pub fn sliceToPrefixedSuffixedFileW_elidecopy(s: []const u8, comptime suffix: [] assert(end_index <= result.len); if (end_index + suffix.len > result.len) return error.NameTooLong; mem.copy(u16, result[end_index..], suffix); + return result; } inline fn MAKELANGID(p: c_ushort, s: c_ushort) LANGID { diff --git a/std/unicode.zig b/std/unicode.zig index 6d47675ac3..2e96147166 100644 --- a/std/unicode.zig +++ b/std/unicode.zig @@ -577,7 +577,7 @@ pub fn utf8ToUtf16Le(utf16le: []u16, utf8: []const u8) !usize { }, 2, 3, 4 => { const next_src_i = src_i + n; - const codepoint = try utf8Decode(utf8[src_i..next_src_i]); + const codepoint = utf8Decode(utf8[src_i..next_src_i]) catch return error.InvalidUtf8; const short = @intCast(u16, codepoint); // TODO surrogate pairs utf16le[dest_i] = switch (builtin.endian) { .Little => short, @@ -586,7 +586,7 @@ pub fn utf8ToUtf16Le(utf16le: []u16, utf8: []const u8) !usize { dest_i += 1; src_i = next_src_i; }, - else => return error.Utf8InvalidStartByte, + else => return error.InvalidUtf8, } } return dest_i; -- cgit v1.2.3