ladybird/Userland/Libraries/LibCore
2022-01-02 22:02:16 +01:00
..
Account.cpp LibCore: Mark 'Read options' parameter [[maybe_unused]] in Account.cpp 2022-01-02 22:02:16 +01:00
Account.h LibCore+id: Make more use of Core::System wrappers in Core::Account 2022-01-02 18:08:02 +01:00
AnonymousBuffer.cpp AK: Bring AK::Error into the global namespace 2021-11-08 00:35:27 +01:00
AnonymousBuffer.h LibIPC+IPCCompiler+AK: Make IPC value decoders return ErrorOr<void> 2021-11-28 23:14:19 +01:00
ArgsParser.cpp Userland: Use Core::ArgsParser's Vector<StringView> API everywhere 2021-11-26 23:27:57 +01:00
ArgsParser.h Userland: Use Core::ArgsParser's Vector<StringView> API everywhere 2021-11-26 23:27:57 +01:00
CMakeLists.txt LibCore: Add FilePermissionsMask 2022-01-01 17:33:43 +00:00
Command.cpp
Command.h
ConfigFile.cpp Base+LibCore: Store booleans in human-readable format 2021-11-04 23:44:02 +01:00
ConfigFile.h
DateTime.cpp
DateTime.h LibIPC+IPCCompiler+AK: Make IPC value decoders return ErrorOr<void> 2021-11-28 23:14:19 +01:00
DeferredInvocationContext.h
DirIterator.cpp LibCore: Allow moving, but not copying, DirIterator 2021-11-23 22:58:05 +01:00
DirIterator.h LibCore: Allow moving, but not copying, DirIterator 2021-11-23 22:58:05 +01:00
ElapsedTimer.cpp LibCore: Add ElapsedTimer::reset() 2021-10-28 11:21:18 +02:00
ElapsedTimer.h LibCore: Add ElapsedTimer::reset() 2021-10-28 11:21:18 +02:00
Event.cpp
Event.h
EventLoop.cpp LibCore: Unconditionally report error in EventLoop::wait_for_event 2021-12-21 13:15:17 -08:00
EventLoop.h
File.cpp Everywhere: Move shared library checks into a common function 2021-11-10 14:42:49 +01:00
File.h Everywhere: Move shared library checks into a common function 2021-11-10 14:42:49 +01:00
FilePermissionsMask.cpp LibCore: Add FilePermissionsMask 2022-01-01 17:33:43 +00:00
FilePermissionsMask.h LibCore: Add FilePermissionsMask 2022-01-01 17:33:43 +00:00
FileStream.h LibCore: Use ErrorOr<T> for Core::File::open() 2021-11-08 00:35:27 +01:00
FileWatcher.cpp LibCore: Replace Result<T, E> use with ErrorOr<T> in Core::FileWatcher 2021-11-08 00:35:27 +01:00
FileWatcher.h AK: Convert AK::Format formatting helpers to returning ErrorOr<void> 2021-11-17 00:21:13 +01:00
Forward.h
GetPassword.cpp LibCore: Use LibCore syscall wrappers in get_password() 2021-11-30 23:34:40 +01:00
GetPassword.h LibCore: Use ErrorOr<T> for Core::get_password() 2021-11-08 00:35:27 +01:00
IODevice.cpp LibCore: Add support for range-based for loops on LineIterators 2021-12-12 14:06:38 +03:30
IODevice.h LibCore: Add support for range-based for loops on LineIterators 2021-12-12 14:06:38 +03:30
LocalServer.cpp LibCore: Make LocalServer::take_over_from_system_server() return ErrorOr 2021-12-06 19:22:16 +01:00
LocalServer.h LibCore: Remove LocalServer::on_ready_to_accept 2021-12-16 22:21:35 +03:30
LocalSocket.cpp LibCore: Add OpenBSD headers to System and LocalSocket 2021-12-29 03:46:56 -08:00
LocalSocket.h LibCore: Make LocalSocket takeover mechanism return ErrorOr<T> 2021-11-23 11:33:36 +01:00
LockFile.cpp
LockFile.h
MappedFile.cpp LibCore: Use open() wrapper in Core::MappedFile :^) 2021-11-23 12:23:54 +01:00
MappedFile.h LibCore+AK: Move MappedFile from AK to LibCore 2021-11-23 11:33:36 +01:00
MimeData.cpp LibCore: Add support for the image/x-qoi mime type 2021-12-21 13:27:27 +01:00
MimeData.h LibCore: Avoid implicitly copying ByteBuffer 2021-12-08 09:46:13 -08:00
NetworkJob.cpp LibHTTP: Respect the 'Connection: close' header on keep-alive jobs 2021-09-30 11:46:37 +02:00
NetworkJob.h LibHTTP: Respect the 'Connection: close' header on keep-alive jobs 2021-09-30 11:46:37 +02:00
NetworkResponse.cpp
NetworkResponse.h
Notifier.cpp
Notifier.h
Object.cpp LibCore: Add Core::Object::try_add<T>(...) 2021-11-24 13:52:01 +01:00
Object.h LibCore: Add Core::Object::try_add<T>(...) 2021-11-24 13:52:01 +01:00
Process.cpp
Process.h
ProcessStatisticsReader.cpp AK: Make JSON parser return ErrorOr<JsonValue> (instead of Optional) 2021-11-17 00:21:10 +01:00
ProcessStatisticsReader.h
Promise.h Libraries: Fix visibility of Object-derivative constructors 2021-11-02 22:56:53 +01:00
Property.cpp
Property.h
SecretString.cpp LibCore: Avoid buffer overrun when invoking crypt() with a SecretString 2021-10-19 18:19:33 +02:00
SecretString.h
Socket.cpp LibCore: Add a Socket::set_idle() API that turns the notifiers on/off 2021-10-04 15:31:26 +02:00
Socket.h LibCore: Add a Socket::set_idle() API that turns the notifiers on/off 2021-10-04 15:31:26 +02:00
SocketAddress.h AK: Convert AK::Format formatting helpers to returning ErrorOr<void> 2021-11-17 00:21:13 +01:00
StandardPaths.cpp
StandardPaths.h
Stream.cpp LibCore: Implement the Serenity Stream API classes 2021-12-16 22:21:35 +03:30
Stream.h LibCore: Fix OOB read in Stream::BufferedSeekable::read_until_any_of 2022-01-01 14:44:02 +01:00
System.cpp LibCore: Add Core::System wrappers for getspent() and getspnam() 2022-01-02 18:08:02 +01:00
System.h LibCore: Add Core::System wrappers for getspent() and getspnam() 2022-01-02 18:08:02 +01:00
TCPServer.cpp LibCore+Services: Make TCPServer propagate errors 2021-12-27 22:00:01 +01:00
TCPServer.h LibCore+Services: Make TCPServer propagate errors 2021-12-27 22:00:01 +01:00
TCPSocket.cpp
TCPSocket.h
Timer.cpp LibCore: Add Core::Timer::set_active(bool) 2021-12-25 14:20:13 +01:00
Timer.h LibCore: Add Core::Timer::set_active(bool) 2021-12-25 14:20:13 +01:00
UDPServer.cpp LibCore+LookupServer: Implement and use UDPServer::send 2021-12-16 22:21:35 +03:30
UDPServer.h LibCore+LookupServer: Implement and use UDPServer::send 2021-12-16 22:21:35 +03:30
UDPSocket.cpp
UDPSocket.h
UmaskScope.h LibCore: Add Core::UmaskScope to set and unset a temporary umask 2022-01-02 18:08:02 +01:00
Version.cpp
Version.h