summaryrefslogtreecommitdiff
path: root/Libraries/LibCore
AgeCommit message (Expand)Author
2019-09-22CSocket: Don't create the read notifier until after we've connectedAndreas Kling
2019-09-22LibCore+LibGUI: Remove GEventLoop and use CEventLoop everywhereAndreas Kling
2019-09-22LibCore: Remove leftover debug spam in CObject::remove_child()Andreas Kling
2019-09-22LibCore: Add CObject::remove_from_parent()Andreas Kling
2019-09-22LibCore: Remove ObjectPtr in favor of RefPtrAndreas Kling
2019-09-22LibCore: Make CObject reference-countedAndreas Kling
2019-09-21LibCore: Convert CFile to ObjectPtrAndreas Kling
2019-09-21LibCore: Remove CTimer::create() overloads in favor of construct()Andreas Kling
2019-09-21LibCore: ObjectPtr should delete the pointee when clearedAndreas Kling
2019-09-21CHttpJob: Shutting down the job should actually destroy the socketAndreas Kling
2019-09-21LibCore: Make it possible to cancel pending CNetworkJobsAndreas Kling
2019-09-21LibCore: Convert CTCPServer to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CHttpJob to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CLocalServer to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CLocalSocket to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CTCPSocket to ObjectPtr, add construct() helperAndreas Kling
2019-09-20LibCore+LibGUI+WindowServer: Make events bubble up through ancestorsAndreas Kling
2019-09-20LibCore: Convert CNotifier to ObjectPtrAndreas Kling
2019-09-20LibCore: Convert CTimer to ObjectPtrAndreas Kling
2019-09-20LibCore: Introduce ObjectPtr, a step towards reference-counted CObjectAndreas Kling
2019-09-11Inspector+LibCore+rpcdump: Rework the RPC stuff to be request/responseAndreas Kling
2019-09-11CIODevice: read(u8*, int) overload should return 0 on EOFAndreas Kling
2019-09-11CSocket: Share code between connect() overloadsAndreas Kling
2019-09-11CIODevice: read_all() should return a null ByteBuffer when nothing readAndreas Kling
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-04CIODevice: Add is_open()Andreas Kling
2019-08-26LibThread: Move CLock to LibThread::LockSergey Bugaev
2019-08-26LibCore: Remove CThreadSergey Bugaev
2019-08-19LibCore: Move CObject serialization into CObject::save_to(JsonObject&)Andreas Kling
2019-08-18LibCore: Make it possible to pass a parent to CFile constructorsAndreas Kling
2019-08-18LibCore: Childify children of CLocalServer and IPC::ConnectionAndreas Kling
2019-08-18LibCore: Make CSocket's notifiers into children of the CSocketAndreas Kling
2019-08-17LibCore: Fix a crash in CArgsParserSergey Bugaev
2019-08-17LibCore+rpcdump: Publish CObject graph to on-demand RPC socketAndreas Kling
2019-08-17CObject: Put all CObjects on a global IntrusiveList for introspectionAndreas Kling
2019-08-17LibCore: CIODevice::set_error() is meant to be called with the 'errno'Andreas Kling
2019-08-10LibCore: Use URL in CHttpRequestAndreas Kling
2019-08-06LibCore: Initialise m_port as zero in CSocketAddressConrad Pankoff
2019-08-05CEventLoop: Create the wake pipe with O_CLOEXECSergey Bugaev
2019-08-05LibCore: Add CTCPServerConrad Pankoff
2019-08-04LibCore: Move CHttpJob and CNetworkJob output to the right placesAndreas Kling
2019-08-04CSocket: Close the underlying socket on destructionAndreas Kling
2019-08-04CHttpJob: Drive response download via on_ready_read instead of blockingAndreas Kling
2019-08-04CHttpJob: Collect the payload as a list of buffers during downloadAndreas Kling
2019-08-04CHttpJob: If no "Content-Length" header was received, read until EOFAndreas Kling
2019-08-03AudioServer: Port to the new generated IPC mechanismAndreas Kling
2019-08-03LibCore: Make get_current_user_home_path() return String & close passwdAndreas Kling
2019-08-02CEventLoop: Devirtualize take_pending_events_from(CEventLoop)Andreas Kling
2019-08-01LibCore: Initialize pid/id variables in CoreIPC{Client,Server}Andreas Kling
2019-08-01CEventLoop: Add a missing initializer to EventLoopTimer.Andreas Kling