├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── NOTICE ├── README.md ├── magisk ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── common │ ├── post-fs-data.sh │ ├── service.sh │ └── system.prop ├── config │ ├── dfps.txt │ ├── dfps_help_cn.md │ └── dfps_help_en.md ├── initsvc.sh ├── install.sh ├── module.prop └── uninstall.sh ├── source ├── CMakeLists.txt ├── dfps.cpp ├── dfps.h ├── main.cpp ├── modules │ ├── cgroup_listener.cpp │ ├── cgroup_listener.h │ ├── cobridge_type.h │ ├── dynamic_fps.cpp │ ├── dynamic_fps.h │ ├── input_listener.cpp │ ├── input_listener.h │ ├── offscreen_monitor.cpp │ ├── offscreen_monitor.h │ ├── topapp_monitor.cpp │ └── topapp_monitor.h ├── platform │ ├── cobridge.cpp │ ├── cobridge.h │ ├── delayed_worker.cpp │ ├── delayed_worker.h │ ├── heavy_worker.cpp │ ├── heavy_worker.h │ ├── inotifier.cpp │ ├── inotifier.h │ ├── module_base.cpp │ ├── module_base.h │ └── singleton.h ├── utils │ ├── atrace.c │ ├── atrace.h │ ├── backtrace.cpp │ ├── backtrace.h │ ├── fmt_exception.h │ ├── frame_pointer_trace.c │ ├── frame_pointer_trace.h │ ├── inotify.cpp │ ├── inotify.h │ ├── input_reader.cpp │ ├── input_reader.h │ ├── misc.cpp │ ├── misc.h │ ├── misc_android.cpp │ ├── misc_android.h │ ├── sched_ctrl.c │ ├── sched_ctrl.h │ ├── time_counter.cpp │ └── time_counter.h ├── version.c.in └── version.h └── thirdparty ├── CMakeLists.txt ├── scnlib ├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── cmake │ ├── FindSphinx.cmake │ ├── config.cmake.in │ ├── flags.cmake │ └── sanitizers.cmake ├── include │ └── scn │ │ ├── all.h │ │ ├── detail │ │ ├── args.h │ │ ├── config.h │ │ ├── context.h │ │ ├── file.h │ │ ├── fwd.h │ │ ├── istream.h │ │ ├── locale.h │ │ ├── parse_context.h │ │ ├── range.h │ │ ├── ranges │ │ │ ├── custom_impl.h │ │ │ ├── ranges.h │ │ │ ├── std_impl.h │ │ │ └── util.h │ │ ├── reader.h │ │ ├── result.h │ │ ├── scan.h │ │ ├── small_vector.h │ │ ├── span.h │ │ ├── string_view.h │ │ ├── tuple_return.h │ │ ├── util.h │ │ ├── util_min.h │ │ ├── visitor.h │ │ └── vscan.h │ │ ├── fwd.h │ │ ├── istream.h │ │ ├── scn.h │ │ └── tuple_return.h ├── licenses │ ├── README.md │ ├── fmt.rst │ └── nanorange.txt └── src │ ├── CMakeLists.txt │ ├── deps │ ├── CMakeLists.txt │ └── fast_float │ │ └── single_include │ │ └── fast_float │ │ └── fast_float.h │ ├── file.cpp │ ├── locale.cpp │ ├── reader_float.cpp │ ├── reader_int.cpp │ └── vscan.cpp └── spdlog └── spdlog ├── async.h ├── async_logger-inl.h ├── async_logger.h ├── cfg ├── argv.h ├── env.h ├── helpers-inl.h └── helpers.h ├── common-inl.h ├── common.h ├── details ├── backtracer-inl.h ├── backtracer.h ├── circular_q.h ├── console_globals.h ├── file_helper-inl.h ├── file_helper.h ├── fmt_helper.h ├── log_msg-inl.h ├── log_msg.h ├── log_msg_buffer-inl.h ├── log_msg_buffer.h ├── mpmc_blocking_q.h ├── null_mutex.h ├── os-inl.h ├── os.h ├── periodic_worker-inl.h ├── periodic_worker.h ├── registry-inl.h ├── registry.h ├── synchronous_factory.h ├── tcp_client-windows.h ├── tcp_client.h ├── thread_pool-inl.h ├── thread_pool.h └── windows_include.h ├── fmt ├── bin_to_hex.h ├── bundled │ ├── args.h │ ├── chrono.h │ ├── color.h │ ├── compile.h │ ├── core.h │ ├── format-inl.h │ ├── format.h │ ├── locale.h │ ├── os.h │ ├── ostream.h │ ├── printf.h │ ├── ranges.h │ └── xchar.h ├── chrono.h ├── compile.h ├── fmt.h ├── ostr.h └── xchar.h ├── formatter.h ├── fwd.h ├── logger-inl.h ├── logger.h ├── pattern_formatter-inl.h ├── pattern_formatter.h ├── sinks ├── android_sink.h ├── ansicolor_sink-inl.h ├── ansicolor_sink.h ├── base_sink-inl.h ├── base_sink.h ├── basic_file_sink-inl.h ├── basic_file_sink.h ├── daily_file_sink.h ├── dist_sink.h ├── dup_filter_sink.h ├── hourly_file_sink.h ├── mongo_sink.h ├── msvc_sink.h ├── null_sink.h ├── ostream_sink.h ├── qt_sinks.h ├── ringbuffer_sink.h ├── rotating_file_sink-inl.h ├── rotating_file_sink.h ├── sink-inl.h ├── sink.h ├── stdout_color_sinks-inl.h ├── stdout_color_sinks.h ├── stdout_sinks-inl.h ├── stdout_sinks.h ├── syslog_sink.h ├── systemd_sink.h ├── tcp_sink.h ├── win_eventlog_sink.h ├── wincolor_sink-inl.h └── wincolor_sink.h ├── spdlog-inl.h ├── spdlog.h ├── stopwatch.h ├── tweakme.h └── version.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | /.vscode 3 | /build 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/README.md -------------------------------------------------------------------------------- /magisk/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /magisk/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /magisk/common/post-fs-data.sh: -------------------------------------------------------------------------------- 1 | MODDIR=${0%/*} 2 | -------------------------------------------------------------------------------- /magisk/common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/common/service.sh -------------------------------------------------------------------------------- /magisk/common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/common/system.prop -------------------------------------------------------------------------------- /magisk/config/dfps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/config/dfps.txt -------------------------------------------------------------------------------- /magisk/config/dfps_help_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/config/dfps_help_cn.md -------------------------------------------------------------------------------- /magisk/config/dfps_help_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/config/dfps_help_en.md -------------------------------------------------------------------------------- /magisk/initsvc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/initsvc.sh -------------------------------------------------------------------------------- /magisk/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/install.sh -------------------------------------------------------------------------------- /magisk/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/module.prop -------------------------------------------------------------------------------- /magisk/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/magisk/uninstall.sh -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/dfps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/dfps.cpp -------------------------------------------------------------------------------- /source/dfps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/dfps.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/modules/cgroup_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/cgroup_listener.cpp -------------------------------------------------------------------------------- /source/modules/cgroup_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/cgroup_listener.h -------------------------------------------------------------------------------- /source/modules/cobridge_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/cobridge_type.h -------------------------------------------------------------------------------- /source/modules/dynamic_fps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/dynamic_fps.cpp -------------------------------------------------------------------------------- /source/modules/dynamic_fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/dynamic_fps.h -------------------------------------------------------------------------------- /source/modules/input_listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/input_listener.cpp -------------------------------------------------------------------------------- /source/modules/input_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/input_listener.h -------------------------------------------------------------------------------- /source/modules/offscreen_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/offscreen_monitor.cpp -------------------------------------------------------------------------------- /source/modules/offscreen_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/offscreen_monitor.h -------------------------------------------------------------------------------- /source/modules/topapp_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/topapp_monitor.cpp -------------------------------------------------------------------------------- /source/modules/topapp_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/modules/topapp_monitor.h -------------------------------------------------------------------------------- /source/platform/cobridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/cobridge.cpp -------------------------------------------------------------------------------- /source/platform/cobridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/cobridge.h -------------------------------------------------------------------------------- /source/platform/delayed_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/delayed_worker.cpp -------------------------------------------------------------------------------- /source/platform/delayed_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/delayed_worker.h -------------------------------------------------------------------------------- /source/platform/heavy_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/heavy_worker.cpp -------------------------------------------------------------------------------- /source/platform/heavy_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/heavy_worker.h -------------------------------------------------------------------------------- /source/platform/inotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/inotifier.cpp -------------------------------------------------------------------------------- /source/platform/inotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/inotifier.h -------------------------------------------------------------------------------- /source/platform/module_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/module_base.cpp -------------------------------------------------------------------------------- /source/platform/module_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/module_base.h -------------------------------------------------------------------------------- /source/platform/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/platform/singleton.h -------------------------------------------------------------------------------- /source/utils/atrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/atrace.c -------------------------------------------------------------------------------- /source/utils/atrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/atrace.h -------------------------------------------------------------------------------- /source/utils/backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/backtrace.cpp -------------------------------------------------------------------------------- /source/utils/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/backtrace.h -------------------------------------------------------------------------------- /source/utils/fmt_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/fmt_exception.h -------------------------------------------------------------------------------- /source/utils/frame_pointer_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/frame_pointer_trace.c -------------------------------------------------------------------------------- /source/utils/frame_pointer_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/frame_pointer_trace.h -------------------------------------------------------------------------------- /source/utils/inotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/inotify.cpp -------------------------------------------------------------------------------- /source/utils/inotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/inotify.h -------------------------------------------------------------------------------- /source/utils/input_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/input_reader.cpp -------------------------------------------------------------------------------- /source/utils/input_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/input_reader.h -------------------------------------------------------------------------------- /source/utils/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/misc.cpp -------------------------------------------------------------------------------- /source/utils/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/misc.h -------------------------------------------------------------------------------- /source/utils/misc_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/misc_android.cpp -------------------------------------------------------------------------------- /source/utils/misc_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/misc_android.h -------------------------------------------------------------------------------- /source/utils/sched_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/sched_ctrl.c -------------------------------------------------------------------------------- /source/utils/sched_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/sched_ctrl.h -------------------------------------------------------------------------------- /source/utils/time_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/time_counter.cpp -------------------------------------------------------------------------------- /source/utils/time_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/utils/time_counter.h -------------------------------------------------------------------------------- /source/version.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/version.c.in -------------------------------------------------------------------------------- /source/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/source/version.h -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/scnlib/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/.clang-format -------------------------------------------------------------------------------- /thirdparty/scnlib/.gitignore: -------------------------------------------------------------------------------- 1 | benchmark/bloat/out/ 2 | test/fuzz/corpus/* 3 | -------------------------------------------------------------------------------- /thirdparty/scnlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/scnlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/LICENSE -------------------------------------------------------------------------------- /thirdparty/scnlib/cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /thirdparty/scnlib/cmake/config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include(${CMAKE_CURRENT_LIST_DIR}/scnTargets.cmake) 4 | -------------------------------------------------------------------------------- /thirdparty/scnlib/cmake/flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/cmake/flags.cmake -------------------------------------------------------------------------------- /thirdparty/scnlib/cmake/sanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/cmake/sanitizers.cmake -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/all.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/args.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/config.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/context.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/file.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/fwd.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/istream.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/locale.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/parse_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/parse_context.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/range.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/ranges/custom_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/ranges/custom_impl.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/ranges/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/ranges/ranges.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/ranges/std_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/ranges/std_impl.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/ranges/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/ranges/util.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/reader.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/result.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/scan.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/small_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/small_vector.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/span.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/string_view.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/tuple_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/tuple_return.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/util.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/util_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/util_min.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/visitor.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/detail/vscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/detail/vscan.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/fwd.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/istream.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/scn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/scn.h -------------------------------------------------------------------------------- /thirdparty/scnlib/include/scn/tuple_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/include/scn/tuple_return.h -------------------------------------------------------------------------------- /thirdparty/scnlib/licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/licenses/README.md -------------------------------------------------------------------------------- /thirdparty/scnlib/licenses/fmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/licenses/fmt.rst -------------------------------------------------------------------------------- /thirdparty/scnlib/licenses/nanorange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/licenses/nanorange.txt -------------------------------------------------------------------------------- /thirdparty/scnlib/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(deps) 2 | -------------------------------------------------------------------------------- /thirdparty/scnlib/src/deps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/scnlib/src/deps/fast_float/single_include/fast_float/fast_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/src/deps/fast_float/single_include/fast_float/fast_float.h -------------------------------------------------------------------------------- /thirdparty/scnlib/src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/src/file.cpp -------------------------------------------------------------------------------- /thirdparty/scnlib/src/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/src/locale.cpp -------------------------------------------------------------------------------- /thirdparty/scnlib/src/reader_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/src/reader_float.cpp -------------------------------------------------------------------------------- /thirdparty/scnlib/src/reader_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/src/reader_int.cpp -------------------------------------------------------------------------------- /thirdparty/scnlib/src/vscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/scnlib/src/vscan.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/async.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/async_logger.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/cfg/env.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/common-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/common.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/os.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/registry.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/args.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/bundled/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/bundled/xchar.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/compile.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fmt/xchar.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/formatter.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/fwd.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/logger-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/logger.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/hourly_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/hourly_file_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/mongo_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/mongo_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/qt_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/qt_sinks.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/spdlog.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/stopwatch.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/tweakme.h -------------------------------------------------------------------------------- /thirdparty/spdlog/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yc9559/dfps/HEAD/thirdparty/spdlog/spdlog/version.h --------------------------------------------------------------------------------