summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time.cpp (unfollow)
Commit message (Expand)AuthorFilesLines
2024-01-24Rework time service to fix time passing offline.Kelebek11-412/+0
2023-06-08time: Use compile time division for TimeSpanType conversionMorph1-2/+2
2023-03-01service: move hle_ipc from kernelLiam1-18/+16
2023-02-21service: refactor server architectureLiam1-4/+11
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-4/+4
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-4/+4
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-13/+12
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
2021-11-04core: Remove unused includesameerj1-2/+0
2021-10-07service: Reduce header include overheadMorph1-1/+1
2021-07-14service: Append service name prefix to common filenamesMorph1-1/+1
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-23/+23
2021-05-06hle: kernel: Migrate KClientPort to KAutoObject.bunnei1-1/+1
2021-05-06hle: kernel: Migrate KSession, KClientSession, and KServerSession to KAutoObject.bunnei1-1/+0
2021-05-06hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.bunnei1-1/+1
2021-04-19time: Write buffer before pushing RESULT_SUCCESS in GetClockSnapshotMorph1-1/+2
2021-04-19time: Fix GetClockSnapshotFromSystemClockContextMorph1-2/+3
2021-04-08service: time: Setup the network clock with the local clock contextMorph1-15/+22
2021-04-08service: time: Fix CalculateStandardUserSystemClockDifferenceByUserMorph1-3/+8
2021-03-10time: Fix CalculateSpanBetween implementationMorph1-3/+9
2021-03-10time: Assign the current time point to the ClockSnapshotMorph1-0/+2
2021-01-29core: hle: kernel: Rename Thread to KThread.bunnei1-1/+1
2020-12-06hle: kernel: Rewrite scheduler implementation based on Mesopshere.bunnei1-1/+1
2020-11-27service: Eliminate usages of the global system instanceLioncash1-9/+9
2020-10-13service: time: Update current time with changes to RTC setting.bunnei1-14/+14
2020-08-03ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465)David1-2/+2
2020-06-29service: Update function tablesVolcaEM1-0/+7
2020-06-27General: Recover Prometheus project from harddrive failure Fernando Sahmkow1-3/+2
2020-04-19service/time: Remove reliance on the global system accessorLioncash1-24/+26
2020-04-15service: time: Implement CalculateStandardUserSystemClockDifferenceByUser.bunnei1-0/+23
2020-03-27services: time: Implement CalculateSpanBetween.bunnei1-0/+29
2020-02-12Core: Set all hardware emulation constants in a single file.Fernando Sahmkow1-1/+2
2020-01-05service: time: Implement GetStandardLocalSystemClock.bunnei1-0/+7
2020-01-04service: time: Implement GetClockSnapshotFromSystemClockContext.bunnei1-2/+25
2020-01-04service: time: Implement IsStandardNetworkSystemClockAccuracySufficient.bunnei1-0/+9
2020-01-04service: time: Rewrite implementation of glue services.bunnei1-303/+154
2019-11-12service: Update function tablesLioncash1-2/+11
2019-11-12service: Resolve sign conversion errorsLioncash1-13/+13
2019-09-22Deglobalize System: TimeDavid Marcec1-10/+15
2019-06-26Addressed issuesDavid Marcec1-1/+2
2019-06-25Implement Time::GetSharedMemoryNativeHandleDavid Marcec1-19/+95
2019-06-05core/core_timing_util: Amend casing of cyclesTo* functionsLioncash1-2/+2
2019-06-05core/core_timing_util: Use std::chrono types for specifying time unitsLioncash1-4/+5
2019-02-16core_timing: Convert core timing into a classLioncash1-2/+5
2019-02-12core_timing: Rename CoreTiming namespace to Core::TimingLioncash1-3/+3
2019-01-08settings: Use std::chrono::seconds instead of s64 for RTCZach Hilman1-6/+4
2019-01-08time: Use custom RTC settings if applicable for gameZach Hilman1-6/+10
2018-12-30service/time: Minor cleanup to GetClockSnapshot()Lioncash1-7/+9
2018-12-30service/time: Fill in some structures and remove padding where not necessaryLioncash1-2/+2
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-7/+18
2018-11-17Implemented CalculateStandardUserSystemClockDifferenceByUserDavid Marcec1-0/+15
2018-11-10Added maybe_unusedDavid Marcec1-2/+6
2018-11-10Added ToPosixTime & ToPosixTimeWithMyRuleDavid Marcec1-2/+41
2018-11-10Added consts and staticDavid Marcec1-6/+6
2018-11-09Implement GetClockSnapshotDavid Marcec1-20/+69
2018-09-11hle/service: Default constructors and destructors in the cpp file where applicableLioncash1-0/+2
2018-08-07service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule()Lioncash1-2/+2
2018-07-25time: Add the time:a serviceLioncash1-2/+3
2018-07-24time: Simplify interface creationLioncash1-4/+3
2018-07-24core_timing: Split off utility functions into core_timing_utilMerryMage1-0/+1
2018-07-03Rename logging macro back to LOG_*James Rowe1-13/+13
2018-06-01Service/time: implement posix time to calendar conversionmailwl1-4/+54
2018-05-02general: Make formatting of logged hex values more straightforwardLioncash1-1/+1
2018-04-30core_timing: Namespace all functions and constants in core_timing's headerLioncash1-1/+2
2018-04-24time: Move logging macros over to new fmt-compatible onesLioncash1-12/+12
2018-04-20service: Use nested namespace specifiers where applicableLioncash1-4/+2
2018-04-17Various service name fixes - part 2 (rebased) (#322)Hexagon121-1/+5
2018-03-19Clean Warnings (?)N00byKing1-1/+1
2018-02-22time: Add GetStandardLocalSystemClock, used by libnxshinyquagsire231-0/+7
2018-02-07Service: stub some functions in am, audio, time, vi servicesmailwl1-0/+13
2018-02-05logger: Add Time service logging category.bunnei1-10/+10
2018-01-26time: Implement ISteadyClock::GetCurrentTimePoint.bunnei1-1/+16
2018-01-25time: Stub GetSystemClockContext function.bunnei1-2/+10
2018-01-25hle: Rename RequestBuilder to ResponseBuilder.bunnei1-8/+8
2018-01-25service: Fix all incorrect IPC response headers.bunnei1-28/+7
2018-01-24Fix time returning epoch time in milliseconds rather than in secondsgdkchan1-1/+1
2018-01-23Services: Added a todo about returning interfaces as domain objects in lm, hid and time.Subv1-0/+6
2018-01-22Time: Don't create unnecessary ports when retrieving the clock service sessions.Subv1-33/+27
2018-01-19time: Stub out GetTotalLocationNameCount and some cleanup.bunnei1-3/+11
2018-01-18time: Fix use of CamelCase in ToCalendarTimeWithMyRuleRozlette1-6/+6
2018-01-18time: Refactor time:* to use a single shared moduleRozlette1-17/+11
2018-01-17TIME: consolidate time:* interfaces, stub functions and structsRozlette1-2/+128
2018-01-15time: Implement GetStandardUserSystemClock, GetCurrentTime.bunnei1-6/+5
2018-01-13yuzu: Update license text to be consistent across project.bunnei1-1/+1
2017-12-29ap, aoc_u: Minor cleanup.bunnei1-1/+0
2017-12-28service: Add empty interface for aoc:u.bunnei1-0/+18