ladybird/Userland/Libraries/LibCore
Timothy Flynn 05f41382bb Userland: Properly define IPC::encode and IPC::decode specializations
In order to avoid the base encode/decode methods from being used (and
failing a static assertion), we must be sure to declare/define the
custom type implementations as template specializations.

After this, LibIPC is no longer sensitive to include order.
2022-11-15 13:25:51 -05:00
..
Account.cpp LibCore: Add query for all accounts and groups 2022-11-13 17:49:03 -07:00
Account.h LibCore: Add query for all accounts and groups 2022-11-13 17:49:03 -07:00
AnonymousBuffer.cpp
AnonymousBuffer.h Userland: Properly define IPC::encode and IPC::decode specializations 2022-11-15 13:25:51 -05:00
ArgsParser.cpp AK+Everywhere: Turn bool keep_empty to an enum in split* functions 2022-10-24 23:29:18 +01:00
ArgsParser.h
CMakeLists.txt Everywhere: Mark dependencies of most targets as PRIVATE 2022-11-01 14:49:09 +00:00
Command.cpp Everywhere: Replace uses of __serenity__ with AK_OS_SERENITY 2022-10-10 12:23:12 +02:00
Command.h Everywhere: Rename CommandResult stdout, stderr members to output, error 2022-03-27 16:41:39 -07:00
ConfigFile.cpp LibCore+LibConfig+ConfigServer: Add Config::{add,remove}_group() 2022-10-01 13:39:10 +03:30
ConfigFile.h LibCore+LibConfig+ConfigServer: Add Config::{add,remove}_group() 2022-10-01 13:39:10 +03:30
DateTime.cpp
DateTime.h Userland: Properly define IPC::encode and IPC::decode specializations 2022-11-15 13:25:51 -05:00
Debounce.h
DeferredInvocationContext.h
Directory.cpp LibCore: Add Directory::chown() API and use it in Core::Account 2022-08-15 17:18:11 +02:00
Directory.h LibCore: Add Directory::chown() API and use it in Core::Account 2022-08-15 17:18:11 +02:00
DirIterator.cpp Userland: Consolidate most PATH resolving into a single implementation 2022-08-23 19:00:04 +01:00
DirIterator.h Userland: Consolidate most PATH resolving into a single implementation 2022-08-23 19:00:04 +01:00
ElapsedTimer.cpp
ElapsedTimer.h
Event.cpp Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
Event.h
EventLoop.cpp Everywhere: Replace uses of __serenity__ with AK_OS_SERENITY 2022-10-10 12:23:12 +02:00
EventLoop.h
File.cpp LibCore: Handle resolving executable paths even when PATH is null 2022-11-04 11:40:41 -04:00
File.h LibCore: Actually tell people to stop using Core::File in new code 2022-09-20 07:48:45 -04:00
FilePermissionsMask.cpp
FilePermissionsMask.h
FileStream.h
FileWatcher.cpp Everywhere: Replace uses of __serenity__ with AK_OS_SERENITY 2022-10-10 12:23:12 +02:00
FileWatcher.h
Forward.h
GetPassword.cpp
GetPassword.h
Group.cpp LibCore: Add query for all accounts and groups 2022-11-13 17:49:03 -07:00
Group.h LibCore: Add query for all accounts and groups 2022-11-13 17:49:03 -07:00
InputBitStream.h LibCore: Add LittleEndianInputBitStream 2022-05-21 22:41:40 +02:00
IODevice.cpp
IODevice.h
LocalServer.cpp LibCore: Add support for LocalServer to propogate accept() errors 2022-11-08 19:58:34 -05:00
LocalServer.h LibCore: Add support for LocalServer to propogate accept() errors 2022-11-08 19:58:34 -05:00
LockFile.cpp
LockFile.h
MappedFile.cpp
MappedFile.h
MemoryStream.h LibCore: Allow MemoryStream::seek to go to EOF 2022-11-13 18:51:18 -07:00
MimeData.cpp LibCore: Add MIME sniffing for MP3 and WAV 2022-08-16 13:58:51 +01:00
MimeData.h
NetworkJob.cpp Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
NetworkJob.h
NetworkResponse.h
Notifier.cpp
Notifier.h
Object.cpp
Object.h LibCore: Invoke forward from the global namespace inside C_OBJECT 2022-11-14 13:43:24 -05:00
Process.cpp LibCore: Add argument to specify working directory in Process::spawn 2022-10-17 01:37:58 +02:00
Process.h LibCore: Add argument to specify working directory in Process::spawn 2022-10-17 01:37:58 +02:00
ProcessStatisticsReader.cpp LibCore: Use new global variables at /sys/kernel/ directory 2022-10-25 15:33:34 -06:00
ProcessStatisticsReader.h LibCore: Use new global variables at /sys/kernel/ directory 2022-10-25 15:33:34 -06:00
Promise.h
Property.cpp
Property.h
Proxy.h Userland: Properly define IPC::encode and IPC::decode specializations 2022-11-15 13:25:51 -05:00
SecretString.cpp
SecretString.h
SessionManagement.cpp LibCore: Create Core::SessionManagement for session management 2022-10-03 11:11:29 +02:00
SessionManagement.h LibCore: Create Core::SessionManagement for session management 2022-10-03 11:11:29 +02:00
SharedCircularQueue.h LibCore: Fix deadlock in SharedSingleProducerCircularQueue 2022-08-23 01:03:10 +02:00
SocketAddress.h
SOCKSProxyClient.cpp
SOCKSProxyClient.h
StandardPaths.cpp LibCore: Add documents_directory() to StandardPaths 2022-10-01 13:39:10 +03:30
StandardPaths.h LibCore: Add documents_directory() to StandardPaths 2022-10-01 13:39:10 +03:30
Stream.cpp LibCore: Add standard_{output, input, error} functions to File::Stream 2022-10-12 12:00:21 -06:00
Stream.h LibCore: Limit to the user buffer size when reading lines from a stream 2022-10-27 13:08:19 +02:00
System.cpp Userland: Add support for jails 2022-11-05 18:00:58 -06:00
System.h Userland: Add support for jails 2022-11-05 18:00:58 -06:00
SystemServerTakeover.cpp
SystemServerTakeover.h
TCPServer.cpp LibCore: Allow TCPServer's port to be reused after it exits 2022-11-14 13:43:24 -05:00
TCPServer.h LibCore: Allow TCPServer's port to be reused after it exits 2022-11-14 13:43:24 -05:00
TempFile.cpp
TempFile.h
Timer.cpp
Timer.h
UDPServer.cpp
UDPServer.h
UmaskScope.h Everywhere: Fix order of includes and #pragma once 2022-09-18 18:30:05 -07:00
Version.cpp LibCore: Read version information from uname() instead of /res/version 2022-10-14 13:45:33 +02:00
Version.h Userland+LibCore: Remove legacy SERENITY_VERSION from Core::Version 2022-10-14 13:45:33 +02:00