ladybird/Userland/Libraries/LibCore
Nico Weber 197c5729d1 LibCore: Add ElapsedTimer::elapsed_milliseconds()
It does the same thing as elapsed(), but has a clearer name.
The hope is we'll move everything to the new name over time
and then remove the old name.
2023-05-24 15:50:43 +02:00
..
Account.cpp AK+Everywhere: Change AK::fill_with_random to accept a Bytes object 2023-04-03 15:53:49 +02:00
Account.h
AnonymousBuffer.cpp
AnonymousBuffer.h
ArgsParser.cpp LibCore: Implement integral ArgsParser positionals through a template 2023-04-30 21:12:46 +03:30
ArgsParser.h LibCore: Implement integral ArgsParser positionals through a template 2023-04-30 21:12:46 +03:30
CMakeLists.txt LibCore: Big first step towards pluggable Core::EventLoop 2023-04-25 14:48:40 +02:00
Command.cpp LibCore: Migrate Command from Deprecated{File,String} 2023-05-19 23:31:20 +02:00
Command.h LibCore: Migrate Command from Deprecated{File,String} 2023-05-19 23:31:20 +02:00
ConfigFile.cpp AK: Add the Input word to input-only buffered streams 2023-05-09 11:18:46 +02:00
ConfigFile.h AK: Add the Input word to input-only buffered streams 2023-05-09 11:18:46 +02:00
DateTime.cpp LibCore: Add DateTime::to_string() 2023-03-27 20:29:51 +01:00
DateTime.h LibCore: Add DateTime::to_string() 2023-03-27 20:29:51 +01:00
Debounce.h
DeferredInvocationContext.h
DeprecatedFile.cpp LibCore: Remove recursive copy API from DeprecatedFile 2023-05-19 21:12:15 +02:00
DeprecatedFile.h LibCore: Remove recursive copy API from DeprecatedFile 2023-05-19 21:12:15 +02:00
Directory.cpp LibCore: Introduce a new directory iteration API 2023-03-05 20:23:42 +01:00
Directory.h LibCore: Introduce a new directory iteration API 2023-03-05 20:23:42 +01:00
DirectoryEntry.cpp LibCore: Don't use DT_WHT in DirectoryEntry on OpenBSD 2023-03-06 12:53:01 +00:00
DirectoryEntry.h LibCore: Expose file type from DirIterator 2023-03-05 20:23:42 +01:00
DirIterator.cpp LibCore+Everywhere: Return an Error from DirIterator::error() 2023-03-05 20:23:42 +01:00
DirIterator.h LibCore+Everywhere: Return an Error from DirIterator::error() 2023-03-05 20:23:42 +01:00
ElapsedTimer.cpp LibCore: Add ElapsedTimer::elapsed_milliseconds() 2023-05-24 15:50:43 +02:00
ElapsedTimer.h LibCore: Add ElapsedTimer::elapsed_milliseconds() 2023-05-24 15:50:43 +02:00
Event.cpp
Event.h LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
EventLoop.cpp LibCore: Cancel jobs on event loop exit 2023-05-17 22:40:15 -06:00
EventLoop.h LibCore: Remove unused cruft in EventLoop.h 2023-04-25 18:01:35 +02:00
EventLoopImplementation.cpp LibCore: Move post_event() back to EventLoopImplementation 2023-04-26 19:17:04 +01:00
EventLoopImplementation.h LibCore: Remove unused EventLoopManager::wake() 2023-04-26 19:17:04 +01:00
EventLoopImplementationUnix.cpp LibCore: Remove unused EventLoopManager::wake() 2023-04-26 19:17:04 +01:00
EventLoopImplementationUnix.h LibCore: Remove unused EventLoopManager::wake() 2023-04-26 19:17:04 +01:00
File.cpp AK: Rename Stream::{read,write} to Stream::{read_some,write_some} 2023-03-13 15:16:20 +00:00
File.h AK: Add OutputBufferedStream 2023-05-09 11:18:46 +02:00
FilePermissionsMask.cpp
FilePermissionsMask.h Everywhere: Remove unused DeprecatedString includes 2023-04-09 22:00:54 +02:00
FileWatcher.h
FileWatcherLinux.cpp LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
FileWatcherMacOS.mm LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
FileWatcherSerenity.cpp LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
FileWatcherUnimplemented.cpp
Forward.h LibCore: Add Promise to the forward declare header 2023-03-13 12:12:17 +00:00
GetPassword.cpp
GetPassword.h
Group.cpp LibCore+Utilities: Replace uses of strpbrk with find_any_of() 2023-02-25 22:31:17 +01:00
Group.h
IODevice.cpp
IODevice.h
LocalServer.cpp LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
LocalServer.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
LockFile.cpp
LockFile.h
MappedFile.cpp Everywhere: Remove unused DeprecatedString includes 2023-04-09 22:00:54 +02:00
MappedFile.h LibCore: Add MappedFile::map_from_file() 2023-02-16 10:56:01 +00:00
MimeData.cpp LibCore: Support the WebM file extension when determining MIME type 2023-05-16 12:48:39 +02:00
MimeData.h LibCore: Explicitly mark HashMap copy 2023-05-19 22:33:57 +02:00
NetworkJob.cpp Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
NetworkJob.h AK: Rename Stream::{read,write} to Stream::{read_some,write_some} 2023-03-13 15:16:20 +00:00
NetworkResponse.h
Notifier.cpp LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
Notifier.h LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
Object.cpp LibCore: Big first step towards pluggable Core::EventLoop 2023-04-25 14:48:40 +02:00
Object.h LibCore: Use StringView in Object::find_{child,descendant}_of_type_named 2023-05-15 06:39:22 +02:00
Process.cpp LibCore: Get the environment in Core::Process::spawn() on macOS 2023-03-24 22:06:38 +00:00
Process.h LibCore: Add KeepAsChild option to Core::Process::spawn() 2023-03-24 22:06:38 +00:00
ProcessStatisticsReader.cpp Kernel+Userland: Remove the nfds entry from /sys/kernel/processes 2023-04-21 13:55:23 +02:00
ProcessStatisticsReader.h Kernel+Userland: Remove the nfds entry from /sys/kernel/processes 2023-04-21 13:55:23 +02:00
Promise.h LibCore+Userland: Make Promise's on_resolve fallible 2023-03-13 12:12:17 +00:00
Property.cpp
Property.h
Proxy.h
SecretString.cpp
SecretString.h
SessionManagement.cpp
SessionManagement.h
SharedCircularQueue.h
Socket.cpp LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
Socket.h LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
SocketAddress.h
SOCKSProxyClient.cpp LibCore: Use length-checking stream reads and writes for SOCKS5 2023-03-13 15:16:20 +00:00
SOCKSProxyClient.h AK: Rename Stream::{read,write} to Stream::{read_some,write_some} 2023-03-13 15:16:20 +00:00
StandardPaths.cpp Everywhere: Use _{short_,}string to create Strings from literals 2023-02-25 20:51:49 +01:00
StandardPaths.h
System.cpp Kernel+Userland: Split bind-mounting and re-mounting from mount syscall 2023-05-17 23:39:15 -06:00
System.h Kernel+Userland: Split bind-mounting and re-mounting from mount syscall 2023-05-17 23:39:15 -06:00
SystemServerTakeover.cpp LibCore: Move Stream-based sockets into the Core namespace 2023-02-13 00:50:07 +00:00
SystemServerTakeover.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
TCPServer.cpp LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
TCPServer.h LibCore: Remove Stream.h 2023-02-13 00:50:07 +00:00
ThreadEventQueue.cpp LibCore: Cancel jobs on event loop exit 2023-05-17 22:40:15 -06:00
ThreadEventQueue.h LibCore: Cancel jobs on event loop exit 2023-05-17 22:40:15 -06:00
Timer.cpp
Timer.h
UDPServer.cpp LibCore: Simplify Core::Notifier by only allowing one event type 2023-04-25 14:48:40 +02:00
UDPServer.h
UmaskScope.h
Version.cpp LibCore+LibGUI+About: Use String in Core::Version and GUI::AboutDialog 2023-03-03 15:23:47 +01:00
Version.h LibCore+LibGUI+About: Use String in Core::Version and GUI::AboutDialog 2023-03-03 15:23:47 +01:00