Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
a947f16b
There was an error fetching the commit references. Please try again later.
Commit
a947f16b
authored
7 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
logger: Add "account" service logging category.
parent
6674e8e0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/logging/backend.cpp
+1
-0
1 addition, 0 deletions
src/common/logging/backend.cpp
src/common/logging/log.h
+1
-0
1 addition, 0 deletions
src/common/logging/log.h
src/core/hle/service/acc/acc_u0.cpp
+8
-8
8 additions, 8 deletions
src/core/hle/service/acc/acc_u0.cpp
with
10 additions
and
8 deletions
src/common/logging/backend.cpp
+
1
−
0
View file @
a947f16b
...
...
@@ -32,6 +32,7 @@ namespace Log {
CLS(Kernel) \
SUB(Kernel, SVC) \
CLS(Service) \
SUB(Service, ACC) \
SUB(Service, SM) \
SUB(Service, FS) \
SUB(Service, GSP) \
...
...
This diff is collapsed.
Click to expand it.
src/common/logging/log.h
+
1
−
0
View file @
a947f16b
...
...
@@ -49,6 +49,7 @@ enum class Class : ClassType {
Kernel_SVC
,
///< Kernel system calls
Service
,
///< HLE implementation of system services. Each major service
/// should have its own subclass.
Service_ACC
,
///< The ACC (Account service) implementation
Service_SM
,
///< The SRV (Service Directory) implementation
Service_FS
,
///< The FS (Filesystem) service implementation
Service_GSP
,
///< The GSP (GPU control) service
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/acc/acc_u0.cpp
+
8
−
8
View file @
a947f16b
...
...
@@ -20,7 +20,7 @@ public:
private
:
void
GetBase
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_ACC
,
"(STUBBED) called"
);
ProfileBase
profile_base
{};
IPC
::
ResponseBuilder
rb
{
ctx
,
16
};
rb
.
Push
(
RESULT_SUCCESS
);
...
...
@@ -40,14 +40,14 @@ public:
private
:
void
CheckAvailability
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_ACC
,
"(STUBBED) called"
);
IPC
::
ResponseBuilder
rb
{
ctx
,
3
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
(
true
);
// TODO: Check when this is supposed to return true and when not
}
void
GetAccountId
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_ACC
,
"(STUBBED) called"
);
IPC
::
ResponseBuilder
rb
{
ctx
,
4
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
<
u64
>
(
0x12345678ABCDEF
);
...
...
@@ -55,7 +55,7 @@ private:
};
void
ACC_U0
::
GetUserExistence
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_ACC
,
"(STUBBED) called"
);
IPC
::
ResponseBuilder
rb
{
ctx
,
3
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
(
true
);
// TODO: Check when this is supposed to return true and when not
...
...
@@ -65,11 +65,11 @@ void ACC_U0::GetProfile(Kernel::HLERequestContext& ctx) {
IPC
::
ResponseBuilder
rb
{
ctx
,
2
,
0
,
1
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
PushIpcInterface
<
IProfile
>
();
LOG_DEBUG
(
Service
,
"called"
);
LOG_DEBUG
(
Service
_ACC
,
"called"
);
}
void
ACC_U0
::
InitializeApplicationInfo
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_ACC
,
"(STUBBED) called"
);
IPC
::
ResponseBuilder
rb
{
ctx
,
2
};
rb
.
Push
(
RESULT_SUCCESS
);
}
...
...
@@ -78,11 +78,11 @@ void ACC_U0::GetBaasAccountManagerForApplication(Kernel::HLERequestContext& ctx)
IPC
::
ResponseBuilder
rb
{
ctx
,
2
,
0
,
1
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
PushIpcInterface
<
IManagerForApplication
>
();
LOG_DEBUG
(
Service
,
"called"
);
LOG_DEBUG
(
Service
_ACC
,
"called"
);
}
void
ACC_U0
::
GetLastOpenedUser
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service
,
"(STUBBED) called"
);
LOG_WARNING
(
Service
_ACC
,
"(STUBBED) called"
);
IPC
::
ResponseBuilder
rb
{
ctx
,
6
};
rb
.
Push
(
RESULT_SUCCESS
);
rb
.
Push
<
u64
>
(
0x0
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment