summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* core/kernel: Remove unnecessary inclusionsLioncash2019-01-011-0/+5
* hle_ipc: Refactor SleepClientThread to avoid ReadableEventZach Hilman2018-11-291-3/+3
* kernel/event: Reference ReadableEvent from WritableEventZach Hilman2018-11-291-2/+4
* hle_ipc: Use event pair for SleepClientThreadZach Hilman2018-11-291-14/+13
* kernel/process: Make the handle table per-processLioncash2018-10-201-13/+12
* kernel/thread: Make all instance variables privateLioncash2018-10-041-7/+7
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-13/+14
* core/core: Replace includes with forward declarations where applicableLioncash2018-08-311-0/+1
* kernel: Eliminate kernel global stateLioncash2018-08-291-5/+12
* hle_ipc: Make WriteToOutgoingCommandBuffer()'s reference parameter constLioncash2018-08-091-1/+1
* kernel: Move object class to its own source filesLioncash2018-08-021-1/+5
* kernel: Remove unnecessary includesLioncash2018-07-311-0/+1
* thread: Convert ThreadStatus into an enum classLioncash2018-07-201-2/+2
* hle_ipc: Introduce generic WriteBuffer overload for multiple container typesLioncash2018-07-191-4/+0
* hle_ipc: Amend usage of buffer_index within one of HLERequestContext's WriteBuffer() overloadsLioncash2018-07-191-1/+1
* core/memory, core/hle/kernel: Use std::move where applicableLioncash2018-07-191-2/+4
* nvflinger: Fix for BufferQueue event handling.bunnei2018-07-171-2/+8
* No need to use ASSERT_MSG with an empty messageDavid Marcec2018-07-141-2/+2
* Update clang formatJames Rowe2018-07-031-1/+1
* Rename logging macro back to LOG_*James Rowe2018-07-031-3/+3
* IPC: skip empty buffer writemailwl2018-06-221-0/+5
* Added RequestWithContext & ControlWithContextDavid Marcec2018-05-171-1/+3
* GetSharedFontInOrderOfPriority (#381)David2018-05-011-18/+22
* kernel: Migrate logging macros to fmt-compatible onesLioncash2018-04-261-2/+3
* hle_ipc, fsp_srv: Cleanup logging.bunnei2018-04-011-1/+1
* hle_ipc: Do not ensure write buffer size.bunnei2018-03-311-2/+5
* Clean Warnings (?)N00byKing2018-03-191-1/+1
* hle_ipc: Add SleepClientThread to block current thread within HLE routines.bunnei2018-03-191-0/+27
* hle_ipc: Use shared_ptr instead of unique_ptr to allow copies.bunnei2018-03-191-4/+4
* hle_ipc: Remove GetPointer(..) usage with WriteToOutgoingCommandBuffer.bunnei2018-03-191-3/+11
* Add warning if Domain request has no domain message headermailwl2018-02-201-0/+3
* Fix: change check for domain order and existance of domain message headermailwl2018-02-201-1/+1
* IPC: add domain header to response if only it exists in requestmailwl2018-02-201-4/+6
* Service/hid: stub some functionsmailwl2018-02-161-0/+51
* hle_ipc: Remove const from WriteBuffer size.bunnei2018-02-141-1/+1
* hle_ipc: Add GetReadBufferSize and check write buffer size.bunnei2018-02-141-0/+7
* hle_ipc: Add helper functions for reading and writing buffers.bunnei2018-02-141-4/+2
* hle_ipc: Add helper functions for reading and writing buffers.bunnei2018-02-141-0/+39
* hle: Integrate Domain handling into ServerSession.bunnei2018-01-251-7/+3
* hle: Remove Domain and SyncObject kernel objects.bunnei2018-01-251-1/+0
* Format: Run the new clang format on everythingJames Rowe2018-01-211-3/+2
* Fixes some cast warnings, partial port of citra #3064 (#106)River City Ransomware2018-01-201-1/+1
* Stub PopLaunchParameter and implement Buffer C Descriptors reading on hle_ipc (#96)gdkchan2018-01-181-7/+27
* hle_ipc: Clang format.bunnei2018-01-171-2/+3
* ipc: Implement domain command CloseVirtualHandle.bunnei2018-01-171-1/+8
* yuzu: Update license text to be consistent across project.bunnei2018-01-131-1/+1
* IPC: Corrected some definitions for the buffer C descriptor flags.Subv2018-01-111-1/+4
* IPC: Add functions to read the input move/copy objects from an IPC request.Subv2018-01-071-2/+14
* IPC: Don't attempt to read the command buffer if it holds a Close request.Subv2018-01-071-0/+5
* IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain objects in IPC requests.Subv2018-01-071-52/+55
* IPC: Skip the entire u64 of the command id when receiving an IPC request.Subv2018-01-071-1/+2
* IPC: Use the correct size when pushing raw data to the command buffer and fixed pushing domain objects.Subv2018-01-071-1/+1
* kernel: Fix implementation of ConvertSessionToDomain.bunnei2017-12-291-13/+17
* hle_ipc: Only copy necessary fields for outgoing command buffer.bunnei2017-10-191-1/+1
* hle_ipc: Parse out buffer X/A/B/B descriptors from incoming command buffer.bunnei2017-10-191-14/+11
* hle: Implement ConvertSessionToDomain, various cleanups.bunnei2017-10-151-4/+19
* hle: Initial implementation of NX service framework and IPC.bunnei2017-10-151-68/+84
* Fixed type conversion ambiguityHuw Pascoe2017-09-301-1/+1
* Kernel/IPC: Support translation of null handlesYuri Kunde Schlesner2017-06-211-7/+12
* Kernel/IPC: Make HLERequestContext usable from outside kernelYuri Kunde Schlesner2017-06-191-0/+5
* Kernel: Allow clearing request_objects to re-use buffer spaceYuri Kunde Schlesner2017-06-111-0/+4
* Kernel: Basic support for IPC translation for HLE servicesYuri Kunde Schlesner2017-06-111-4/+90
* Kernel: Add methods in HLERequestContext abstracting handle creationYuri Kunde Schlesner2017-06-111-0/+9
* Service: Add new ServiceFramework framework for writing HLE servicesYuri Kunde Schlesner2017-06-081-0/+2
* Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSessionYuri Kunde Schlesner2017-06-061-0/+2
* HLE: Move SessionRequestHandler from Service:: to Kernel::Yuri Kunde Schlesner2017-06-061-0/+22