serenity/Userland/Libraries/LibCore
Andreas Kling 5a3f5582ba LibCore: Add try_create(...) helper to all Core::Object derived classes
This is like construct(...) but returns ErrorOr<NonnullRefPtr<T>>.
2021-11-23 15:44:59 +01:00
..
Account.cpp LibCore: Don't include crypt.h in Account.cpp on FreeBSD 2021-11-16 19:06:13 +00:00
Account.h LibCore: Replace Result<T, E> use with ErrorOr<T> in Core::Account 2021-11-08 00:35:27 +01:00
AnonymousBuffer.cpp AK: Bring AK::Error into the global namespace 2021-11-08 00:35:27 +01:00
AnonymousBuffer.h LibCore: Use ErrorOr<T> in Core::AnonymousBuffer 2021-11-08 00:35:27 +01:00
ArgsParser.cpp LibCore: Make ArgsParser '--help' description more general 2021-11-01 21:12:58 +01:00
ArgsParser.h LibCore: Let ArgsParser::parse() accept Main::Arguments 2021-11-22 21:13:42 -08:00
CMakeLists.txt LibCore+AK: Move MappedFile from AK to LibCore 2021-11-23 11:33:36 +01: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 LibCore: Fix off-by-one in DateTime::{create,set_time} day default arg 2021-10-30 10:15:49 +02:00
DeferredInvocationContext.h
DirIterator.cpp
DirIterator.h
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 AK: Make JSON parser return ErrorOr<JsonValue> (instead of Optional) 2021-11-17 00:21:10 +01:00
EventLoop.h LibCore: Add Core::EventLoop::spin_until(Function<bool()>) 2021-09-25 19:32:14 +02:00
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
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 ErrorOr<T> for Core::get_password() 2021-11-08 00:35:27 +01:00
GetPassword.h LibCore: Use ErrorOr<T> for Core::get_password() 2021-11-08 00:35:27 +01:00
IODevice.cpp Everywhere: Pass AK::StringView by value 2021-11-11 01:27:46 +01:00
IODevice.h Everywhere: Pass AK::StringView by value 2021-11-11 01:27:46 +01:00
LocalServer.cpp AK+LibCore: Standardize on AK_OS_MACOS instead of __APPLE__ 2021-09-12 18:31:10 +02:00
LocalServer.h
LocalSocket.cpp LibCore: Make LocalSocket takeover mechanism return ErrorOr<T> 2021-11-23 11:33:36 +01: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 Everywhere: Pass AK::ReadonlyBytes by value 2021-11-11 01:27:46 +01:00
MimeData.h Everywhere: Pass AK::ReadonlyBytes by value 2021-11-11 01:27:46 +01: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+LibGUI: Make ObjectClassRegistration::construct() nullable 2021-11-02 17:53:22 +01:00
Object.h LibCore: Add try_create(...) helper to all Core::Object derived classes 2021-11-23 15:44:59 +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 LibCore: Add SecretString, a buffer that is zero'd on destruction 2021-09-12 16:36:52 +02:00
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
System.cpp LibCore: Add syscall wrappers for read() and write() 2021-11-23 15:44:59 +01:00
System.h LibCore: Add syscall wrappers for read() and write() 2021-11-23 15:44:59 +01:00
TCPServer.cpp
TCPServer.h
TCPSocket.cpp
TCPSocket.h
Timer.cpp
Timer.h
UDPServer.cpp
UDPServer.h
UDPSocket.cpp
UDPSocket.h
Version.cpp
Version.h