summaryrefslogtreecommitdiff
path: root/src/core/hle/service/apt (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hle: Remove a large amount of 3ds-specific service code.Gravatar bunnei2017-10-1010-2266/+0
|
* Merge remote-tracking branch 'upstream/master' into nxGravatar bunnei2017-10-093-217/+540
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h
| * Merge pull request #2953 from Subv/applet_launchGravatar Sebastian Valle2017-10-042-30/+47
| |\ | | | | | | HLE/APT: Always set up the APT parameter when starting a library applet.
| | * HLE/APT: Always set up the APT parameter when starting a library applet.Gravatar Subv2017-09-252-30/+47
| | | | | | | | | | | | | | | | | | | | | | | | Only use the HLE interface if an HLE applet with the desired id was started. This commit reorganizes the APT code surrounding parameter creation and delivery to make it easier to support LLE applets in the future. As future work, the HLE applet interface can be reworked to utilize the same facilities as the LLE interface.
| * | Merge pull request #2946 from Subv/home_menu_aptGravatar Sebastian Valle2017-09-303-8/+45
| |\ \ | | | | | | | | Implement PrepareToStartNewestHomeMenu and fixed an APT regression.
| | * | HLE/APT: Always return an error from PrepareToStartNewestHomeMenu so that ↵Gravatar Subv2017-09-243-2/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the Home Menu doesn't try to reboot the system. As per 3dbrew: "During Home Menu start-up it uses APT:PrepareToStartNewestHomeMenu. If that doesn't return an error(normally NS returns 0xC8A0CFFC for that), Home Menu starts a hardware reboot with APT:StartNewestHomeMenu etc. "
| | * | HLE/APT: Prepare the APT Wakeup parameter when the game calls InitializeGravatar Subv2017-09-241-6/+19
| | |/ | | | | | | | | | | | | We need to know what is being run so we can set the APT parameter destination AppId correctly. Delaying the preparation of the parameter until we know which AppId is running lets us support booting both the Home Menu and normal game Applications.
| * / Fixed type conversion ambiguityGravatar Huw Pascoe2017-09-301-2/+2
| |/
| * APT: load different shared font depending on the regionGravatar wwylele2017-09-031-134/+152
| |
| * Services/APT: Use the AppletAttributes union directly when dealing with ↵Gravatar Subv2017-08-071-19/+15
| | | | | | | | applet attrs.
| * Services/APT: Use an array to hold data about the 4 possible concurrent ↵Gravatar Subv2017-08-072-35/+204
| | | | | | | | | | | | applet types (Application, Library, HomeMenu, System). This gives each applet type its own set of events as per the real NS module.
| * telemetry: Add field for RequiresSharedFont.Gravatar bunnei2017-08-031-0/+4
| |
| * Merge pull request #2840 from Subv/apt_parameterGravatar bunnei2017-07-272-33/+105
|/| | | | | Services/APT: Corrected the behavior of the Receive/Send/Glance/CancelParameter functions
| * Service/APT: Log Send/Cancel/Receive/GlanceParameter calls even if they ↵Gravatar Subv2017-07-211-7/+9
| | | | | | | | return an error.
| * Services/APT: Return the proper error code when calling SendParameter with ↵Gravatar Subv2017-07-212-4/+17
| | | | | | | | an outstanding parameter already in memory.
| * Services/APT: Reset the APT parameter inside CancelParameter if the ↵Gravatar Subv2017-07-211-6/+23
| | | | | | | | conditions are met.
| * Services/APT: Properly clear the apt parameter after a successful ↵Gravatar Subv2017-07-211-2/+8
| | | | | | | | ReceiveParameter call.
| * Services/APT: Use the right error codes in ReceiveParameter and ↵Gravatar Subv2017-07-211-0/+28
| | | | | | | | GlanceParameter when the parameter doesn't exist.
| * Services/APT: Use boost::optional for the APT parameter structure.Gravatar Subv2017-07-211-20/+26
| |
* | Merge pull request #2799 from yuriks/virtual-cached-range-flushGravatar Weiyi Wang2017-07-221-1/+1
|\ \ | |/ |/| Add address conversion functions returning optional, Add function to flush virtual region from rasterizer cache
| * Memory: Make PhysicalToVirtualAddress return a boost::optionalGravatar Yuri Kunde Schlesner2017-06-211-1/+1
| | | | | | | | And fix a few places in the code to take advantage of that.
* | apt: load shared font from system archiveGravatar wwylele2017-06-261-20/+134
| |
* | apt/shared_font: don't relocate zero offsetGravatar wwylele2017-06-261-2/+4
|/
* ResultVal: Remove MoveFrom()Gravatar Yuri Kunde Schlesner2017-06-181-6/+6
| | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
* Created a whitelist of system archives to prevent false positives creating ↵Gravatar TheKoopaKingdom2017-06-021-3/+2
| | | | dialogs.
* Added system for handling core errors in citra-qt.Gravatar TheKoopaKingdom2017-06-021-2/+5
|
* Kernel: Move HandleTable to a separate fileGravatar Yuri Kunde Schlesner2017-05-291-0/+2
|
* Merge pull request #2533 from Lectem/apt_ipchelperGravatar bunnei2017-04-061-199/+245
|\ | | | | IpcHelper enhancement and APT refactor
| * hopefully fix clang-format issues with old versionGravatar Lectem2017-03-201-3/+2
| |
| * address more commentsGravatar Lectem2017-03-191-20/+20
| |
| * Cast size_t to u32 for PushStaticBuffer usagesGravatar Lectem2017-03-181-2/+2
| |
| * IPCHelper Skip method + address comments for aptGravatar Lectem2017-03-181-36/+38
| |
| * fix #2560 and other commentsGravatar Lectem2017-03-181-19/+19
| |
| * refactor APT service to use the new IPC helpersGravatar Lectem2017-03-181-191/+236
| |
* | apt: fix RequestBuilder parameters for UnwrapGravatar wwylele2017-03-181-1/+1
|/
* APT: implement Wrap and UnwrapGravatar wwylele2017-02-215-6/+149
|
* Merge pull request #2249 from Subv/sessions_v3Gravatar Yuri Kunde Schlesner2016-12-144-3/+6
|\ | | | | Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
| * Fixed the codestyle to match our clang-format rules.Gravatar Subv2016-12-141-1/+2
| |
| * HLE: Use a member variable instead of a virtual function to retrieve the max ↵Gravatar Subv2016-12-054-3/+5
| | | | | | | | number of sessions that can be connected to an HLE service at the same time.
* | APT::GetStartupArgument: force clear startup argumentGravatar mailwl2016-12-112-5/+11
| |
* | apt: Update apt function tablesGravatar Lioncash2016-12-072-7/+73
|/ | | | Updated based off information from 3dbrew.
* Bravely Default/Second stuck #1822 (#2188)Gravatar pippo29312016-11-234-2/+22
| | | | | | | | | | | | | | | * Bravely Default/Second stuck #1822 CancelLibraryApplet stub * Log parameter. * Taking care of comments * Sync with 3DBrew * White space ? * lower case
* APT/Applets: Renamed the members of the SignalType enum.Gravatar Subv2016-11-192-7/+18
| | | | Names now make sense and match 3dbrew.
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-214-4/+4
|
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-213-9/+5
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-185-18/+17
|
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-185-311/+337
|
* Merge pull request #2023 from yuriks/autobase-bcfntGravatar bunnei2016-08-303-30/+68
|\ | | | | Auto-detect original shared_font.bin memory base
| * Auto-detect original shared_font.bin memory baseGravatar Yuri Kunde Schlesner2016-08-273-30/+68
| | | | | | | | | | This allows a file dumped from either an o3DS or a n3DS (and potentially even an original unrebased file) to be used.
* | fix #1942 and adds a few IPC functions for descriptorsGravatar Lectem2016-08-021-2/+2
|/