summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-07-19hle/service: Make constructors explicit where applicableLioncash5-5/+5
Prevents implicit construction and makes these lingering non-explicit constructors consistent with the rest of the other classes in services.
2018-07-19Virtual Filesystem 2: Electric Boogaloo (#676)Zach Hilman1-1/+0
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
2018-07-17General Filesystem and Save Data Fixes (#670)Zach Hilman1-14/+5
2018-07-08Revert "Virtual Filesystem (#597)"bunnei1-1/+1
This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
2018-07-06Virtual Filesystem (#597)Zach Hilman1-1/+1
* Add VfsFile and VfsDirectory classes * Finish abstract Vfs classes * Implement RealVfsFile (computer fs backend) * Finish RealVfsFile and RealVfsDirectory * Finished OffsetVfsFile * More changes * Fix import paths * Major refactor * Remove double const * Use experimental/filesystem or filesystem depending on compiler * Port partition_filesystem * More changes * More Overhaul * FSP_SRV fixes * Fixes and testing * Try to get filesystem to compile * Filesystem on linux * Remove std::filesystem and document/test * Compile fixes * Missing include * Bug fixes * Fixes * Rename v_file and v_dir * clang-format fix * Rename NGLOG_* to LOG_* * Most review changes * Fix TODO * Guess 'main' to be Directory by filename
2018-07-03Rename logging macro back to LOG_*James Rowe3-74/+74
2018-06-06am: Stub out IApplicationFunctions::GetPseudoDeviceId.bunnei2-1/+13
2018-06-04am: Implement ILibraryAppletAccessor::PopOutData.bunnei1-1/+11
2018-06-04am: ISelfController:LaunchableEvent should be sticky.bunnei1-1/+1
2018-06-04am: Stub out ILibraryAppletAccessor Start and GetResult methods.bunnei1-2/+16
2018-06-04am: Implement ILibraryAppletAccessor::PushInData.bunnei1-43/+55
2018-06-04am: Implement IStorageAccessor::Write.bunnei1-1/+17
2018-06-04am: Cleanup IStorageAccessor::Read.bunnei1-5/+3
2018-06-04am: Implement ILibraryAppletCreator::CreateStorage.bunnei2-21/+34
2018-05-26am: Stub IApplicationFunctions GetDisplayVersion.bunnei2-1/+10
2018-05-26Add & correct miscellaneous things (#470)greggameplayer3-4/+52
* add some InfoType * correct OpenApplicationProxy cmd number * add IDisplayController functions * fix clang-format * add more system languages
2018-05-07Stubs for QLaunch (#428)Hexagon124-5/+221
* Stubs for QLaunch * Wiped unrelated stuff * Addressed comment * Dropped GetPopFromGeneralChannelEvent
2018-05-02general: Make formatting of logged hex values more straightforwardLioncash1-1/+1
This makes the formatting expectations more obvious (e.g. any zero padding specified is padding that's entirely dedicated to the value being printed, not any pretty-printing that also gets tacked on).
2018-04-29am: Fix GetDesiredLanguage implementation.bunnei1-2/+4
2018-04-24am: Move logging macros over to new fmt-compatible onesLioncash3-50/+50
2018-04-20service: Use nested namespace specifiers where applicableLioncash3-12/+6
Tidies up namespace declarations
2018-04-11Various fixes and clangHexagon121-1/+1
2018-04-10Updated AppletOE with more service names.Hexagon121-0/+1
2018-04-10Updated AppletAE with more service names.Hexagon121-0/+1
2018-04-10Updated AM with more service names.Hexagon121-2/+82
2018-03-27config: Rename is_docked to use_docked_mode to be consistent with other config bools.bunnei1-5/+5
2018-03-27config: Add setting for whether the system is docked or not.bunnei1-2/+6
2018-03-04FS: Make EnsureSaveData create the savedata folder when called for the first time.Subv1-2/+20
2018-02-22Stub more functionsmailwl2-1/+39
2018-02-22Stub am::SetScreenShotPermission, and bsd::StartMonitoring functionsmailwl2-0/+9
2018-02-19AM: Corrected the response in EnsureSaveData.Subv1-1/+2
The values are still unknown and the function is still considered a stub. Puyo Puyo Tetris now tries to call fsp-srv:MountSaveData.
2018-02-14service: Remove remaining uses of BufferDescriptor*.bunnei1-3/+3
2018-02-07Service: stub some functions in am, audio, time, vi servicesmailwl2-1/+82
2018-02-06IApplicationFunctions: Stub out EnsureSaveData.bunnei2-0/+8
2018-02-04logger: Add AM service logging category.bunnei3-42/+42
2018-02-02Service/am: Add AppletAE service (#153)mailwl6-379/+569
* Add AppletAE, step 1: move common interfaces to am.h * Add AppletAE, step 2
2018-01-25hle: Rename RequestBuilder to ResponseBuilder.bunnei1-33/+33
2018-01-25service: Fix all incorrect IPC response headers.bunnei1-11/+11
2018-01-22AppletOE: Stubbed CreateManagedDisplayLayer to create a new layer in the Default display.Subv1-0/+14
This function is used by libnx to obtain a new layer.
2018-01-22AppletOE: Make ISelfController keep a reference to nvflinger.Subv4-9/+31
It'll be needed when we implement CreateManagedDisplayLayer.
2018-01-21Format: Run the new clang format on everythingJames Rowe1-1/+2
2018-01-19acc, set, applet_oe: stub various functions, add set service (#105)goaaats2-0/+14
* Stubs for various acc:u0 funcs needed * Stub for GetDesiredLanguage in IApplicationFunctions * Add set service + stubs needed for games * Fix formatting * Implement IProfile, IManagerForApplication, return bool in CheckAvailability, style fixes * Remove IProfile::Get(needs more research), fix IPC response sizes
2018-01-19ISelfController: Stub LockExit and UnlockExitRozlette1-0/+16
2018-01-19applet_oe: Clang-format.bunnei1-2/+1
2018-01-18Stub PopLaunchParameter and implement Buffer C Descriptors reading on hle_ipc (#96)gdkchan1-0/+86
* Stub PopLaunchParameter and implement Buffer C Descriptors reading * Address PR feedback * Ensure we push a u64 not a size_t * Fix formatting
2018-01-17applet_oe: Fix GetOperationMode and GetPerformanceMode.bunnei1-2/+2
2018-01-17Services: Stubbed APM::OpenSession and the ISession interface.Subv1-1/+2
# Conflicts: # src/core/hle/service/am/applet_oe.cpp # src/core/hle/service/apm/apm.cpp
2018-01-17AppletOE: Stub a bunch of functions required by libnx homebrew.Subv1-4/+62
2018-01-16implemented more of ISelfController and IApplicationFunctionsDavid Marcec1-0/+53
2018-01-15applet_oe: Stub SetFocusHandlingMode, GetCurrentFocusState, SetTerminateResult.bunnei1-2/+55
2018-01-15Games expect 15 for ICommonStateGetter::ReceiveMessage in order to continue executionDavid Marcec1-1/+1
2018-01-13yuzu: Update license text to be consistent across project.bunnei4-4/+4
2018-01-07AppletOE: Fixed command buffer structure for ReceiveMessage.Subv1-2/+1
2018-01-07IPC: Corrected some command header sizes in appletOE.Subv1-12/+21
2018-01-07IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain objects in IPC requests.Subv1-1/+1
Popping objects from the buffer is still not implemented.
2017-12-29applet_oe: Stub out a bunch of interfaces necessary for boot.bunnei2-1/+159
2017-12-29ap, aoc_u: Minor cleanup.bunnei1-2/+0
2017-12-28service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.bunnei2-4/+2
2017-10-15hle: Add service stubs for apm and appletOE.bunnei4-0/+75
2017-10-10hle: Remove a large amount of 3ds-specific service code.bunnei10-772/+0
2017-06-06Service: Remove unnecessary includes from service.hYuri Kunde Schlesner1-2/+4
This has a huge fallout in terms of needing to fix other files because all service implementations included that file.
2016-12-08Update AM service function tablesLioncash6-113/+246
Updated based off information from 3dbrew.
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner5-5/+5
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-3/+1
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner5-61/+64
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot5-143/+150
2016-04-24am: title_id is long long uintSam Spilsbury1-1/+1
2016-04-08update the code of AM service! (#1623)JamePeng6-51/+289
2016-02-02services: Get rid of unnecessary includesLioncash6-11/+3
2015-12-30services: Update some function tablesLioncash3-0/+73
2015-07-29core: Eliminate some unused variable warningsLioncash1-1/+1
2015-07-29core: Fix missing prototype warningsLioncash1-0/+1
2015-07-29am_net: Add missing function to the function tableLioncash1-0/+1
2015-07-29am_net: Add correct function name to the function tableLioncash1-1/+1
2015-07-21Services/AM: Stubbed am:app::GetNumContentInfos to return 0 results.Subv3-3/+33
Named the service functions in am:app as per 3dbrew. This fixes an illegal read loop in Steel Diver
2015-06-12Services: Continue separation of services into their own folderspurpasmart9610-0/+294