diff --git a/Cargo.lock b/Cargo.lock index faf5b47..dd5c848 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -626,6 +626,7 @@ name = "megaton" version = "0.1.0" dependencies = [ "cxx", + "megaton-macros", ] [[package]] @@ -648,6 +649,13 @@ dependencies = [ "which", ] +[[package]] +name = "megaton-macros" +version = "0.1.0" +dependencies = [ + "pistonite-pm", +] + [[package]] name = "memchr" version = "2.7.5" @@ -777,9 +785,9 @@ dependencies = [ [[package]] name = "pistonite-pm" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb759ff95dafff75b9b43ed487a6eff22630bbf8d2d4b220ba97f307dfea2c65" +checksum = "89a883403461bbd5ad506f710a7ee13fc531e7532a1b41116fd5dde5c294b059" dependencies = [ "proc-macro2", "quote", @@ -797,9 +805,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.44" +version = "1.0.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" dependencies = [ "proc-macro2", ] @@ -996,9 +1004,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "syn" -version = "2.0.114" +version = "2.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 48304b2..c68bfab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,8 @@ resolver = "2" members = [ "packages/cli", "packages/lib", + "packages/lib/macros", + "packages/test-mod" ] [workspace.dependencies] diff --git a/Lisensor.toml b/Lisensor.toml index 19c8eb0..6e2d267 100644 --- a/Lisensor.toml +++ b/Lisensor.toml @@ -6,10 +6,13 @@ "packages/lib/**/*.h" = "GPL-3.0-or-later" "packages/lib/src/megaton/*.s" = "GPL-3.0-or-later" "packages/lib/src/nximpl/*.s" = "GPL-3.0-or-later" +"packages/test-mod/**/*.cpp" = "GPL-3.0-or-later" +"packages/test-mod/**/*.h" = "GPL-3.0-or-later" # Rust files "packages/lib/**/*.rs" = "GPL-3.0-or-later" "packages/cli/**/*.rs" = "MIT" +"packages/test-mod/**/*.rs" = "GPL-3.0-or-later" # Unmodified files # ["libnx Authors"] diff --git a/packages/docs/src/SUMMARY.md b/packages/docs/src/SUMMARY.md index a87d1d7..71cc63d 100644 --- a/packages/docs/src/SUMMARY.md +++ b/packages/docs/src/SUMMARY.md @@ -4,12 +4,12 @@ --- - [Installation](./install.md) - [Tutorial](./tutorial/index.md) - - [Create Project]() - - [Incremental Build]() - - [Project Config]() - - [Build Flags]() + - [Create Project](./tutorial/create_project.md) + - [Incremental Build](./tutorial/incremental_build.md) + - [Build Flags](./tutorial/build_flags.md) - [Profiles](./tutorial/profiles.md) - - [Check]() + - [Check](./tutorial/check.md) + - [Test Mod](./tutorial/test_mod.md) - [C++/Rust APIs]() - [Defines]() - [Module]() diff --git a/packages/docs/src/tutorial/build_flags.md b/packages/docs/src/tutorial/build_flags.md new file mode 100644 index 0000000..099f524 --- /dev/null +++ b/packages/docs/src/tutorial/build_flags.md @@ -0,0 +1,102 @@ +# Build Flags + +Megaton uses a preset list of flags for the build toolchain both on the rust and +C/C++ sides. These flags should handle targeting the switch architecture and +platform. Certain optomizations are also enabled and certain features are diabled. +It is recommended to use all of the default flags since Megaton has not been tested +with any of the build flags disabled. However, you may add flags to certain parts +of the build pipeline, e.g., to add `-D` define statements or enable certain behavior +for your target game. These flags are all set in the `build.flags` section of the +Megaton config file. Certain command line flags, such as specifing a linker script, +are included implicitly and should be specified in the appropriate `build` config +option. See the full [build config](../reference/configuration/section_build.html) +documentation for a full description of how default flags are combined to form the +build commands. + +```toml +[build.flags] +c = ["", "-DMY_DEFINE=1"] +rust = ["", "-Zub-checks=yes"] +cargo = ["", "--features", "my-feature"] +``` + +There are 7 sections for flags to be added to, corresponding to different compilers +or parts of the build toolchain. + +## Common +These flags are applied to all non-rust toolchain components, i.e. `cc`, `cxx`, +`as`, and `ld`. + +#### Defaults +``` +-march=armv8-a+crc+crypto +-mtune=cortex-a57 +-mtp=soft +-fPIC +-fvisibility=hidden +-g +``` + +## C +These flags are passed to the C compiler when compiling C sources. + +#### Defaults +``` +-Wall +-Werror +-ffunction-sections +-fdata-sections +-O3 +``` + +## CXX +These flags are passed to the C++ compiler when compiling C++ sources. + +#### Defaults +``` +-std=c++20 +-fno-rtti +-fno-exceptions +-fno-asynchronous-unwind-tables +-fno-unwind-tables +``` + +## AS +These flags are passed to the assembler when compiling assembly sources. +There are currently no default flags used specifically for the assembler. +Note that the assembler tool used is actually gcc, so flags should be +formatted as gcc flags when used as an assembler. + +## LD +These flags are passed to the linker when linking the ELF from all compiled +binary objects. Again, these are formatted as link flags for g++, not +for ld itself. + +#### Defaults +``` +-nostartfiles +-nodefaultlibs +-Wl,--shared +-Wl,--export-dynamic +-Wl,-z,nodynamic-undefined-weak +-Wl,--build-id=sha1 +-Wl,--gc-sections +-Wl,--nx-module-name +``` + +## Rust +Flags passed to the rust compiler. Equivalent to the RUSTFLAGS environment variable. +Place flags here instead of Cargo.toml if you want them to be profile +controlled. + +Currently no default rust flags. + +## Cargo +Flags passed to cargo for building all rust code. The `+megaton` toolchain is +also implicitly included. + +#### Defaults +``` +--release +--target aarch64-unknown-hermit +``` diff --git a/packages/docs/src/tutorial/check.md b/packages/docs/src/tutorial/check.md new file mode 100644 index 0000000..f28601f --- /dev/null +++ b/packages/docs/src/tutorial/check.md @@ -0,0 +1,28 @@ +# Check + +The Megaton check system allows an additional layer of verification following +linking. The check will ensure that there are no undefined symbols or disallowed +instructions. + +The check will run anytime the ELF is relinked, and if the check fails, the +ELF will not be converted into an NSO, and the build will fail. + +For a full guide on configuring the check step, see the +[configuration page](../reference/configuration/section_check.html) + +## Symbol check + +The built mod could cause crashes or unexpected behavior if certain symbols +remain undefined in the final binary. This is especially true while the tool +is in active development and certain standard library features are not yet +supported. Megaton will use `objdump` to obtain a list of dynamic symbols. +Dynamic symbols are only considered as defined if an included symbol file +specified in `check.symbols`. If check reports that a particular syscall +or system function is undefined, ensure that your mod SDK symbol file +contains that symbol. + +## Disallowed instructions + +During Megaton library development, it may be convenient to disable certain +instructions to prevent crashes due to assembly instructions that are known +to crash due to limitations in Megaton library support. diff --git a/packages/docs/src/tutorial/create_project.md b/packages/docs/src/tutorial/create_project.md new file mode 100644 index 0000000..f3230a0 --- /dev/null +++ b/packages/docs/src/tutorial/create_project.md @@ -0,0 +1,179 @@ +# Create Project + +```admonish info +At the moment, there is no `megaton init` command, so the initial files +will need to be created manually. When this command is added in the future, +this step will be much faster and easier. +``` + +## Create Megaton Config +To initialize a Megaton project, you will need a `Megaton.toml` config file. +Add this file in an empty directory, which will be the root directory of the +Megaton project. + +```toml +# Megaton.toml + +[module] +# The name of the compiled module. This will be the name of the output NSO +name = "my-mod" +# REQUIRED: Add the title id for your target game here +# title-id = 0x0 + +[megaton] +# Uncomment to enable version check +# version = "0.1.0" + +# Set a custom mod entry point. This will disable the megaton runtime library, +# including rust support. Only use this if you know what you are doing. +# custom-entry = "" + +[profile] +default = "none" + +[build] # Options for building C/C++ sources +sources = ["src"] +includes = ["include"] + +[build.flags] + +[cargo] +manifest = "Cargo.toml" + +[check] +# Add the symbols from your target game's SDK +symbols = [] +``` +See the pages under [Configuration](../reference/configuration/index.html) +for a full specification of all the config options. + +## Create Cargo Project +If you are using rust, initialize a cargo project. The default location is the +same as the Megaton root. If you want your rust code to live elsewhere, set the +path of the cargo manifest in the config field `cargo.manifest`. +``` +$ cargo init --lib . +``` +```toml +# Cargo.toml + +[package] +name = "my-mod-rs" +version = "0.1.0" +edition = "2024" + +[dependencies] +# Needed for standard library support +megaton = {version = "0.1.0", path = "target/megaton/none/lib"} + +# Useful for C++/Rust FFI +# Megaton distributes a "blessed" version of the cxx-bridge cli tool +# with the rust toolchain. The build tool will warn if the version +# chosen here doesn't match the blessed cxx version +cxx = "1.0.194" + +[lib] +# Crate must be a static library in order to link into the NSO +crate-type = ["staticlib"] +``` +```rust +// src/lib.rs + +// For straightforward FFI, define a cxx::bridge module +// The Megaton build tool will generate the required interop +// sources and headers and automattically build/include them. +// +// See the cxx docs (https://cxx.rs/) for further info +#[cxx::bridge] +mod ffi { + #[namespace = "mod_functions_cpp"] + unsafe extern "C++" { + include!("my-mod/my_mod.h"); + fn add_in_cpp(); + } + + #[namespace = "mod_functions_rs"] + extern "Rust" { + pub fn add_in_rust(left: u64, right: u64) -> u64; + } +} + +// A "useful" support function defined in rust +pub fn add_in_rust(left: u64, right: u64) -> u64 { + left + right +} + +// This optional attribute provides an easy entry point into your rust code +// without using cxx. If you prefer not to use FFI and most of your mod +// logic lives in rust, you may want to call this from the C++ entry point +// and use cxx to import C++ functions rather than export rust functions. +#[megaton::main] +fn my_mod_rust_main() { + +} +``` + +## Add initial C++ Code + +At the moment, a C entry point is needed, even if most of the mod's code is +in rust. The mod must contain the C symbol `megaton_main`, which the Megaton +runtime library will call after initialization. To call the rust entry point, +you will also need to define the symbol `__megaton_rs_main` and call it in +your C code. + +```cpp +// src/main.cpp + +// Include the megaton library +#include + +// Public header for the mod +#include + +// Header generated by cxx for importing rust functions into C++ +#include + +// Define the functions we are exporting to rust through the public header +namespace mod_functions_cpp { + uint64_t add_in_cpp(uint64_t left, uint64_t right) { + return left + right; + } +} + +// Declare the rust main function (needed if using #[megaton::main] +extern "C" void __megaton_rs_main(); + +// This is the main mod entry point which will be called by the +// megaton runtime library after hooking/patching your code +extern "C" void megaton_main() { + + // You might just want to call the rust main function here + // Your rust main function might have a differnt name, but this + // symbol must be used on the C/C++ side. The #[megaton::main] + // attribute macro will generate this symbol if it is used + __megaton_rs_main(); + + // Alternativly, you can keep the bulk of your mod logic/init + // code in C++ and call on rust function exported by cxx + // from the ffi module + // uint64_t probobly_four = mod_functions_rs::add_in_rust(2, 2); +} +``` + +```cpp +// include/my-mod/my_mod.h + +// cxx will handle type interop +#include "rust/cxx.h" + +// Functions to export (see ffi module in lib.rs) +namespace mod_functions_cpp { + uint64_t add_in_cpp(uint64_t left, uint64_t right); +} +``` + +## Build + +At this point, you should be able to run `megaton build`. If you get a "Check +failed" error, ensure that you have added all the symbol files from your game +SDK. diff --git a/packages/docs/src/tutorial/incremental_build.md b/packages/docs/src/tutorial/incremental_build.md new file mode 100644 index 0000000..52da7b3 --- /dev/null +++ b/packages/docs/src/tutorial/incremental_build.md @@ -0,0 +1,52 @@ +# Incremental Build + +The Megaton build tool uses an incremental build system which means that +compilation artifacts are only regenerated if necessary. For building rust +code, Megaton uses cargo, which already has incremental build support. For +compiling C/C++/Assembly sources, Megaton determines if a source file must be +recompiled or if the output NSO file must be relinked. + +## Intermediate artifacts + +Following a normal build, the target directory will contain several intermediate +artifacts that Megaton uses to determine if recompilation/relinking is needed. + +The main files are `compiledb.cache` and `linkcmd.cache`. These files contain +records of the compilation/link jobs that were used for the most recent version +of a given `.o` or ELF file. + +For each compiled source, a `.o` and `.d` file will be generated in the `o/` +directory pertaining to the profile and module. The `.o` file will be eventually +linked to create the ELF and NSO files, and the `.d` file is used by the build +tool to determine which dependencies must be checked to know if a source must +be recompiled. These filenames contain the hash of their path so that they +can be stored in a flat directory without name collisions. + +The page [Output Directory (WIP)](../reference/output_formats/output_directory.html) +contains a full description of the contents and layout of the target directory. + +## Incremental step checks + +For a given source file, the following checks are made to determine if compilation +can be skipped. This check is run after the source is encountered and a command +is generated to compile the object if it is not longer up to date. +For assembly files, all checks relating to `.d` files are skipped as assembly +sources cannot have dependencies. +The checks are made in this order. + +The file is considered up to date if: +- A record of the source being compiled exists in `compiledb.cache` +- The arguments for the pending compile command match the previous compile command +- A previously compiled `.o` file exists in the expected location +- A previously compiled `.d` file exists in the expected location +- The time of previous modification (mtime) for the source file is the same + as the `.o` file's mtime +- The source's mtime is the same as the `.d` file's mtime +- The source's mtime is equal or newer than any of its dependencies + (checked recursively by parsing the `.d` file) + +The linked binary is considered up to date if: +- Cargo did not change the previously generated static lib +- None of the compilation tasks actually compiled anything +- The output ELF and NSO files exist +- The previously stored link command is the same as the impending link command diff --git a/packages/docs/src/tutorial/index.md b/packages/docs/src/tutorial/index.md index 73a8e59..ad62d8e 100644 --- a/packages/docs/src/tutorial/index.md +++ b/packages/docs/src/tutorial/index.md @@ -1 +1,34 @@ -# TUTORIAL - TODO \ No newline at end of file +# Tutorial + +This section covers setting up a new Megaton project and compiling it +using the Megaton build tool. + +At this point, you should installed Megaton by following the +[installation guide](../install.html). + +``` +# Ensure that megaton is installed and is using the version you expect +$ megaton --help + __ __ ______ ______ ______ ______ ______ __ __ +/\ "-./ \\ ___\\ ___\\ __ \\__ _\\ __ \\ "-.\ \ +\ \ \-./\ \\ __\ \ \__ \\ __ \_/\ \/ \ \/\ \\ \-. \ + \ \_\ \ \_\\_____\\_____\\_\ \_\\ \_\\ \_____\\_\\"\_\ + \/_/ \/_//_____//_____//_/\/_/ \/_/ \/_____//_/ \/_/ + +Megaton Build Tool + +Usage: megaton + +Commands: + version Print the version and build information + build Compile and link the megaton project + toolchain Manage the custom `megaton` Rust toolchain + help Print this message or the help of the given subcommand(s) + +Options: + -v, --version Print the version + -h, --help Print help + +$ megaton version +megaton v0.1.0 (5939be53) +``` diff --git a/packages/docs/src/tutorial/test_mod.md b/packages/docs/src/tutorial/test_mod.md new file mode 100644 index 0000000..827cc64 --- /dev/null +++ b/packages/docs/src/tutorial/test_mod.md @@ -0,0 +1,62 @@ +# Test Mod + +Using the provided test mod is a simple and fast way to verify you have Megaton +configured correctly for your game. + +## Prerequisites +This guide assumes the following: +### Megaton +Megaton and the Megaton toolchain should be installed. Refer to the appropriate +Megaton documentation for setup. Additionally, the (Megaton repository)[https://github.com/Pistonite/megaton] +should be cloned to your computer, as this is where the test mod is located +### Game +The Megaton test mod, and Megaton broadly, require the title id of your game +and a symbol file containing Nintendo SDK symbols. The test mod provides an example +title-id and SDK file for The Legend of Zelda: Breath of the Wild, but if you wish +to mod another game then you must provide these yourself. You will also need a (legal) copy +of BOTW or the game you wish to mod. +### Nintendo Switch +This guide will assume that you already have a modded Switch. If you don't have a +modding capable Switch or otherwise wish to use an emulator, you should be familiar +with how mods are installed for your emulator of choice. If using the Switch, +you will also need SimpleModManager and a way to copy files onto the system. This guide will assume +you are using USB File Transfer. +## Modifying Megaton Config +The test mod assumes you will be modding BOTW. If you wish to mod another game, +the Megaton config will need to be modified accordingly. This file can be found at +`packages/test-mod/Megaton.toml` in the Megaton repository. You will need to modify the `title-id` field to +match the title id of your game. You will also need to replace `packages/test-mod/sdk.syms` with your +game's SDK symbols. The name of this file can be changed with the `symbols` field in `Megaton.toml`. +It can also be split into multiple files, so long as each one is added to the `symbols` field. +## Building +Building the test mod is quite simple. CD into the test mod directory and run the `megaton build` command, +if all finished successfully, then congrats! Megaton was able to build your test mod. You can now install it to +your Switch or emulator. If Megaton exited with a "Check failed" error caused by missing symbols, +verify that the missing symbols are present in your SDK symbols file. +## Installing +We will now install the test mod onto your modded Switch. If you instead wish to use +an emulator, you can follow the instructions provided by your emulator of choice. +The mod should be located at `packages/test-mod/target/none/TestMod/TestMod.nso`. If +the `TestMod` folder or `TestMod.nso` doesn't exist, check your `Megaton.toml`. The name of your +mod should correspond to the `module.name` field of `Megaton.toml`. +### Copying to the Switch +Firstly, plug your Switch into a computer via USB. You should now open the USB File Transfer applet via the homebrew menu. +Your Switch should now appear as a writable drive on your computer. You will need to create the following folders on the Switch: +- /mods///contents// + - exefs/main.npdm + - This file is generated by Megaton and is located at <Mod Folder>/target/none/<module.name>/main.npdm + - exefs/subsdk9 + - This file is generated by Megaton and is located at <Mod Folder>/target/none/<module.name>/<module.name>.nso. Be sure to rename it to subsdk9 + - romfs/System/Version.txt + - You need to create this file. It should contain the game version your mod is compatible with +### Installing the mod +Open the SimpleModManager applet via the homebrew menu on your Switch. In the game browser, select your game. +You should see the name of your mod folder appear. Select your mod and confirm that your want to install it. +Allow your mod to install. It should say "ACTIVE" to the right of your mod if it installed correctly. +### Verifying the mod +You should now be able to open your game. Let it load to the title screen. You should now have a file called `test_output.txt` at the root of your SD card. +Open this file and verify that all of the tests succeeded. Congrats! You have successfully set up Megaton. Any time the mod files change on the Switch, be sure to follow this process to reinstall the mod. +## Modifying the test mod +You may wish to add your own tests to the test mod to verify additional functionality for your specific game. Doing so is quite simple. Open up `packages/test-mod/src/lib.rs` in your favorite text editor. +To add a test, create a function which takes a `&mut MegatonTests` (referred to as `mtt` from here on). Add this function to `run_megaton_tests`. Inside of your test function you can use `mtt.start_category` to create a new test category. Be sure to include a `mtt.end_category` at the end of your function or when you want to switch to a different category. For testing, you can use `mtt.megaton_assert` to verify that a value matches what you expect. If it does not, Megaton will log the failure to the `test_output.txt` file. If you would like an accompanying message with failure, you can use `mtt.megaton_assert_msg`. As a convenience, you can use `mtt.megaton_assert_ok` when you expect a result to be `Ok(T)` + diff --git a/packages/lib/Cargo.toml b/packages/lib/Cargo.toml index fb728fe..be482f6 100644 --- a/packages/lib/Cargo.toml +++ b/packages/lib/Cargo.toml @@ -7,4 +7,5 @@ edition = "2024" panic = "abort" [dependencies] +megaton-macros = {version = "0.1.0", path = "macros"} cxx = "1.0.186" diff --git a/packages/lib/macros/Cargo.toml b/packages/lib/macros/Cargo.toml new file mode 100644 index 0000000..040f816 --- /dev/null +++ b/packages/lib/macros/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "megaton-macros" +version = "0.1.0" +edition = "2024" + +[dependencies.pm] +package = "pistonite-pm" +version = "0.2.6" +features = ["full"] + +[lib] +proc-macro = true diff --git a/packages/lib/macros/src/lib.rs b/packages/lib/macros/src/lib.rs new file mode 100644 index 0000000..9f6a3fc --- /dev/null +++ b/packages/lib/macros/src/lib.rs @@ -0,0 +1,27 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (c) 2026 Megaton contributors + +use pm::pre::*; + +#[proc_macro_attribute] +pub fn main(attr: TokenStream, input: TokenStream) -> TokenStream { + pm::flatten(expand_main(attr, input)) +} + +fn expand_main(_attr: TokenStream, input: TokenStream) -> pm::Result<TokenStream2> { + let item: syn::ItemFn = syn::parse(input)?; + let old_main_name = &item.sig.ident; + + let expanded = pm::quote! { + #[unsafe(no_mangle)] + extern "C" fn __megaton_rs_main() { + // Add init code here? + + // Call user defined main + #old_main_name(); + } + #item + }; + + Ok(expanded) +} diff --git a/packages/lib/src/lib.rs b/packages/lib/src/lib.rs index 81fc61d..de3b385 100644 --- a/packages/lib/src/lib.rs +++ b/packages/lib/src/lib.rs @@ -1,2 +1,4 @@ // SPDX-License-Identifier: GPL-3.0-or-later // Copyright (c) 2025-2026 Megaton contributors + +pub use megaton_macros::main; diff --git a/packages/test-mod/.gitignore b/packages/test-mod/.gitignore new file mode 100644 index 0000000..ca117b1 --- /dev/null +++ b/packages/test-mod/.gitignore @@ -0,0 +1,2 @@ +/target +debug-font diff --git a/packages/test-mod/Cargo.lock b/packages/test-mod/Cargo.lock new file mode 100644 index 0000000..b2e5221 --- /dev/null +++ b/packages/test-mod/Cargo.lock @@ -0,0 +1,290 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "anstyle" +version = "1.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" + +[[package]] +name = "cc" +version = "1.2.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "clap" +version = "4.5.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.5.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238" +dependencies = [ + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_lex" +version = "0.7.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" + +[[package]] +name = "codespan-reporting" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681" +dependencies = [ + "serde", + "termcolor", + "unicode-width", +] + +[[package]] +name = "cxx" +version = "1.0.194" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e" +dependencies = [ + "cc", + "cxx-build", + "cxxbridge-cmd", + "cxxbridge-flags", + "cxxbridge-macro", + "foldhash", + "link-cplusplus", +] + +[[package]] +name = "cxx-build" +version = "1.0.194" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e" +dependencies = [ + "cc", + "codespan-reporting", + "indexmap", + "proc-macro2", + "quote", + "scratch", + "syn", +] + +[[package]] +name = "cxxbridge-cmd" +version = "1.0.194" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0956799fa8678d4c50eed028f2de1c0552ae183c76e976cf7ca8c4e36a7c328" +dependencies = [ + "clap", + "codespan-reporting", + "indexmap", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "cxxbridge-flags" +version = "1.0.194" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a" + +[[package]] +name = "cxxbridge-macro" +version = "1.0.194" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf" +dependencies = [ + "indexmap", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "example-rs" +version = "0.0.0" +dependencies = [ + "cxx", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "indexmap" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +dependencies = [ + "equivalent", + "hashbrown", +] + +[[package]] +name = "link-cplusplus" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82" +dependencies = [ + "cc", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "scratch" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "syn" +version = "2.0.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "termcolor" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "unicode-ident" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" + +[[package]] +name = "unicode-width" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] diff --git a/packages/test-mod/Cargo.toml b/packages/test-mod/Cargo.toml new file mode 100644 index 0000000..ffe1f37 --- /dev/null +++ b/packages/test-mod/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "example-rs" +version = "0.0.0" +edition = "2024" + +[dependencies] +cxx = "1.0.194" + +[lib] +crate-type = ["staticlib"] diff --git a/packages/test-mod/Megaton.toml b/packages/test-mod/Megaton.toml new file mode 100644 index 0000000..5152675 --- /dev/null +++ b/packages/test-mod/Megaton.toml @@ -0,0 +1,60 @@ +[module] +name = "TestMod" +title-id = 0x01007ef00011e000 + +[megaton] +version = "0.1.0" + +[cargo] +enabled = true + +[build] # *profile enabled* +sources = [ + "src", +] + +includes = [ + "src", + "include", +] + +libpaths = [] # -L +libraries = [] # -l +ldscripts = [] +objects = [] + +[build.flags] # https://megaton.pistonite.dev/config/build_flags.html +c = [ + "<default>", + "-DNNSDK", + "-DSWITCH", + "-D__SWITCH__", + "-DNN_SDK_MAJOR=4", + "-DNN_SDK_MINOR=4", + "-DNN_SDK_PATCH=0", + "-DNN_WARE_MAJOR=4", + "-DNN_WARE_MINOR=4", + "-DNN_WARE_PATCH=0", +] +cxx = [ + "<default>", + "-Wno-invalid-offsetof", +] + +ld = [ + "<default>", +] + +rust = [ +] + +cargo = [ + "<default>", +] + +[check] # *profile enabled* +ignore = [] +symbols = [ + "sdk.syms" +] +disallowed-instructions = [] diff --git a/packages/test-mod/Taskfile.yml b/packages/test-mod/Taskfile.yml new file mode 100644 index 0000000..b674f28 --- /dev/null +++ b/packages/test-mod/Taskfile.yml @@ -0,0 +1,11 @@ +version: '3' + +tasks: + build: + cmds: + - megaton build -v + + # this is to upload the mod to console via ftp + upload: + cmds: + - lftp 192.168.0.170:5000 < scripts/lftp-upload.sh diff --git a/packages/test-mod/include/test-mod/mod.h b/packages/test-mod/include/test-mod/mod.h new file mode 100644 index 0000000..d9f8075 --- /dev/null +++ b/packages/test-mod/include/test-mod/mod.h @@ -0,0 +1,10 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (c) 2026 Megaton contributors + +#pragma once + +#include <rust/cxx.h> + +void write_test_output(rust::Str data); +void init_function_in_c(); + diff --git a/packages/test-mod/scripts/lftp-upload.sh b/packages/test-mod/scripts/lftp-upload.sh new file mode 100644 index 0000000..f86108c --- /dev/null +++ b/packages/test-mod/scripts/lftp-upload.sh @@ -0,0 +1,6 @@ +mkdir -p -f /atmosphere/contents/01007EF00011E000/exefs +cd /atmosphere/contents/01007EF00011E000/exefs +mput -e target/megaton/none/example.nso +mput -e target/megaton/none/main.npdm +rm -f subsdk9 +mv example.nso subsdk9 diff --git a/packages/test-mod/sdk.syms b/packages/test-mod/sdk.syms new file mode 100644 index 0000000..61e0e61 --- /dev/null +++ b/packages/test-mod/sdk.syms @@ -0,0 +1,20465 @@ + +sdk.decompressed.elf: file format elf64-little + +DYNAMIC SYMBOL TABLE: +0000000000000000 D *UND* 0000000000000000 __nnDetailNintendoSdkRuntimeObjectFile +0000000000000000 w D *UND* 0000000000000000 __rel_dyn_end +0000000000000000 w D *UND* 0000000000000000 __rel_dyn_start +0000000000000000 w D *UND* 0000000000000000 __rel_plt_end +0000000000000000 w D *UND* 0000000000000000 __rel_plt_start +0000000000000000 D *UND* 0000000000000000 free +0000000000000000 D *UND* 0000000000000000 malloc +0000000000000000 D *UND* 0000000000000000 nnMain +0000000000000000 D *UND* 0000000000000000 nninitStartup +0000000000000000 w D *UND* 0000000000000000 nnosGetDefaultUserExceptionStackForApplication +0000000000000000 D *UND* 0000000000000000 realloc +0000000000000000 D *UND* 0000000000000000 calloc +0000000000000000 D *UND* 0000000000000000 aligned_alloc +0000000000183e5c w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +00000000009791e0 g DO .data 0000000000000040 _ZTVNSt3__18__c_nodeE +000000000097af08 g DO .data 0000000000000060 _ZTVNSt3__116__narrow_to_utf8ILm16EEE +000000000015d784 g DF .text 000000000000004c _ZN2nn4pctl53RequestStereoVisionRestrictionConfigurationPermissionEv +00000000001a76a8 g DF .text 0000000000000040 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImplD2Ev +00000000001a4d70 g DF .text 0000000000000008 _ZNK2nn5audio6server12SinkInfoBase12GetParameterEv +00000000003ceb3c g DF .text 00000000000001a4 sincosl +0000000000133284 g DF .text 0000000000000070 _ZN2nn4htcs4SendEiPKvmi +00000000001d051c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_CheckSharedLowLevelLayerSynchronizedENS0_3OutIlvEEm +000000000095c7f0 g DO .data 0000000000000020 _ZTVN2nn3hid23VibrationNodeConnectionE +00000000000d8398 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_4bcat6detail3ipc12IBcatServiceEEEvi +000000000015aac4 w DF .text 0000000000000168 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi22ELm256EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_24BufferClientArgumentTypeEj +00000000000e8078 g DF .text 0000000000000490 _celt_autocorr +00000000003a2be8 g DF .text 00000000000001ac __muldc3 +00000000000b13a8 g DF .text 0000000000000004 _ZN2nn6socket6detail9HStrErrorEi +00000000000be38c w DF .text 000000000000000c _ZNK2nn2sf22UnitHeapMemoryResource11do_is_equalERKNS_14MemoryResourceE +00000000001c8118 g DF .text 000000000000008c _ZN2nn2pl22GetSharedFontLoadStateENS0_14SharedFontTypeE +000000000022fe9c g DF .text 000000000000004c _ZN2nn3hid15VibrationPlayer12SetLoopRangeEii +0000000000136d9c w DF .text 0000000000000194 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESF_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSK_23InRawClientArgumentTypeILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000331090 w DF .text 0000000000000028 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED0Ev +0000000000071788 g DF .text 000000000000008c nnmem_nlib_rwlock_init +00000000000b74c0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E27_nn_sf_sync_GetProfileImageENS0_3OutIjvEERKNS0_9OutBufferE +0000000000342f70 w DF .text 00000000000000b8 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIwEE +000000000036453c w DF .text 0000000000000044 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmRKS5_mm +00000000000b33e4 g DF .text 0000000000000094 _ZN2nn7account8OpenUserEPNS0_10UserHandleERKNS0_3UidE +00000000003240d4 g DF .text 0000000000000018 _ZNSt3__118condition_variable10notify_oneEv +0000000000136174 g DF .text 00000000000000ac _ZN2nn2lm6detail24LogPacketTransmitterBase11PushUleb128Ej +000000000017ec1c g DF .text 000000000000006c _ZN2nn4time13ClockSnapshotC2Ev +0000000000049de4 w DF .text 0000000000000060 _ZN2nn2fs10SubStorage12OperateRangeEPvmNS0_11OperationIdEllPKvm +000000000080b610 w DO .rodata 000000000000013a _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14HidDebugServerEEEEEE13ServiceObjectESJ_E6ObjectE +0000000000286570 g DF .text 000000000000010c NvRmGpuLibOpen +000000000009b790 g DF .text 0000000000000138 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor15SetHeadPointersERKNS2_21HipcMessageHeaderInfoE +00000000003a3414 g DF .text 00000000000001e4 __mulsf3 +00000000001c00e4 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw14GetMouthAspectEv +00000000001ce810 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_GetDisplayRgbRangeENS0_3OutIjvEEm +00000000001c8344 g DF .text 000000000000008c _ZN2nn2pl17GetSharedFontSizeENS0_14SharedFontTypeE +00000000000a1898 g DF .text 0000000000000004 _ZN2nn6socket11GetSockNameEiP8sockaddrPj +00000000003dc878 w DF .text 0000000000000038 _IO_feof_unlocked +00000000000ba1b4 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E45_nn_sf_sync_CreateFloatingRegistrationRequestENS0_3OutINS0_13SharedPointerINS5_4baas28IFloatingRegistrationRequestEEEvEEONS0_12NativeHandleEj +0000000000174b9c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_SetBluetoothEnableFlagEb +00000000001f8750 g DF .text 0000000000000020 fnt_RoundOff +000000000009384c g DF .text 000000000000005c _ZN2nn2os6detail36MultiWaitHolderOfMessageQueueNotFull20RemoveFromObjectListEv +000000000011a8dc g DF .text 0000000000000050 _ZN2nn3err9ShowErrorENS0_9ErrorCodeERKNS0_12ErrorContextE +00000000001a4d78 g DF .text 0000000000000050 _ZN2nn5audio6server14DeviceSinkInfoC2Ev +0000000000264690 g DF .text 0000000000000018 glslc_Free +000000000032c9f8 w DF .text 0000000000000030 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPFRNS_8ios_baseES5_E +0000000000189df0 g DF .text 0000000000000048 _ZN2nn5audio24PerformanceBufferManager17UpdateInParameterEPv +00000000001c57c4 g DF .text 000000000000003c _ZN2nn3mii8Database3GetEPiPNS0_15CharInfoElementEii +0000000000986ba0 g DO .data 0000000000000008 __stderr_used +00000000003dcef4 g DF .text 0000000000000048 fgetwc +0000000000155434 g DF .text 000000000000001c _ZN2nn4nifm15FinalizeForTestEv +00000000002271a0 g DF .text 0000000000000060 _ZN2nn3hid6detail43IsUsbFullKeyControllerEnabledForApplicationEPb +0000000000361afc w DF .text 000000000000002c _ZnamSt11align_val_tRKSt9nothrow_t +00000000001c3644 g DF .text 000000000000003c _ZN2nn3mii6detail16Ver3StoreDataRaw14SetCreatorNameERKNS0_8NicknameE +00000000001d2268 w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm10EE27InitializeShimLibraryHolderINS_5visrv2sf18ISystemRootServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +0000000000075da0 g DF .text 0000000000000090 nnmem_nlib_utf16nlen_ +000000000022d614 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm8EEEvPNS0_16TouchScreenStateIXT_EEE +000000000004d55c g DF .text 0000000000000084 _ZN2nn2fs6detail18FileSystemAccessor10DeleteFileEPKc +000000000008fac0 g DF .text 0000000000000070 _ZN2nn2os24SdkConditionVariableType4WaitERNS0_21SdkRecursiveMutexTypeE +0000000000150d10 g DF .text 0000000000000038 _ZN2nn4nifm6detail13RequestClient31SetConnectionConfirmationOptionENS0_28ConnectionConfirmationOptionE +00000000001a0b64 g DF .text 0000000000000024 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_25PcmInt16DataSourceCommandE +00000000000d125c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E39_nn_sf_sync_SetPerformanceConfigurationENS5_15PerformanceModeENS5_24PerformanceConfigurationE +000000000022bdb4 g DF .text 000000000000005c _ZN2nn3hid12GetNpadStateEPNS0_16NpadFullKeyStateERKj +00000000003dcf3c g DF .text 000000000000009c fgetws +00000000002b4540 g DF .text 0000000000000048 _ZN7android18GraphicBufferAllocD0Ev +00000000000913b0 g DF .text 0000000000000004 nnosBroadcastConditionVariable +00000000000d0834 g DF .text 0000000000000020 _ZN2nn3apm27GetInternalManagerForSystemEv +00000000001a7b68 g DF .text 0000000000000008 _ZN2nn5audio6server6detail21GetActiveChannelCountEv +0000000000150c6c g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient11SetPriorityEh +0000000000152d6c w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm36ELm4ELl0EEEEEELm36ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm36ELm4EvEEj +0000000000270914 g DF .text 000000000000001c NvRmSyncIsFd +00000000000ab464 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSJ_ILm4ELm4ELl4EEENSJ_ILm4ELm4ELl8EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEEEEELm12ELm8ELb0EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESX_NS2_23InRawClientArgumentTypeILm4ELm4EvEESZ_SZ_NS2_24BufferClientArgumentTypeEj +000000000004f3fc g DF .text 0000000000000004 _ZN2nn2fs15GetFileOpenModeENS0_10FileHandleE +0000000000264818 g DF .text 000000000000002c cuda_DebugPrintf +00000000003e0030 g DF .text 0000000000000004 __toread_needs_stdio_exit +0000000000178198 g DF .text 0000000000000004 _ZN2nn3ssl10ConnectionD2Ev +0000000000111880 g DF .text 0000000000000130 opus_multistream_packet_pad +00000000001c5910 g DF .text 0000000000000008 _ZN2nn3mii15PrivateDatabaseC2Ev +0000000000263544 g DF .text 0000000000000030 NvOsUserEventSignal +0000000000166b58 g DF .text 0000000000000038 _ZN2nn5prepo6detail3ipc15GetPrepoServiceEv +000000000021f198 g DF .text 00000000000000b0 _ZN2nn3hid6detail7Session10DeactivateEv +00000000000b5748 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm56ELm8ELl0EEEEEELm0ELm56ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm56ELm8EEEj +0000000000124e0c g DF .text 00000000000000cc _ZN2nn7friends6detail3ipc19CreateFriendServiceEPPNS2_14IFriendServiceE +0000000000229154 g DF .text 0000000000000044 _ZN2nn3hid5debug27SetHomeButtonAutoPilotStateERKNS1_24HomeButtonAutoPilotStateE +00000000000d5550 w DF .text 0000000000000004 _ZN2nn4bcat6detail17ShimLibraryGlobalD2Ev +0000000000212214 g DF .text 0000000000000090 get_ttf_table_info +0000000000095e0c g DF .text 000000000000004c _ZN2nn2os6detail26ThreadManagerImplByHorizon18ResumeThreadUnsafeEPNS0_10ThreadTypeE +000000000018bf14 g DF .text 000000000000002c _ZN2nn5audio21ResetVoiceDroppedFlagEPNS0_9VoiceTypeE +00000000000f8344 g DF .text 0000000000000038 silk_InitDecoder +00000000002d322c g DF .text 0000000000000140 _ZN7android10VectorImpl11setCapacityEm +000000000006bc2c g DF .text 000000000000015c _ZN2nn2fs21GetSdCardUserAreaSizeEPl +00000000000a1c04 g DF .text 0000000000000004 nnsocketGetHostByAddrWithOptions +0000000000156e70 g DF .text 0000000000000004 _ZN2nn4nifm17NetworkConnection20SubmitRequestAndWaitEv +000000000014b450 g DF .text 0000000000000010 _ZN2nn3ngc6detail12OutputStream14GetWorkBuffer_EPm +00000000001c54d8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding9Ev +0000000000166674 g DF .text 0000000000000124 _ZN2nn5prepo6detail19PlayReportGenerator11AddKeyValueEPmPKcdPhmm +00000000000ea750 g DF .text 00000000000000c0 celt_rcp +0000000000a80dc8 g DO .bss 0000000000000010 _ZNSt3__18numpunctIwE2idE +000000000018d8fc g DF .text 0000000000000050 _ZN2nn5audio6common19WorkBufferAllocator8AllocateEmm +000000000036d874 w DF .text 00000000000000d0 _ZNSt3__18valarrayImE6resizeEmm +00000000001d5a00 g DF .text 0000000000000084 _ZN2nn2vi6detail22ServiceReferenceHolder16GetSystemServiceEPNS_2sf13SharedPointerINS_5visrv2sf21ISystemDisplayServiceEEE +0000000000175094 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E32_nn_sf_sync_GetAppletLaunchFlagsENS0_3OutINS_4util10BitFlagSetILi32ENS5_6system16AppletLaunchFlagEEEvEE +000000000026f324 g DF .text 0000000000000064 NvRmOpenNew +00000000003a2d94 g DF .text 0000000000000228 __muldf3 +00000000000655e8 g DF .text 0000000000000094 _ZN2nn2fs19CanMountRomForDebugEv +000000000026fb2c g DF .text 00000000000001e8 NvRmMemHandleFree +000000000034f2c0 w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIwc11__mbstate_tED2Ev +0000000000953348 g DO .data 0000000000000040 _ZTVN2nn3ngc6detail12OutputStreamE +0000000000a1e718 g DO .bss 0000000000002000 _ZN2nn2ec6detail20g_ShopPageArgStorageE +000000000097bfd0 w DO .data 0000000000000038 _ZTINSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000052e0c w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_5fssrv2sf16IFileSystemProxyEED2Ev +000000000016c9c4 g DF .text 0000000000000070 _ZN2nn8settings6detail25GetBluetoothAfhEnableFlagEPb +00000000003a4b98 g DF .text 0000000000000004 __gnu_f2h_ieee +00000000003aad40 g DF .text 0000000000000154 __stdio_write +00000000008223c4 g DO .rodata 0000000000000004 _ZNSt3__18ios_base11adjustfieldE +00000000003dd80c w DF .text 000000000000008c ftello64 +00000000001f9f20 g DF .text 0000000000000058 fsg_PrivateFontSpaceSize +00000000003a5cc8 g DF .text 0000000000000054 __atomic_store_16 +0000000000135ee4 g DF .text 0000000000000010 _ZN2nn2lm6detail15LogPacketHeader7SetHeadEb +00000000000449b8 g DF .text 0000000000000128 _ZN2nn4diag6detail7LogImplERKNS0_11LogMetaInfoEPKcz +000000000097ad78 w DO .data 0000000000000010 _ZTINSt3__112codecvt_baseE +0000000000263188 g DF .text 0000000000000018 NvOsThreadSetName +0000000000111ae8 g DF .text 0000000000000010 tonality_analysis_reset +00000000003c7cec g DF .text 0000000000000080 ceilf +0000000000189d54 g DF .text 000000000000004c _ZN2nn5audio24PerformanceBufferManager13GetBufferBaseEv +0000000000398620 g DF .text 000000000000009c __cxa_begin_catch +000000000002fc8c g DF .text 0000000000000004 _ZN2nn5image13ExifExtractorD1Ev +00000000001c4ea8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetReserved0Ev +00000000007e5080 w DO .rodata 00000000000000eb _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +00000000001aa490 g DF .text 0000000000000004 _ZN2nn5audio3dsp7MailBox4RecvEv +0000000000334324 w DF .text 0000000000000034 _ZNKSt3__17collateIcE7do_hashEPKcS3_ +000000000001577c g DF .text 00000000000001ec _ZN2nn5image6detail4jpeg17jpeg_set_defaultsEPNS2_20jpeg_compress_structE +000000000009362c g DF .text 000000000000004c _ZNK2nn2os6detail27MultiWaitHolderOfTimerEvent10IsSignaledEv +00000000001673e4 w DF .text 0000000000000204 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEENSI_ILi1ELi5ELm0EEENSG_ILm8ELm8ELl16EEEEEELm24ELm0ELb1EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENS2_24BufferClientArgumentTypeESV_NST_ILm8ELm8EvEEj +00000000003c7d6c g DF .text 00000000000000fc ceill +000000000005cc58 w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEENSG_ILi1ELi5ELm0EEENSI_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEST_SV_j +00000000007c22f0 w DO .rodata 0000000000000188 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEEE +0000000000318b7c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E24_nn_sf_sync_GetClockRateENS0_3OutIjvEEi +000000000013c114 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm664EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENS2_24BufferClientArgumentTypeEj +000000000032489c g DF .text 0000000000000058 _ZNSt3__18__c_nodeD1Ev +00000000003626f4 g DF .text 0000000000000080 _ZNSt13runtime_errorC1EPKc +000000000036df10 g DF .text 0000000000000034 __cxa_throw_bad_array_new_length +00000000007d88f0 w DO .rodata 000000000000011c _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001b4b1c g DF .text 000000000000000c _ZN2nn2la20PrepareLibraryAppletEPKvmNS_6applet8AppletIdEb +000000000024fcb4 g DF .text 000000000000003c _ZN2nn3ldn24GetNetworkInfoForMonitorEPNS0_11NetworkInfoE +0000000000286774 g DF .text 000000000000000c NvRmGpuDeviceZbcGetDepthTableEntry +00000000007c3b10 w DO .rodata 000000000000010d _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001a3df8 g DF .text 0000000000000008 _ZNK2nn5audio6server10MixContext8GetCountEv +00000000009545d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000228258 g DF .text 0000000000000048 _ZN2nn3hid6system28RegisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdEb +00000000001474ac g DF .text 0000000000000004 _ZN2nn3ngc6detail12BinaryWriter10WriteArrayEPKdm +0000000000125ba0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_GetFriendCountENS0_3OutIivEERKNS_7account3UidERKNS7_17SizedFriendFilterEm +0000000000186334 g DF .text 000000000000000c _ZN2nn5audio20IsBufferMixerEnabledEPKNS0_15BufferMixerTypeE +0000000000805350 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi91EE4MaskE +00000000007ae750 g DO .rodata 0000000000000010 _ZN2nn4util8Vector3f13ConstantUnitXE +0000000000264708 g DF .text 0000000000000018 multimedia_Alloc +00000000001ccf18 w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm10EE27InitializeShimLibraryHolderINS_5visrv2sf18ISystemRootServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +000000000006fc8c g DF .text 0000000000000010 _ZN2nn4lmem6detail14GetHeapFillValEi +00000000000a2460 g DF .text 00000000000001c4 _ZN2nn6socket6detail8RecvFromEiPvmiP8sockaddrPj +0000000000959228 w DO .data 0000000000000058 _ZTVN2nn2sf22UnmanagedServiceObjectINS_5audio6detail21IAudioRendererManagerENS2_6server24AudioRendererManagerImplEEE +0000000000188ec0 g DF .text 000000000000000c _ZN2nn5audio17GetFinalMixNodeIdEPKNS0_12FinalMixTypeE +00000000001a5814 g DF .text 0000000000000134 _ZN2nn5audio6server9VoiceInfo10InitializeEv +000000000026436c g DF .text 0000000000000084 NvOsBreakPoint +00000000001978d0 g DF .text 00000000000000e0 _ZN2nn5audio24GetActiveAudioDeviceNameEPNS0_15AudioDeviceNameE +0000000000354eac g DF .text 00000000000000ac _ZNSt3__114collate_bynameIwEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +000000000011a4ec g DF .text 000000000000000c _ZN2nn3err13MakeErrorCodeEjj +0000000000017a24 g DF .text 0000000000000004 _ZN2nn5image6detail4jpeg23jpeg_destroy_decompressEPNS2_22jpeg_decompress_structE +000000000023c494 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14IrSensorServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +0000000000159184 g DF .text 00000000000000f4 _ZN2nn3nsd6detail3ipc22GetNasServiceSettingExEPNS_6ResultEPNS0_17NasServiceSettingERKNS0_14NasServiceNameE +00000000001b9dc0 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetMouthTypeEi +0000000000147814 g DF .text 0000000000000084 _ZNK2nn3ngc6detail3Bp_6ExportEPNS1_12BinaryWriterE +000000000001791c g DF .text 0000000000000108 _ZN2nn5image6detail4jpeg21jpeg_CreateDecompressEPNS2_22jpeg_decompress_structEim +0000000000121dfc g DF .text 0000000000000044 _ZNK2nn7friends12AsyncContext9GetResultEv +00000000003ba918 g DF .text 0000000000000008 cimag +000000000006b960 g DF .text 0000000000000164 _ZN2nn2fs18GetSdCardSpeedModeEPNS0_15SdCardSpeedModeE +000000000009bf34 g DF .text 000000000000010c _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBaseD1Ev +000000000034c644 w DF .text 0000000000000488 _ZNSt3__111__money_getIwE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_SJ_Ri +000000000005d9ec w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEENSI_ILm8ELm8ELl8EEEEEELm16ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm8ELm8EvEESV_j +000000000080cff0 w DO .rodata 00000000000000f9 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEES6_EE +000000000017f9b4 g DF .text 000000000000006c _ZN2nn4time23StandardUserSystemClock3nowEv +00000000001b2b5c g DF .text 0000000000000378 _ZN2nn2ec6detail15ShowShopPageArgC2EPKc +000000000097b5b0 g DO .data 0000000000000018 _ZTINSt3__115__codecvt_utf16IDiLb1EEE +0000000000057b54 w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm32ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm0ELm32ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm32ELm8EEENS2_24BufferClientArgumentTypeEj +00000000000b3dcc g DF .text 000000000000005c _ZN2nn7account27StoreSaveDataThumbnailImageERKNS0_3UidERKNS_13ApplicationIdEPKvm +00000000007c0430 w DO .rodata 000000000000002f _ZTSN2nn7account31IAccountServiceForAdministratorE +000000000094c360 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000347500 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb0EE16do_decimal_pointEv +00000000007ae760 g DO .rodata 0000000000000010 _ZN2nn4util8Vector3f13ConstantUnitYE +0000000000179b6c g DF .text 0000000000000148 _ZN2nn3ssl14BuiltInManager22GetBuiltInCertificatesEPPNS1_22BuiltInCertificateInfoEPhjPNS0_15CaCertificateIdEj +00000000000362e4 g DF .text 00000000000000d0 nnutilZlib_inflateInit2_ +00000000000b31cc g DF .text 000000000000003c _ZN2nn7account16GetProfileDigestEPNS0_13ProfileDigestERKNS0_3UidE +00000000001fa7d8 g DF .text 00000000000001d4 compose_trans +000000000024f4f4 g DF .text 0000000000000120 _ZN2nn3ldn10InitializeEv +00000000001521c8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E50_nn_sf_sync_SetWirelessCommunicationEnabledForTestEb +000000000096e5f0 g DO .data 0000000000000020 _ZTTN7android19IGraphicBufferAllocE +000000000004526c g DF .text 0000000000000004 _ZN2nn4diag13OnResultCatchENS_6ResultERKNS0_10SourceInfoE +0000000000077d14 g DF .text 0000000000000260 nnmem_nlib_fd_preadv +0000000000227694 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3hid26IActiveVibrationDeviceListEED2Ev +000000000016b738 g DF .text 0000000000000078 _ZN2nn8settings6detail14SetAudioVolumeERKNS0_6system11AudioVolumeEi +000000000017f590 g DF .text 0000000000000074 _ZN2nn4time19StandardSteadyClock3nowEv +00000000003ba7c0 g DF .text 00000000000000fc cexpf +00000000009797e0 g DO .data 0000000000000018 _ZTINSt3__18ios_base7failureE +00000000003d25d8 g DF .text 0000000000000010 btowc +000000000095a758 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000094c660 w DO .data 0000000000000018 _ZTIN2nn2am7service18IDisplayControllerE +0000000000183f14 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_CountAddOnContentByApplicationIdENS0_3OutIivEENS_3ncm13ApplicationIdE +00000000003c25dc g DF .text 0000000000000018 __iscntrl_l +000000000018d7cc g DF .text 000000000000000c _ZN2nn5audio6common24GetSplitterSendDataMagicEv +00000000003ba8bc g DF .text 000000000000005c cexpl +00000000007f6258 g DO .rodata 0000000000000018 _ZN2nn3mii6detail17PantsPresentColorE +0000000000264814 g DF .text 0000000000000004 cuda_DebugString +00000000000c813c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_ClearAppletTransitionBufferEj +00000000000ea958 g DF .text 000000000000011c celt_cos_norm +00000000001afe78 g DF .text 00000000000000b8 _ZN2nn5audio3dsp23ApplyLinearEnvelopeGainEPiPKiiii +00000000001d0118 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_GetDisplayHotplugEventENS0_3OutINS0_12NativeHandleEvEEm +000000000028614c g DF .text 0000000000000038 nvgr_decompress +00000000007c59b0 w DO .rodata 0000000000000020 _ZTSN2nn2am7service13ILockAccessorE +000000000017d500 g DF .text 000000000000001c _ZN2nn4time10InitializeEv +0000000000347144 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb1EE13do_pos_formatEv +0000000000334c74 w DF .text 0000000000000480 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__do_get_signedIlEES4_S4_S4_RNS_8ios_baseERjRT_ +000000000016ff20 g DF .text 0000000000000070 _ZN2nn8settings6detail12SetQuestFlagEb +00000000000303f4 g DF .text 00000000000000d8 _ZNK2nn5image13ExifExtractor16ExtractThumbnailEPm +000000000021692c g DF .text 0000000000000070 _ZN2nn3hid6system6detail27GetAvailableFirmwareVersionEPNS1_15FirmwareVersionENS1_11UniquePadIdE +0000000000088fb8 g DF .text 0000000000000200 _ZN2nn7nlibsdk4heap11CentralHeap7ReallocEPvmPS3_ +00000000007cd540 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001bcd50 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw10SetEyeTypeEi +00000000000cb8bc w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_CreateApplicationENS0_3OutINS0_13SharedPointerINS6_20IApplicationAccessorEEEvEENS_3ncm13ApplicationIdE +00000000000be5fc w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E42_nn_sf_sync_RegisterNotificationTokenAsyncENS0_3OutINS0_13SharedPointerINS5_6detail13IAsyncContextEEEvEERKNS5_3UidERKNS_4npns17NotificationTokenE +000000000008e150 g DF .text 0000000000000188 _ZN2nn2os14WaitTimerEventEPNS0_14TimerEventTypeE +00000000003a2fbc g DF .text 0000000000000054 __muldi3 +000000000036bde8 g DF .text 0000000000000024 _ZNSt3__110istrstreamD0Ev +00000000001c094c g DF .text 0000000000000044 _ZNK2nn3mii6detail16Ver3StoreDataRaw14GetCreatorNameEPNS0_8NicknameE +00000000001474a8 g DF .text 0000000000000004 _ZN2nn3ngc6detail12BinaryWriter10WriteArrayEPKfm +0000000000065bc4 w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE12DoRenameFileEPKcSB_ +00000000007ae770 g DO .rodata 0000000000000010 _ZN2nn4util8Vector3f13ConstantUnitZE +0000000000186cdc g DF .text 000000000000001c _ZN2nn5audio43GetRequiredBufferSizeForAuxSendReturnBufferEPKNS0_22AudioRendererParameterEii +00000000000b00c4 g DF .text 0000000000000148 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferIcEElPhmPPT_ +000000000010ffec g DF .text 00000000000001a4 opus_encode_float +00000000003c30a0 g DF .text 0000000000000008 __towupper_l +000000000005fd14 g DF .text 00000000000000b4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter17DoCreateDirectoryEPKc +00000000001cbae0 g DF .text 0000000000000070 _ZN2nn2vi17SetDisplayCmuModeEPNS0_7DisplayENS0_7CmuModeE +00000000000a51a4 g DF .text 0000000000000130 _ZN2nn6socket6detail5CloseEi +00000000000bb060 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E35_nn_sf_sync_EnsureIdTokenCacheAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +00000000000d72a8 g DF .text 0000000000000068 _ZN2nn4bcat6detail17ShimLibraryGlobal10InitializeEv +0000000000230dc8 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E49_nn_sf_sync_SetShiftAccelerometerCalibrationValueENS5_19SixAxisSensorHandleENS_6applet20AppletResourceUserIdEff +000000000011b2c4 g DF .text 0000000000000020 _ZN2nn3err19ApplicationErrorArgC1Ev +000000000002fb70 g DF .text 0000000000000008 _ZNK2nn5image11ExifBuilder21GetAnalyzedOutputSizeEv +00000000000332f4 g DF .text 0000000000000108 nnutilZlib_deflateBound +000000000022d36c g DF .text 0000000000000044 _ZN2nn3hid5debug28SetSleepButtonAutoPilotStateERKNS1_25SleepButtonAutoPilotStateE +0000000000171168 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_SetOverlayDispProgramIdENS_3ncm9ProgramIdE +00000000001bcd1c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw16SetFavoriteColorEi +0000000000174058 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetFirmwareVersionENS0_3OutINS5_6system15FirmwareVersionEvEE +00000000001a0dec g DF .text 0000000000000030 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_21ClearMixBufferCommandE +00000000007ae790 g DO .rodata 0000000000000010 _ZN2nn4util8Vector4f11ConstantOneE +000000000009dba8 w DF .text 0000000000000090 _ZN2nn2sf4hipc6server17HipcServerMessage10SetBuffersEPNS0_6detail14PointerAndSizeE +00000000002716e4 g DF .text 0000000000000058 NvRmStreamInit +00000000000459e8 g DF .text 0000000000000130 _ZN2nn4diag6detail23TentativeDumpStackTraceEv +00000000000361e4 g DF .text 0000000000000100 nnutilZlib_inflateReset2 +0000000000115a18 g DF .text 00000000000001ac opus_multistream_surround_encoder_init +00000000003142b0 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3fgm2sf8IRequestEE19FunctionForBoolTypeEv +00000000001232cc g DF .text 0000000000000008 _ZNK2nn7friends11UserSetting25GetFriendRequestReceptionEv +00000000000b18f4 g DF .text 00000000000000e0 _ZN2nn7account25ShowUserSelectorForSystemEPNS0_3UidERKNS0_21UserSelectionSettingsERKNS0_37UserSelectionSettingsForSystemServiceE +00000000007cce10 w DO .rodata 0000000000000024 _ZTSN2nn2am7service17IApplicationProxyE +00000000002385d0 g DF .text 0000000000000070 _ZN2nn8irsensor6detail30UnregisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +000000000016abb4 g DF .text 0000000000000048 _ZN2nn8settings6system24SetBatteryPercentageFlagEb +000000000095d0a8 w DO .data 0000000000000058 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +0000000000167a70 g DF .text 0000000000000044 _ZN2nn8settings6system18GetAccountSettingsEPNS1_15AccountSettingsE +0000000000174f80 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_SetHeadphoneVolumeUpdateFlagEb +0000000000185ff8 g DF .text 000000000000000c _ZN2nn5audio21GetPhysicalDeviceNameEPPKcS2_ +000000000024f13c g DF .text 0000000000000058 _ZN2nn3hid21ShowControllerSupportERKNS0_20ControllerSupportArgE +0000000000151c50 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E23_nn_sf_sync_GetClientIdENS0_3OutINS5_8ClientIdEvEE +000000000013603c g DF .text 0000000000000018 _ZN2nn2lm6detail20LogPacketTransmitter12PushFileNameEPKcm +00000000003c3598 g DF .text 00000000000000a0 getenv +00000000002c4e7c g DF .text 0000000000000090 _ZN7android8Composer24setTransparentRegionHintERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEERKNS_6RegionE +000000000018120c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E12GetProxyInfoEv +00000000001bee54 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw16GetBirthPlatformEv +0000000000075b48 g DF .text 0000000000000050 nnmem_nlib_utf32cplen +0000000000362774 g DF .text 000000000000002c _ZNSt13runtime_errorC2ERKS_ +000000000016b558 g DF .text 0000000000000044 _ZN2nn8settings18SetXpadKeyboardMapERKNS0_20BasicXpadKeyboardMapEi +0000000000944760 g DO .data 0000000000000038 _ZTIN2nn2fs6detail24FileServiceObjectAdapterE +00000000007f0ff0 w DO .rodata 0000000000000051 _ZTSN2nn5audio6server8SinkInfoINS0_6common15DeviceParameterENS1_15DeviceSinkStateEEE +000000000013c68c w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3nfp6detail6IDebugEE19FunctionForBoolTypeEv +0000000000257940 g DF .text 0000000000000084 _ZNK2nn3web15ShowNewsPageArg15PushToInChannelENS_6applet19LibraryAppletHandleE +00000000002c3c88 g DF .text 00000000000000cc _ZNK7android14SurfaceControl10getSurfaceEv +0000000000812cf0 w DO .rodata 0000000000000028 _ZTSN2nn3ldn6detail21ISystemServiceCreatorE +00000000000901b8 g DF .text 0000000000000018 _ZN2nn2os11StartThreadEPNS0_10ThreadTypeE +00000000009562f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +0000000000230b78 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E30_nn_sf_sync_DeactivateKeyboardEv +0000000000246da8 w DF .text 0000000000000234 _ZZN22nerd_gillette_internal5otete11ImageCodec216EncodeWithQuintsINS0_17MaxSizedBitStreamILm876EEEEEfRT_RKNS_15StaticImageViewIhEERKNS7_IKhEEENKUlRhhhE_clESF_hh +0000000000347930 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb1EE16do_negative_signEv +0000000000091418 g DF .text 0000000000000004 nnosGetWritableHandleOfSystemEvent +0000000000957bd0 w DO .data 0000000000000018 _ZTIN2nn5audio6detail27IAudioOutManagerForDebuggerE +000000000032706c g DF .text 0000000000000060 _ZNSt3__17promiseIvEC1Ev +0000000000347510 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb0EE11do_groupingEv +00000000003e63cc g DF .text 0000000000000078 __nnmusl_DirClose +0000000000160754 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E32_nn_sf_sync_IsRestrictionEnabledENS0_3OutIbvEE +0000000000228e70 g DF .text 0000000000000018 _ZN2nn3hid6system25IsFirmwareUpdateAvailableEPbNS1_11UniquePadIdE +000000000097d610 g DO .data 0000000000000010 _ZTISt9exception +00000000000d2f50 g DF .text 0000000000000064 _ZN2nn6applet18CloseLibraryAppletENS0_19LibraryAppletHandleE +0000000000093d94 g DF .text 0000000000000044 _ZNK2nn2os6detail11VammManager29IsVirtualAddressMemoryEnabledEv +000000000014134c g DF .text 0000000000000168 _ZN2nn3ngc15ProfanityFilter19CheckProfanityWordsEPjjPPKcm +0000000000154704 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm3ELm1ELl0EEEEEELm0ELm3ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm3ELm1EEEj +00000000001cf778 w DF .text 0000000000000194 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi22ELm392EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSG_ILm8ELm8ELl8EEEEEELm16ELm16ELb1EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSP_ILm8ELm8EEENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm8ELm8EvEESU_j +0000000000269c8c g DF .text 00000000000008d0 NvRmSurfaceWrite +0000000000359b9c g DF .text 00000000000000e4 _ZNKSt3__115__codecvt_utf16IDiLb1EE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_ +00000000003dc878 g DF .text 0000000000000038 feof +0000000000146db4 g DF .text 00000000000001e4 _ZN2nn3ngc6detail12BinaryWriter10WriteArrayEPKhm +00000000007c68d0 w DO .rodata 0000000000000108 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002b8ab4 g DF .text 00000000000019e0 _ZN7android17BnSurfaceComposer10onTransactEjRKNS_6ParcelEPS1_j +000000000013b394 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSG_ILm4ELm4ELl8EEENSG_ILm4ELm4ELl12EEEEEELm16ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENSR_ILm4ELm4EvEEST_j +000000000039c910 g DF .text 000000000000001c _Unwind_DeleteException +000000000011baa8 g DF .text 0000000000000008 _ZNK2nn3err14SystemErrorArg15GetLanguageCodeEv +00000000007e5ed0 w DO .rodata 000000000000001a _ZTSN2nn3ssl2sf11ISslContextE +000000000019efcc g DF .text 0000000000000034 _ZN2nn5audio6server12DetailAspectD2Ev +0000000000959518 w DO .data 0000000000000100 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail16IDatabaseServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000000bc1a8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE17GetCmifBaseObjectEv +0000000000120020 g DF .text 0000000000000140 _ZN2nn7friends19SyncBlockedUserListEPNS0_12AsyncContextERKNS_7account3UidE +0000000000214504 g DF .text 0000000000000004 _ZN2nn3hid6detail23GetAppletResourceUserIdEv +00000000000b455c g DF .text 0000000000000034 _ZN2nn7account22DebugSetUserStateCloseERKNS0_3UidE +00000000001870b8 g DF .text 000000000000007c _ZN2nn5audio17GetAuxInputOutputEPKNS0_7AuxTypeEPaS4_Pii +00000000000d75b8 g DF .text 000000000000009c _ZN2nn4bcat6detail17ShimLibraryGlobal17CreateFileServiceEPPNS1_3ipc25IDeliveryCacheFileServiceE +000000000009daa8 w DF .text 0000000000000100 _ZN2nn2sf4hipc6server17HipcServerMessage22BeginPreparingForReplyEPNS0_6detail14PointerAndSizeE +000000000016f660 g DF .text 0000000000000070 _ZN2nn8settings6detail39GetConsoleSixAxisSensorAccelerationGainEPNS0_6system36ConsoleSixAxisSensorAccelerationGainE +000000000022fe48 g DF .text 0000000000000008 _ZNK2nn3hid15VibrationPlayer18GetCurrentPositionEv +000000000003bc04 g DF .text 0000000000000008 _ZN2nn4util10StringPool14SetStringCountEi +00000000001c5898 g DF .text 0000000000000010 _ZN2nn3mii8Database6FormatEv +0000000000001e80 g DF .text 0000000000000004 _ZN2nn6crypto6detail6BigNumD1Ev +00000000003e00d0 g DF .text 000000000000000c abs +0000000000804eb0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi54EE4MaskE +000000000022e760 g DF .text 0000000000000044 _ZN2nn3hid5debug22DisconnectUsbPadsAsyncEv +00000000001d277c w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +00000000002c8da4 g DF .text 0000000000000014 _ZN7android5Fence4waitEj +0000000000199084 g DF .text 000000000000012c _ZN2nn5audio18OpenDefaultAudioInEPNS0_7AudioInEPNS_2os11SystemEventERKNS0_16AudioInParameterE +00000000003c59b4 g DF .text 0000000000000010 gettext +00000000001a6830 g DF .text 000000000000000c _ZNK2nn5audio6server12VoiceContext13GetSortedInfoEi +00000000007f8bf0 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail21RandomMiiEyeTypeTableE +000000000080591c g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout7ItalianE +00000000002421c8 g DF .text 0000000000000440 _ZN22nerd_gillette_internal5otete11ImageCodec217OldDequantizationERiim +00000000001ce504 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_SetDisplayMagnificationEmiiii +0000000000958ff0 g DO .data 0000000000000028 _ZTVN2nn5audio6server15BufferMixerInfoE +000000000019c0d8 g DF .text 0000000000000018 _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl8GetStateENS_2sf3OutIivEE +00000000000bae30 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE38_nn_sf_sync_GetLinkedNintendoAccountIdENS0_3OutINS5_17NintendoAccountIdEvEE +0000000000239e4c g DF .text 000000000000012c _ZN2nn8irsensor6detail15IrSensorSession25RunImageTransferProcessorERKNS0_14IrCameraHandleERKNS0_36PackedImageTransferProcessorExConfigEPvm +00000000007bc400 w DO .rodata 000000000000019c _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile8IProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000002c747c g DF .text 000000000000009c _ZN7android21SurfaceComposerClient12setUnderscanERKNS_2spINS_7IBinderEEEi +00000000003d9800 g DF .text 0000000000001e08 regexec +0000000000044908 g DF .text 00000000000000b0 _ZN2nn4diag6detail8VLogImplERKNS0_11LogMetaDataEPKcSt9__va_list +000000000011aed0 g DF .text 000000000000006c _ZN2nn3err15ResultBacktrace4MakeEPS1_PKNS_6ResultEi +000000000021cb2c g DF .text 00000000000000bc _ZN2nn3hid6detail24GetAccelerometerPlayModeEPNS0_21AccelerometerPlayModeENS0_19SixAxisSensorHandleE +00000000001ba11c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw13SetGlassScaleEi +00000000000b13c8 g DF .text 0000000000000004 _ZN2nn6socket6detail19RequestCancelHandleEv +000000000022edd4 g DF .text 000000000000007c _ZN2nn3hid30GetActualVibrationGcErmCommandEPNS0_21VibrationGcErmCommandERKNS0_21VibrationDeviceHandleE +0000000000046f20 g DF .text 0000000000000020 _ZN2nn2fs6detail24IsEnabledHandleAccessLogENS0_15DirectoryHandleE +000000000011fed8 g DF .text 0000000000000148 _ZN2nn7friends11UnblockUserEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdE +00000000000d3090 g DF .text 00000000000000dc _ZN2nn6applet26PushToInteractiveInChannelENS0_19LibraryAppletHandleENS0_13StorageHandleE +0000000000160694 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_EnterRestrictedSystemSettingsEv +000000000021052c g DF .text 00000000000000c8 get_os2_table +0000000000181304 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +0000000000217538 g DF .text 0000000000000060 _ZN2nn3hid6detail29UnsetHomeButtonAutoPilotStateEv +00000000007e5250 w DO .rodata 00000000000000e3 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +00000000001a3820 g DF .text 0000000000000020 _ZNK2nn5audio6server11AddressInfo19HasMappedMemoryPoolEv +00000000001bcd84 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetEyebrowYEi +00000000000b2d0c g DF .text 000000000000003c _ZN2nn7account16GetUserExistenceEPbRKNS0_3UidE +00000000000d79f8 g DF .text 0000000000000080 _ZN2nn4bcat6detail3ipc8FinalizeEv +00000000001baff0 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw13SetBeardColorEi +000000000022a154 g DF .text 0000000000000090 _ZN2nn3hid15KeyCodeComposer14DequeueOutputsEPti +00000000001cd2b4 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000007d8540 w DO .rodata 0000000000000105 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001c7a0c g DF .text 0000000000000008 _ZNK2nn3mii13AppletManager17GetValidUuidArrayEv +00000000007c7080 w DO .rodata 0000000000000025 _ZTSN2nn2am7service18IDisplayControllerE +000000000011868c g DF .text 0000000000000064 _ZN2nn5codec11OpusEncoder15SetWaveformTypeENS0_16OpusWaveformTypeE +000000000017b7a4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E17GetCmifBaseObjectEv +000000000022ea18 g DF .text 0000000000000044 _ZN2nn3hid27BeginForcedVibrationSessionEv +00000000007b1520 g DO .rodata 000000000000002c _ZTSN2nn2fs6detail26EventNotifierObjectAdapterE +00000000007c13c0 w DO .rodata 0000000000000031 _ZTSN2nn7account4baas28IFloatingRegistrationRequestE +00000000001ca148 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard26SetMovedCursorCallbackUtf8EPFvPKNS0_18MovedCursorArgUtf8EE +00000000001ca128 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard28SetChangedStringCallbackUtf8EPFvPKNS0_20ChangedStringArgUtf8EE +0000000000286d28 g DF .text 0000000000000024 NvRmGpuChannelSetTimeslice +000000000031de3c w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIttEEPtEEjT0_S5_S5_S5_S5_T_ +00000000001776d0 g DF .text 00000000000000d4 _ZN2nn8settings6detail22ResetXpadGenericPadMapEi +000000000013dfcc g DF .text 0000000000000138 _ZN2nn3nfp29StartNicknameAndOwnerSettingsEPNS0_12DeviceHandleEPbPNS0_12RegisterInfoERKNS0_24AmiiboSettingsStartParamERKNS0_7TagInfoE +00000000001607fc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_SetCustomSafetyLevelSettingsENS5_19RestrictionSettingsE +00000000001ce6b0 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_ListDisplayModesENS0_3OutIlvEERKNS0_8OutArrayINS_2vi15DisplayModeInfoEEEm +000000000006b1c4 g DF .text 0000000000000080 _ZN2nn2fs16SaveDataExporter11GetRestSizeEv +00000000001652f8 g DF .text 0000000000000010 _ZN2nn5prepo10PlayReportC1Ev +00000000003b91d0 g DF .text 0000000000000084 strtok_r +00000000007c43a0 w DO .rodata 000000000000002f _ZTSN2nn7account31NintendoAccountLinkageProcedureE +000000000016fd60 g DF .text 0000000000000070 _ZN2nn8settings6detail24SetInitialLaunchSettingsERKNS0_6system21InitialLaunchSettingsE +00000000002c5b14 g DF .text 000000000000001c _ZN7android21SurfaceComposerClient15setSurfaceARUIDERKNS_2spINS_7IBinderEEERKN2nn6applet20AppletResourceUserIdE +0000000000174fc8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E50_nn_sf_sync_GetPushNotificationActivityModeOnSleepENS0_3OutIivEE +000000000022d998 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm4EEEiPNS0_16TouchScreenStateIXT_EEEi +00000000007abc0a g DO .rodata 0000000000000200 nnutilZlib__dist_code +0000000000367458 w DF .text 00000000000000f0 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwmm +000000000006f960 g DF .text 0000000000000048 _ZN2nn4lmem14CreateUnitHeapEPvmmiiNS0_13InfoPlacementE +000000000009be08 g DF .text 000000000000001c _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor14SetReceiveListEimm +000000000021400c g DF .text 0000000000000010 nnfontllFsReadFile +000000000015863c g DF .text 0000000000000048 _ZN2nn3nsd34DisableChangeEnvironmentIdentifierEv +00000000003e3bb8 g DF .text 0000000000000010 pthread_condattr_init +00000000000ab7c4 w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEEEEELm4ELm8ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESV_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeEj +0000000000147148 g DF .text 00000000000001b0 _ZN2nn3ngc6detail12BinaryWriter10WriteArrayEPKjm +00000000001b14f4 g DF .text 0000000000000048 _ZN2nn2ec26ShowShopConsumableItemListENS_13ApplicationIdERKNS_7account10UserHandleE +0000000000332fa0 w DF .text 00000000000000cc _ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEEC2EPNS_15basic_streambufIcS2_EE +00000000001bb5c4 g DF .text 000000000000000c _ZN2nn3mii6detail19GetNicknameQuestionEPNS0_8NicknameE +00000000000bb238 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE12GetProxyInfoEv +00000000000cfc98 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24IApplicationProxyServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000018c4a8 g DF .text 000000000000002c _ZN2nn5audio16VoiceInfoManagerC1Ev +000000000034713c w DF .text 0000000000000008 _ZNKSt3__110moneypunctIwLb1EE14do_frac_digitsEv +00000000001cbe44 g DF .text 0000000000000024 _ZN2nn2vi18GetBlockingServiceEv +00000000001e1fa4 g DF .text 0000000000000844 FSS_get_advance +00000000000ce9dc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_ExtendSaveDataENS0_3OutIlvEEhRKNS_7account3UidEll +00000000001dd9a0 g DF .text 0000000000000124 FS_init_ex +0000000000141128 g DF .text 000000000000001c _ZN2nn3ngc15ProfanityFilterC1EPvm +00000000002a63dc g DF .text 0000000000000080 property_get +000000000004c958 w DF .text 0000000000000004 _ZN2nn2fs3fsa5IFileD2Ev +00000000000b54c8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E15_nn_sf_sync_GetENS0_3OutINS6_11ProfileBaseEvEENSQ_INS6_8UserDataEvEE +00000000003dcda8 g DF .text 000000000000014c __fgetwc_unlocked +00000000003b83f8 g DF .text 0000000000000090 strtold +00000000000cbb4c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service19ILibraryAppletProxyEEEvi +000000000029e5bc g DF .text 000000000000009c _ZN7android6Parcel19writeInterfaceTokenERKNS_8String16E +00000000007ca4f0 w DO .rodata 0000000000000106 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000341cfc w DF .text 000000000000005c _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIcEE +0000000000177c58 g DF .text 0000000000000020 _ZN2nn3ssl7Context12GetContextIdEPm +000000000018aae4 g DF .text 0000000000000040 _ZN2nn5audio15ReleaseSplitterEPNS0_19AudioRendererConfigEPNS0_12SplitterTypeE +00000000003e0d18 g DF .text 0000000000000094 strtoll +000000000008f24c g DF .text 0000000000000034 _ZN2nn2os21UnlinkMultiWaitHolderEPNS0_19MultiWaitHolderTypeE +000000000002e2c8 g DF .text 00000000000002d4 _ZN2nn5image6detail31GetBufferSizeForJpegCompressionEPmRKNS0_9DimensionENS0_17JpegSamplingRatioE +0000000000258790 g DF .text 000000000000013c nvdcSetCmu +00000000000402cc g DF .text 0000000000000044 _ZN2nn4util30ConvertStringUtf16NativeToUtf8EPciPKti +000000000006f544 g DF .text 000000000000003c _ZN2nn4lmem15CreateFrameHeapEPvmi +00000000002d2338 g DF .text 0000000000000090 _ZN7android10VectorImpl12appendVectorERKS0_ +0000000000822520 w DO .rodata 000000000000002f _ZTSNSt3__113basic_istreamIcNS_11char_traitsIcEEEE +0000000000803fd0 w DO .rodata 0000000000000053 _ZTSN2nn3hid6detail8RingLifoINS0_18SixAxisSensorStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000007228c g DF .text 0000000000000230 nnmem_nlib_vdprintf +00000000003e78f8 w DF .text 0000000000000004 __nnmusl_pthread_once_lock_finalize +000000000021a470 g DF .text 0000000000000074 _ZN2nn3hid6detail24SetSupportedNpadStyleSetENS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +000000000094bb98 w DO .data 0000000000000120 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ICommonStateGetterENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000182bfc g DF .text 000000000000005c _ZN2nn3ntc4shim30EnsureNetworkClockAvailabilityEv +0000000000318a44 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +0000000000041c88 g DF .text 0000000000000254 _ZN2nn4edid6detail21GetEstablishedTimingIEPFbPKNS0_15DisplayModeInfoEPKNS0_17DisplayTimingInfoEPKNS0_13ImageSizeInfoEPvESB_h +00000000001a3570 g DF .text 000000000000005c _ZNK2nn5audio6server10PoolMapper3MapEPNS1_14MemoryPoolInfoE +000000000095da38 w DO .data 00000000000000e0 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14IrSensorServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000007cec90 w DO .rodata 00000000000000fa _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000c2278 g DF .text 0000000000000028 _ZN2nn7account13ProfileEditorD1Ev +00000000000c2a40 g DF .text 000000000000004c _ZN2nn2am20GetDisplayControllerEv +00000000000665e0 g DF .text 0000000000000010 _ZN2nn2fs18IsSaveDataExistingERKNS0_6UserIdE +0000000000070320 g DF .text 0000000000000028 _ZN2nn4lmem6detail23GetExpHeapTotalFreeSizeEPNS1_8HeapHeadE +000000000018d7ac g DF .text 0000000000000008 _ZNK2nn5audio6common10NodeStates12GetNodeCountEv +0000000000238f80 g DF .text 0000000000000140 _ZN2nn8irsensor6detail13StatusManager9ClearLifoERKNS0_14IrCameraHandleE +0000000000297d3c g DF .text 0000000000000148 _ZN7android8BnMemory10onTransactEjRKNS_6ParcelEPS1_j +0000000000824000 g DO .rodata 000000000000001e _ZTSNSt3__119__shared_weak_countE +0000000000286de4 g DF .text 0000000000000014 NvRmGpuRegOpsSessionClose +000000000013f76c g DF .text 0000000000000134 _ZN2nn3nfp29StartNicknameAndOwnerSettingsEPNS0_7TagInfoEPNS0_12DeviceHandleEPbPNS0_12RegisterInfoERKNS0_24AmiiboSettingsStartParamE +000000000017eb1c g DF .text 0000000000000018 _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTask9StartTaskEv +00000000002696b8 g DF .text 000000000000008c NvRmChipGetCapabilityBool +000000000006b244 g DF .text 000000000000008c _ZN2nn2fs16SaveDataImporterC2EONS_2sf13SharedPointerINS_5fssrv2sf17ISaveDataImporterEEE +00000000007c3e30 w DO .rodata 0000000000000028 _ZTSN2nn7account24IBaasAccessTokenAccessorE +000000000011dd20 g DF .text 00000000000000b4 _ZN2nn7friends9SetOptionEiz +00000000001c3288 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetLocalonlyEi +000000000021e1e4 g DF .text 00000000000000b8 _ZN2nn3hid6detail20BindNfcActivateEventERjPNS_2os15SystemEventTypeENS3_14EventClearModeE +000000000022dd58 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm14EEEiPNS0_16TouchScreenStateIXT_EEEi +00000000000d6ea4 g DF .text 0000000000000044 _ZN2nn4bcat21DeliveryCacheProgress6DetachEv +000000000095c9c8 g DO .data 0000000000000028 _ZTVN2nn3hid15VibrationWriterE +00000000000c5dc4 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ICommonStateGetterENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000003ab0d4 g DF .text 0000000000000004 pthread_getschedparam +000000000036c13c g DF .text 0000000000000034 _ZNSt3__19strstreamD0Ev +000000000024ee80 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_6capsrv2sf30IMovieWriteStreamServiceObjectEE19FunctionForBoolTypeEv +00000000002204fc g DF .text 0000000000000068 _ZN2nn3hid6detail18SharedMemoryHolder10InitializeEv +0000000000155a10 g DF .text 0000000000000060 _ZN2nn4nifm8ShutdownEv +000000000004d76c g DF .text 0000000000000084 _ZN2nn2fs6detail18FileSystemAccessor25CleanDirectoryRecursivelyEPKc +0000000000328050 g DF .text 0000000000000108 _ZNSt3__120__threads_data_queue12acquire_nodeEv +00000000003de58c g DF .text 0000000000000074 snprintf +0000000000089cc4 g DF .text 0000000000000024 _ZN2nn3mem17StandardAllocatorC2EPvm +00000000001e3540 g DF .text 0000000000000048 __term_heap +0000000000360ed0 g DF .text 0000000000000008 _ZNKSt3__119__shared_weak_count13__get_deleterERKSt9type_info +000000000013f514 g DF .text 00000000000000c4 _ZN2nn3nfp18DeleteRegisterInfoERKNS0_12DeviceHandleE +00000000002c6274 g DF .text 00000000000000bc _ZN7android21SurfaceComposerClient8setLayerERKNS_2spINS_7IBinderEEEi +0000000000979220 g DO .data 0000000000000010 _ZTINSt3__18__c_nodeE +00000000000c6de0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_SetRestartMessageEnabledEb +00000000001af888 g DF .text 00000000000000ac _ZN2nn5audio3dsp8ApplyMixEPiPKiii +0000000000953700 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +00000000003e5eb4 g DF .text 0000000000000158 __nnmusl_PRead +0000000000060a88 g DF .text 0000000000000148 _ZN2nn2fs34OpenGameCardDetectionEventNotifierEPNSt3__110unique_ptrINS0_14IEventNotifierENS1_14default_deleteIS3_EEEE +00000000002cd794 g DF .text 0000000000000060 _ZNK7android7RefBase14forceIncStrongEPKv +00000000003cc2a8 g DF .text 00000000000001c0 log10 +00000000001568c4 g DF .text 0000000000000018 _ZN2nn4nifm38SetRequestConnectionConfirmationOptionENS0_13RequestHandleENS0_28ConnectionConfirmationOptionE +0000000000234c48 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E41_nn_sf_sync_GetPlayReportControllerUsagesENS0_3OutIlvEERKNS0_8OutArrayINS5_6system25PlayReportControllerUsageEEE +0000000000123904 g DF .text 0000000000000008 _ZNK2nn7friends13FriendSetting12GetNewlyFlagEv +000000000022044c w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS1_15UniquePadConfigELi1ENS1_13AtomicStorageIS3_EEED2Ev +000000000022fb3c g DF .text 0000000000000048 _ZNK2nn3hid23VibrationNodeConnection11IsConnectedEv +0000000000358b6c g DF .text 0000000000000170 _ZNKSt3__114__codecvt_utf8IDsE9do_lengthER11__mbstate_tPKcS5_m +00000000007b6f50 w DO .rodata 0000000000000020 _ZTSN2nn3htc4tenv15IServiceManagerE +0000000000015968 g DF .text 0000000000000364 _ZN2nn5image6detail4jpeg23jpeg_default_colorspaceEPNS2_20jpeg_compress_structE +00000000007b87a0 g DO .rodata 0000000000000036 _ZTSN2nn2os6detail36MultiWaitHolderOfMessageQueueNotFullE +000000000019c4f4 g DF .text 0000000000000044 _ZN2nn5audio6server24AudioRendererManagerImplD0Ev +00000000008223ac g DO .rodata 0000000000000004 _ZNSt3__18ios_base8showbaseE +0000000000172708 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +000000000012a6fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E20_nn_sf_sync_GetEventENS0_3OutINS0_12NativeHandleEvEE +000000000018021c g DF .text 000000000000006c _ZN2nn4time6detail7service21ServiceProviderClientD2Ev +0000000000152b40 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E38_nn_sf_sync_UnregisterSocketDescriptorEi +00000000002592a4 g DF .text 0000000000000008 nvdcEnableVblank +00000000000c1cf4 g DF .text 0000000000000030 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureC2ERKNS0_3UidEPNS0_4http15IOAuthProcedureE +00000000001bafb0 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw13GetGlassColorEv +00000000003dd80c g DF .text 000000000000008c __ftello +00000000001d5c0c g DF .text 00000000000000cc _ZN2nn2vi6detail18SystemServiceProxyC2Ev +00000000003cab1c g DF .text 0000000000000074 frexp +0000000000264794 g DF .text 0000000000000004 multimedia_DebugVprintf +000000000094dca0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service26ILibraryAppletSelfAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000025a160 g DF .text 0000000000000188 nvdcGetModeDB2 +00000000003e92b8 g DF .text 000000000000000c __nnmusl_ErrnoLocation +00000000001e0a48 g DF .text 00000000000000d0 FSS_get_glyph_metrics +00000000003dfc14 g DF .text 0000000000000040 vwprintf +0000000000804a10 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi17EE4MaskE +00000000007f0c90 g DO .rodata 0000000000000021 _ZTSN2nn5audio6server12DetailAspectE +00000000000cea24 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E54_nn_sf_sync_BeginBlockingHomeButtonShortAndLongPressedEl +0000000000357f58 g DF .text 0000000000000024 _ZNSt3__17codecvtIDic11__mbstate_tED0Ev +000000000018d9c4 g DF .text 0000000000000030 _ZN2nn5audio13DelayLineTickEPNS0_11FXDelayLineEi +0000000000295458 g DF .text 0000000000000078 _ZTv0_n24_N7android7BBinderD0Ev +0000000000232bd4 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E17GetCmifBaseObjectEv +00000000003d3460 g DF .text 000000000000002c rand +000000000094fb40 w DO .data 0000000000000018 _ZTIN2nn4bcat6detail3ipc29IDeliveryCacheProgressServiceE +0000000000954fe0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectESI_E6ObjectE +0000000000162998 w DF .text 0000000000000264 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSG_ILm4ELm4ELl8EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm12ELb0EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm4EEENS2_27OutHandleClientArgumentTypeENSW_ILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000805450 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi99EE4MaskE +0000000000065b94 w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE17DoCreateDirectoryEPKc +00000000001712c4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_GetSpeakerParameterENS0_3OutINS5_7factory16SpeakerParameterEvEE +0000000000124ad4 g DF .text 0000000000000038 _ZN2nn7friends6detail20AsyncContextInternal6CancelEv +0000000000234c74 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E56_nn_sf_sync_AcquirePlayReportRegisteredDeviceUpdateEventENS0_3OutINS0_12NativeHandleEvEE +00000000002ce464 g DF .text 0000000000000054 _ZN7android8String165setToERKS0_ +000000000094fc90 w DO .data 0000000000000018 _ZTIN2nn4bcat6detail3ipc28IDeliveryCacheStorageServiceE +00000000003130a0 g DF .text 0000000000000248 _ZN2nn3fgm7Request10InitializeENS0_6ModuleEjNS_2os14EventClearModeE +00000000000a8cac w DF .text 000000000000021c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSE_ILm4ELm4ELl4EEENSG_ILi1ELi33ELm0EEENSE_ILm4ELm4ELl8EEEEEELm12ELm8ELb0EEESL_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESS_NSQ_23InRawClientArgumentTypeILm4ELm4EvEENSQ_24BufferClientArgumentTypeESU_SV_SU_j +0000000000335e84 w DF .text 0000000000000480 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedImEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000000118e8 g DF .text 00000000000000e0 _ZN2nn5image6detail4jpeg23jinit_c_main_controllerEPNS2_20jpeg_compress_structEb +00000000007fd3a8 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail26RandomMiiFacelineMakeTableE +00000000001d62fc g DF .text 00000000000000f8 _ZN2nn2vi6detail18SystemServiceProxy26InitializeRelayServiceImplEv +000000000025d0bc g DF .text 000000000000000c NvOsStat +00000000001bcd74 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw15SetEyebrowScaleEi +00000000001890f4 g DF .text 0000000000000014 _ZN2nn5audio14MemoryPoolInfoC2Ev +000000000097bc30 w DO .data 0000000000000038 _ZTINSt3__115time_get_bynameIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000000b4528 g DF .text 0000000000000034 _ZN2nn7account21DebugSetUserStateOpenERKNS0_3UidE +0000000000122460 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest16GetRequestStatusEv +0000000000359798 g DF .text 000000000000000c _ZNKSt3__115__codecvt_utf16IDsLb1EE10do_unshiftER11__mbstate_tPcS4_RS4_ +0000000000344638 g DF .text 000000000000029c _ZNSt3__118__time_get_storageIcEC1EPKc +00000000000dd4ac g DF .text 0000000000000384 comb_filter +00000000001a4d50 g DF .text 0000000000000008 _ZNK2nn5audio6server12SinkInfoBase10ShouldSkipEv +000000000019ede4 g DF .text 00000000000000a0 _ZN2nn5audio6server11EntryAspectC2EPNS1_16CommandGeneratorENS0_20PerformanceEntryTypeEj +00000000002cdeac g DF .text 0000000000000010 _ZNK7android12SharedBuffer11attemptEditEv +00000000003c3314 w DF .text 0000000000000014 alphasort64 +00000000000b8680 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000009bba0 g DF .text 000000000000000c _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor12SetProcessIdEm +000000000017d3cc g DF .text 000000000000007c _ZN2nn4time25AdjustableUserSystemClock3nowEv +00000000001d3d6c g DF .text 0000000000000038 _ZN2nn2vi26GetDisplayIdWithValidationEPKNS0_7DisplayE +0000000000318700 g DF .text 0000000000000068 _ZN2nn3pcv14ReleaseControlENS0_6ModuleE +00000000000ac9bc g DF .text 000000000000006c _ZN2nn6socket8resolver9GetOptionENS1_6Option4typeERm +00000000001608f8 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E50_nn_sf_sync_UpdateFreeCommunicationApplicationListERKNS0_7InArrayINS5_32FreeCommunicationApplicationInfoEEE +000000000018b2e8 g DF .text 00000000000001a0 _ZN2nn5audio19SplitterInfoManager19AcquireSplitterInfoEiii +000000000022c26c g DF .text 000000000000004c _ZN2nn3hid29GetNpadHandheldActivationModeEv +00000000001c5ebc g DF .text 0000000000000080 _ZN2nn3mii6detail21ServiceProviderClientD2Ev +0000000000222bc8 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm3EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +000000000023df34 g DF .text 00000000000000b8 _ZN22nerd_gillette_internal5otete7jaimev114DecodeShapeROKERNS1_13ShapeInPacketEPKhmPmRKNS1_17IntensityInPacketE +00000000007c79e0 w DO .rodata 0000000000000117 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEEE +000000000004adec g DF .text 00000000000000f8 _ZN2nn2fs11FileStorage5WriteElPKvm +00000000007b1000 g DO .rodata 000000000000001a _ZTSN2nn2fs15RomFsFileSystemE +0000000000042790 g DF .text 0000000000000008 _ZN2nn4edid6detail10InitializeEPNS0_4EdidE +000000000004ed70 g DF .text 000000000000008c _ZN2nn2fs9CloseFileENS0_10FileHandleE +00000000007cea30 w DO .rodata 0000000000000149 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc12IBcatServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000010ca68 g DF .text 00000000000000e4 frame_size_select +00000000003cc5f8 g DF .text 00000000000001d8 log1p +000000000018ba14 g DF .text 000000000000002c _ZN2nn5audio23SplitterDestinationDataC1Ei +00000000007c56a0 w DO .rodata 0000000000000105 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000014fad0 g DF .text 0000000000000098 _ZN2nn3ngc6detail9CalcRank1EjPKmPKjPKh +000000000022e2b8 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm15EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +000000000022f9dc g DF .text 0000000000000028 _ZN2nn3hid23VibrationNodeConnectionC1EPNS0_13VibrationNodeES3_ +00000000002b3464 g DF .text 0000000000000034 _ZN7android12ConsumerBaseD0Ev +0000000000091500 g DF .text 0000000000000004 nnosGetUsedTlsSlotCount +00000000000a1a94 g DF .text 0000000000000004 nnsocketBind +000000000012062c g DF .text 0000000000000174 _ZN2nn7friends15GetProfileExtraEPNS0_12AsyncContextEPNS0_12ProfileExtraERKNS_7account3UidERKNS0_10FriendCodeE +00000000001e28c0 g DF .text 0000000000000004 FSS_inverse_map_char +00000000007b0d30 w DO .rodata 0000000000000023 _ZTSN2nn3spl6detail16IRandomInterfaceE +00000000002d0ce0 g DF .text 0000000000000004 _ZN7android7String816convertToResPathEv +000000000008f32c g DF .text 0000000000000008 _ZN2nn2os26GetMultiWaitHolderUserDataEPKNS0_19MultiWaitHolderTypeE +00000000001d9d14 g DF .text 0000000000000008 _ZN2nn6fontll18ScalableFontEngine22GetPointerToWorkBufferEv +000000000027470c g DF .text 0000000000000004 NvRmChannelModuleMutexUnlock +0000000000353cf4 g DF .text 000000000000005c _ZNSt3__16localeC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000001a7814 g DF .text 0000000000000048 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl26SetAudioDeviceOutputVolumeERKNS_2sf8InBufferEf +00000000000814a0 g DF .text 0000000000000254 nnmem_nlib_mutex_trylock_for +00000000001a7c24 w DF .text 0000000000000004 _ZN2nn2sf22UnmanagedServiceObjectINS_5audio6detail21IAudioRendererManagerENS2_6server24AudioRendererManagerImplEE7ReleaseEv +000000000009623c g DF .text 00000000000000f8 _ZN2nn2os6detail27InterruptEventImplByHorizon9TimedWaitENS_8TimeSpanE +00000000001261ec w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E54_nn_sf_sync_SendFriendRequestWithNintendoNetworkIdInfoERKNS_7account3UidENSL_23NetworkServiceAccountIdEiRKNS5_7MiiNameERKNS5_16MiiImageUrlParamESS_SV_ +00000000007d4bb9 g DO .rodata 0000000000000002 silk_stereo_only_code_mid_iCDF +0000000000224c90 w DF .text 00000000000001e4 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm9EEEEEiPT_i +00000000007b0f50 w DO .rodata 0000000000000012 _ZTSN2nn2fs8IStorageE +000000000094c850 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001467d4 g DF .text 0000000000000030 _ZN2nn3ngc6detail12BinaryWriter4InitENS2_13EndianSettingE +00000000003286d4 g DF .text 0000000000000354 _ZNSt3__18ios_base7copyfmtERKS0_ +000000000004e1c8 g DF .text 0000000000000058 _ZN2nn2fs6detail10MountTable18CanAcceptMountNameEPKc +00000000000615c8 g DF .text 0000000000000168 _ZN2nn2fs19GetGameCardAsicInfoEPNS_2gc14RmaInformationEPKvm +00000000000ca9d8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21ILibraryAppletCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000013a648 g DF .text 000000000000001c _ZN2nn3nfc14StartDetectionERKNS0_12DeviceHandleE +00000000001cfa40 w DF .text 000000000000014c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl64EEENSB_ILm8ELm8ELl72EEENSB_ILm36ELm4ELl0EEENSB_ILm16ELm4ELl36EEENSB_ILm4ELm4ELl52EEENSB_ILm4ELm4ELl56EEEEEELm80ELm0ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESP_NSO_ILm36ELm4EvEENSO_ILm16ELm4EvEENSO_ILm4ELm4EvEESS_j +0000000000366dcc w DF .text 00000000000000d8 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE5rfindEPKwmm +000000000019bf44 g DF .text 0000000000000008 _ZN2nn5audio6server17AudioRenderSystem17SignalSystemEventEv +00000000003ccb28 g DF .text 0000000000000158 log2f +000000000003bc0c g DF .text 0000000000000010 _ZN2nn4util10StringPool12SetSignatureEv +00000000000aebb8 w DF .text 00000000000001c0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl4EEENSB_ILm8ELm8ELl8EEENSB_ILm1ELm1ELl0EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSH_ILm4ELm4ELl4EEENSF_ILi1ELi6ELm0EEENSH_ILm4ELm4ELl8EEEEEELm16ELm12ELb1EEESM_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSS_ILm8ELm8EvEENSS_ILm1ELm1EvEENSR_24BufferClientArgumentTypeENSR_24OutRawClientArgumentTypeILm4ELm4EEESY_SW_SY_j +0000000000367308 w DF .text 0000000000000098 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEPKw +000000000009169c g DF .text 0000000000000010 _ZN2nn2os6detail21WaitInterProcessEventEPNS1_21InterProcessEventTypeE +00000000001b9948 g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw11SetEyeColorEi +000000000020f08c g DF .text 00000000000000c4 check_sfnt +000000000019a388 g DF .text 00000000000000cc _ZN2nn5audio27GetFinalOutputRecorderStateEPKNS0_19FinalOutputRecorderE +00000000003ccc80 g DF .text 000000000000001c log2l +00000000000d6020 g DF .text 0000000000000008 _ZN2nn4bcat22DeliveryCacheDirectoryC2Ev +000000000025cf64 g DF .text 0000000000000004 NvOsAlloc +0000000000361cfc g DF .text 0000000000000060 _ZNSt3__111regex_errorC1ENS_15regex_constants10error_typeE +00000000001bd11c g DF .text 00000000000000c4 _ZN2nn3mii6detail34ModifyVer3StoreDataNicknameInvalidEPNS0_8NicknameE +00000000003a988c g DF .text 000000000000000c __ofl_unlock +00000000003147a0 w DF .text 0000000000000040 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_8DebuggerEEEEES7_E16_nn_sf_sync_ReadERKNS0_9OutBufferENS0_3OutIjvEESO_SO_ +00000000001658f4 g DF .text 0000000000000010 _ZN2nn5prepo16SystemPlayReport5ClearEv +0000000000158908 g DF .text 0000000000000058 _ZN2nn3nsd22GetNasServiceSettingExEPNS0_17NasServiceSettingERKNS0_14NasServiceNameE +000000000016dc8c g DF .text 0000000000000070 _ZN2nn8settings6detail13GetLdnChannelEPi +0000000000151b18 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4nifm6detail21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_15IGeneralServiceEEEvi +00000000003ddc80 w DF .text 0000000000000078 __isoc99_fwscanf +000000000009ecf4 w DF .text 0000000000000004 _ZN2nn2sf22UnmanagedServiceObjectINS0_4hipc6detail12IHipcManagerENS2_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEE12AddReferenceEv +0000000000355d04 g DF .text 00000000000000e0 _ZNSt3__112ctype_bynameIcEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +000000000009c610 g DF .text 00000000000000b0 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase16ProcessAsSessionEPNS_2os19MultiWaitHolderTypeEPvm +00000000000b13b4 g DF .text 0000000000000014 _ZN2nn6socket6detail11GetNameInfoEPK8sockaddrjPcjS5_jiPKNS0_14ResolverOptionEm +000000000021ae98 g DF .text 000000000000008c _ZN2nn3hid6detail20GetNpadJoyAssignmentEPNS0_21NpadJoyAssignmentModeERKj +0000000000171214 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_GetSslCertificateENS0_3OutINS5_7factory14SslCertificateEvEE +000000000000406c g DF .text 0000000000000144 _ZN2nn6crypto6detail8p256_mulEPNS1_10p256_pointEPKjiPKS2_PKNS1_10p256_curveE +0000000000182bec g DF .text 0000000000000010 _ZNK2nn4time6detail20MonotonicSystemClock10IsAdjustedEv +00000000000bb40c w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE56_nn_sf_sync_RefreshNintendoAccountUserResourceCacheAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000160f50 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_FinishUnlinkPairingENS6_9AsyncDataEb +000000000026cd3c g DF .text 0000000000000068 NvRmSyncGetFd +00000000001a32d4 g DF .text 0000000000000008 _ZN2nn5audio6server11AddressInfo7SetPoolEPNS1_14MemoryPoolInfoE +00000000007e90cc g DO .rodata 0000000000000004 _ZN2nn5audio14DelayParameter24SupportedChannelCountMaxE +000000000005f828 g DF .text 0000000000000028 _ZN2nn2fs6detail24FileServiceObjectAdapterD2Ev +00000000007e7d80 w DO .rodata 0000000000000178 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +000000000036b394 g DF .text 000000000000006c _ZNSt3__112strstreambuf6__initEPclS1_ +0000000000239b74 g DF .text 000000000000002c _ZN2nn8irsensor6detail15IrSensorSession25GetWindowOfInterestConfigERKNS0_14IrCameraHandleE +00000000002c560c g DF .text 000000000000001c _ZN7android21SurfaceComposerClient14setClientARUIDERKN2nn6applet20AppletResourceUserIdE +0000000000355258 g DF .text 0000000000000058 _ZNKSt3__15ctypeIwE5do_isEPKwS3_Pt +000000000017eab4 g DF .text 0000000000000004 _ZN2nn4time38CancelEnsuringNetworkClockAvailabilityEv +000000000095d190 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail9HidServerEEEEEE13ServiceObjectE +000000000023b0b8 g DF .text 0000000000000018 _ZN2nn8irsensor28GetTeraPluginProcessorStatesEPNS0_24TeraPluginProcessorStateEPiiljiRKNS0_14IrCameraHandleE +00000000002cf074 g DF .text 0000000000000038 _ZN7android7String8C1EPKDi +0000000000167bd8 g DF .text 0000000000000044 _ZN2nn8settings6system18SetAudioOutputModeENS1_15AudioOutputModeENS1_21AudioOutputModeTargetE +0000000000955ed0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +00000000001a1d54 g DF .text 00000000000001b4 _ZN2nn5audio6server11InfoUpdater18UpdateSplitterInfoERNS1_15SplitterContextE +00000000001a4d60 g DF .text 0000000000000008 _ZN2nn5audio6server12SinkInfoBase7CleanUpEv +000000000039f5e8 g DF .text 0000000000000068 __lesf2 +0000000000346fbc w DF .text 0000000000000008 _ZNKSt3__110moneypunctIcLb1EE14do_frac_digitsEv +000000000012a820 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +000000000095b908 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_10MouseStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000008041e0 w DO .rodata 0000000000000024 _ZTSN2nn3hid6detail17CaptureButtonLifoE +000000000016e564 g DF .text 0000000000000070 _ZN2nn8settings6detail23GetExternalRtcResetFlagEPb +00000000001d9c6c g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngineD1Ev +0000000000217ccc g DF .text 00000000000000bc _ZN2nn3hid6detail32BindJoyDetachOnBluetoothOffEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000221100 g DF .text 00000000000000c8 _ZN2nn3hid6detail20BindSleepButtonEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000001b5724 g DF .text 0000000000000034 _ZN2nn2la21CommonArgumentsWriterC2Ej +00000000002589c8 g DF .text 00000000000002e0 nvdcSetCsc +00000000002cf010 g DF .text 0000000000000038 _ZN7android7String8C1EPKDs +0000000000a80cc0 w DO .bss 0000000000000010 _ZNSt3__110moneypunctIwLb0EE2idE +00000000003e75e0 g DF .text 0000000000000018 __nnmusl_MutexUnlock +00000000000b7860 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE29_nn_sf_sync_GetLastOpenedUserENS0_3OutINS5_3UidEvEE +000000000012d31c g DF .text 00000000000000cc _ZN2nn2fs15GetSaveDataSizeEPlS1_RKNS_7account3UidE +00000000000c5e1c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +000000000011a51c g DF .text 0000000000000094 _ZN2nn3err9ShowErrorENS_6ResultE +00000000009458a0 w DO .data 0000000000000018 _ZTIN2nn2os6detail33MultiWaitHolderOfNativeWaitObjectE +0000000000179a94 g DF .text 00000000000000d4 _ZN2nn3ssl10Connection13GetCipherInfoEPNS1_10CipherInfoE +000000000004f4ac g DF .text 000000000000001c _ZN2nn2fs10CreateFileEPKcl +00000000002d0ce4 g DF .text 0000000000000034 _ZN7android12uptimeMillisEv +000000000006ae00 g DF .text 0000000000000008 _ZN2nn2fs30SaveDataTransferSizeCalculatorC2Ev +0000000000945fa0 g DO .data 0000000000000018 _ZTIN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBaseE +0000000000946300 w DO .data 0000000000000010 _ZTIN2nn2sf6detail27UnmanagedEmplacedImplHolderINS0_4hipc6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEE +0000000000237bfc w DF .text 00000000000002b4 _ZNK2nn8irsensor6detail8RingLifoINS0_28PointingProcessorMarkerStateELi6EE4ReadEPS3_ij +00000000000829fc w DF .text 0000000000000120 _ZN2nn7nlibsdk4heap12TlsHeapCache15AllocFunc_Mode0INSt3__117integral_constantIbLb0EEEEEPvPS2_m +00000000000b987c w DF .text 0000000000000114 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_7account31IAccountServiceForAdministratorENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEEENS_6ResultEPNS0_13SharedPointerIT_EENS_3svc6HandleE +00000000001c78d4 g DF .text 0000000000000008 _ZN2nn3mii13AppletManagerC1Ev +00000000002733e0 g DF .text 0000000000000084 NvRmStreamFlush +000000000021e6ac g DF .text 0000000000000074 _ZN2nn3hid6detail18DeactivateIrSensorERjNS_6applet20AppletResourceUserIdE +00000000003d3370 g DF .text 0000000000000034 drand48 +00000000002632cc g DF .text 0000000000000080 NvOsEventPoolLink +00000000002157ac g DF .text 000000000000007c _ZN2nn3hid6detail17StopSixAxisSensorERKNS0_26ConsoleSixAxisSensorHandleE +0000000000130fd8 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_21OutObjectArgumentInfoILi0ELi0EEEEEELm0ELm4ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutObjectClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000022bf34 g DF .text 0000000000000054 _ZN2nn3hid20GetNpadJoyAssignmentERKj +0000000000173568 g DF .text 0000000000000138 _ZN2nn8settings6detail25CreateSettingsServerProxyEPNS_2sf13SharedPointerINS0_15ISettingsServerEEE +00000000001c774c g DF .text 0000000000000008 _ZNK2nn3mii11AppletInput7GetModeEv +0000000000238c6c g DF .text 000000000000004c _ZN2nn8irsensor6detail13StatusManager18AllocateMomentLifoERKNS0_14IrCameraHandleE +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__117__widen_from_utf8ILm16EED1Ev +00000000002c5f00 g DF .text 000000000000002c _ZN7android21SurfaceComposerClient17getBuiltInDisplayEi +0000000000214c5c g DF .text 0000000000000170 _ZN2nn3hid6detail13GetXpadStatesEPiPNS0_14BasicXpadStateEiRKNS0_11BasicXpadIdE +0000000000360d6c g DF .text 0000000000000040 _ZNSt3__114__shared_count16__release_sharedEv +00000000000d9778 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm32ELm1ELl0EEEEEELm32ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm32ELm1EvEEj +0000000000236114 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEES6_E12GetProxyInfoEv +00000000000b60a4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEE28_nn_sf_sync_LoadIdTokenCacheENS0_3OutIjvEERKNS0_9OutBufferE +00000000000ceae4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_SetMediaPlaybackStateForApplicationEb +00000000007cf380 w DO .rodata 0000000000000035 _ZTSN2nn4bcat6detail3ipc29IDeliveryCacheProgressServiceE +000000000036cef8 g DF .text 0000000000000080 _ZNSt3__119__thread_local_dataEv +000000000032f05c w DF .text 0000000000000004 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED2Ev +00000000003c680c g DF .text 0000000000000208 atan +00000000003e3490 g DF .text 0000000000000030 wcspbrk +000000000009d9b0 w DF .text 00000000000000f0 _ZNK2nn2sf4hipc6server17HipcServerMessage18GetInNativeHandlesEPNS0_12NativeHandleE +000000000014916c g DF .text 000000000000004c _ZNK2nn3ngc6detail2Bp7MemSizeEv +000000000009bb88 g DF .text 000000000000000c _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor6SetTagEt +0000000000110288 g DF .text 0000000000000e70 opus_encoder_ctl +0000000000172f50 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_E18_nn_sf_sync_GetKeyENS0_3OutImvEERKNS0_9OutBufferE +000000000018deac g DF .text 00000000000000f4 _ZN2nn5audio41I3DL2ReverbGetRequiredDelayLineBufferSizeEii +00000000000b7e08 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE17GetCmifBaseObjectEv +000000000036ce24 g DF .text 0000000000000038 _ZNSt3__16thread6detachEv +0000000000046d50 g DF .text 0000000000000090 _ZN2nn2fs6detail30OutputAccessLogForPreconditionEbNS_2os4TickES3_PKcNS0_10FileHandleES5_z +0000000000155230 g DF .text 000000000000007c _ZN2nn4nifm6detail27GetScanRequestClientPointerEPPNS1_17ScanRequestClientE +00000000001bc894 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw8GetMoleYEv +000000000015ebe8 g DF .text 0000000000000008 _ZN2nn4pctl18PairingAccountInfoC2Ev +00000000003a5b60 g DF .text 0000000000000024 __atomic_load_1 +00000000003a5b84 g DF .text 0000000000000024 __atomic_load_2 +0000000000324560 g DF .text 00000000000000bc _ZNSt3__124__libcpp_debug_exceptionC1ERKNS_19__libcpp_debug_infoE +00000000000e8940 g DF .text 0000000000000024 ec_decode +00000000001710fc w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E38_nn_sf_sync_GetWirelessLanCountryCodesENS0_3OutIivEERKNS0_8OutArrayINS5_7factory11CountryCodeEEE +00000000003a5ba8 g DF .text 0000000000000024 __atomic_load_4 +00000000002c3940 g DF .text 000000000000002c _ZN7android14SurfaceControl17setLayerStackMaskEi +00000000001cea18 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_AcquireSharedFrameBufferENS0_3OutIlvEENSG_INS_2vi6native10NativeSyncEvEENSG_INSI_7fbshare27SharedLayerTextureIndexListEvEENSM_17SharedLayerHandleE +00000000003a5bcc g DF .text 0000000000000024 __atomic_load_8 +0000000000329710 w DF .text 0000000000000048 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEaSERKS3_ +00000000000a1bf4 g DF .text 0000000000000004 nnsocketGetHostByNameWithOptions +0000000000803f40 w DO .rodata 000000000000005a _ZTSN2nn3hid6detail8RingLifoINS0_6system18NpadSystemExtStateELi16ENS1_13AtomicStorageIS4_EEEE +00000000002302b8 g DF .text 000000000000003c _ZN2nn3hid15VibrationTarget24GetVibrationDeviceHandleEv +00000000002346d0 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail15HidSystemServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +0000000000120e14 g DF .text 0000000000000020 _ZN2nn7friends14GetMiiImageUrlEPNS0_3UrlERKNS0_16MiiImageUrlParamE +000000000004eee8 g DF .text 0000000000000130 _ZN2nn2fs8ReadFileEPmNS0_10FileHandleElPvmRKNS0_10ReadOptionE +00000000000c8050 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_ReleaseLastForegroundCaptureBufferEv +00000000007ae530 g DO .rodata 0000000000000040 _ZN2nn4util18MatrixRowMajor4x3f16ConstantIdentityE +000000000032f0a4 w DF .text 0000000000000030 _ZTv0_n24_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev +0000000000090614 g DF .text 0000000000000008 _ZN2nn2os21GetThreadSuspendCountEPKNS0_10ThreadTypeE +000000000012cba8 g DF .text 0000000000000054 _ZN2nn2fs13MountSaveDataEPKcNS_3ncm13ApplicationIdERKNS_7account3UidE +000000000096d578 g DO .data 00000000000000e0 _ZTVN7android12ConsumerBaseE +00000000001c7a20 g DF .text 0000000000000008 _ZN2nn3mii13AppletManager16SetResultSuccessEv +00000000003614cc g DF .text 0000000000000030 _ZNSt3__121recursive_timed_mutexC1Ev +00000000002366ec g DF .text 0000000000000078 _ZN2nn8irsensor6detail25GetIrCameraInternalStatusEPNS0_22IrCameraInternalStatusERKNS0_14IrCameraHandleE +00000000003332b4 g DF .text 0000000000000060 _ZNSt3__117iostream_categoryEv +0000000000954e50 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +000000000097d100 g DO .data 0000000000000050 _ZTCNSt3__110istrstreamE0_NS_13basic_istreamIcNS_11char_traitsIcEEEE +0000000000170e24 g DF .text 0000000000000058 _ZN2nn8settings6detail24ResetDebugPadKeyboardMapEv +0000000000198958 g DF .text 00000000000000e8 _ZN2nn5audio19RegisterBufferEventEPNS0_8AudioOutEPNS_2os11SystemEventE +000000000080d390 w DO .rodata 000000000000013f _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14IrSensorServerEEEEEE13ServiceObjectESJ_E6ObjectE +0000000000188298 g DF .text 000000000000000c _ZN2nn5audio22GetI3dl2ReverbRoomGainEPKNS0_15I3dl2ReverbTypeE +00000000002c9e20 g DF .text 0000000000000020 _ZNK7android13GraphicBuffer16getFlattenedSizeEv +0000000000052754 g DF .text 00000000000000c4 _ZN2nn2fs48OverrideSaveDataTransferTokenSignVerificationKeyEPKvm +0000000000173820 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object11DisposeImplEv +00000000002349cc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E33_nn_sf_sync_GetNpadSystemExtStyleENS0_3OutIlvEESL_j +0000000000239a54 g DF .text 0000000000000058 _ZN2nn8irsensor6detail15IrSensorSession23StopImageProcessorAsyncERKNS0_14IrCameraHandleE +000000000036c620 g DF .text 00000000000000ec _ZNSt3__112system_error6__initERKNS_10error_codeENS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000000c5fe4 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_PushToGeneralChannelENS0_13SharedPointerINS6_8IStorageEEE +0000000000189ca0 g DF .text 0000000000000018 _ZN2nn5audio24PerformanceBufferManagerC2Ev +0000000000945778 g DO .data 0000000000000038 _ZTVN2nn2os6detail26MultiWaitHolderOfSemaphoreE +0000000000125b7c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_GetProfileImageUrlENS0_3OutINS5_3UrlEvEERKSM_i +000000000039f34c g DF .text 0000000000000068 __ledf2 +000000000009a2dc g DF .text 000000000000002c _ZN2nn2sf4cmif6server23CmifServerDomainManager6DomainC1EPS3_ +000000000014b61c g DF .text 0000000000000014 _ZN2nn3ngc6detail17MemoryInputStreamD1Ev +000000000032ea30 w DF .text 0000000000000148 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5ungetEv +000000000018feec g DF .text 0000000000000064 _ZN2nn5audio23RequestSuspendAudioOutsENS_6applet20AppletResourceUserIdENS_8TimeSpanE +00000000001cdc44 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000001e2820 g DF .text 0000000000000020 FSS_resize +00000000002c37d8 g DF .text 0000000000000098 _ZN7android14SurfaceControl7destroyEv +0000000000331294 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEb +00000000007b0d80 w DO .rodata 0000000000000018 _ZTSN2nn2sf13ISharedObjectE +0000000000285fb8 g DF .text 000000000000003c nvgr_import_nvrmsurface +0000000000183cd0 g DF .text 000000000000000c _ZN2nn3aoc6detail15GetObjectHolderEv +00000000003323f4 w DF .text 00000000000001bc _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEd +0000000000070a4c g DF .text 0000000000000008 _ZN2nn4lmem6detail16GetNextBlockRearEPNS1_8HeapHeadE +0000000000093bf8 g DF .text 0000000000000054 _ZN2nn2os6detail10RngManager17GenerateRandomU64Ev +00000000000b7528 w DF .text 0000000000000108 _ZN2nn7account6detail12ObjectHolder11AcquireImplINS0_31IAccountServiceForSystemServiceEEENS_6ResultEPPT_PKc +00000000003325b0 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEe +0000000000332238 w DF .text 00000000000001bc _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEf +00000000008236f0 w DO .rodata 0000000000000019 _ZTSNSt3__114__num_put_baseE +00000000000c9c48 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_GetPopInteractiveOutDataEventENS0_3OutINS0_12NativeHandleEvEE +0000000000319a70 w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm3EE27InitializeShimLibraryHolderINS_3pcv17IImmediateManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESF_ +00000000009592f0 w DO .data 0000000000000018 _ZTIN2nn2sf22UnmanagedServiceObjectINS_5audio6detail21IAudioRendererManagerENS2_6server24AudioRendererManagerImplEEE +00000000003e3918 g DF .text 0000000000000004 wcswcs +000000000011bdcc g DF .text 0000000000000144 _ZN2nn3err6detail34TryParseApplicationErrorCodeStringEPNS_2ns28ApplicationErrorCodeCategoryEPjPKc +00000000001b9ce8 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw11SetNoseTypeEi +000000000021dd30 g DF .text 0000000000000088 _ZN2nn3hid6detail10HasBatteryEPbS2_RKj +00000000003317d8 w DF .text 00000000000001dc _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEi +00000000003d33a4 g DF .text 000000000000001c lcong48 +0000000000000024 g DF .text 000000000000013c .protected _init +000000000006fb6c g DF .text 000000000000004c _ZN2nn4lmem27GetUnitHeapAllocatableCountEPNS0_6detail8HeapHeadE +000000000080ba60 w DO .rodata 000000000000012f _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000003319b4 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEj +0000000000331b68 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEl +0000000000331d1c w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEm +00000000000eeb94 g DF .text 00000000000010f8 compute_allocation +00000000000ba4c0 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E35_nn_sf_sync_SuspendBackgroundDaemonENS0_3OutINS0_13SharedPointerINSJ_14ISessionObjectEEEvEE +00000000001372e0 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3nfc6detail7ISystemEED2Ev +0000000000341e14 w DF .text 0000000000000060 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIcEE +0000000000008328 w DF .text 00000000000003dc _ZN2nn6crypto6detail19XtsModeAes128Helper15ProcessUnrolledE12__Uint8x16_tRPhRPKhRiPKvb +000000000008e464 g DF .text 0000000000000054 _ZN2nn2os17CreateSystemEventEPNS0_15SystemEventTypeENS0_14EventClearModeEb +00000000002256a4 w DF .text 0000000000000234 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm14EEEEEiPT_i +0000000000331448 w DF .text 00000000000001dc _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEs +0000000000331624 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEt +00000000001b4940 g DF .text 00000000000000c0 _ZN2nn2la18StartLibraryAppletENS_6applet19LibraryAppletHandleEb +00000000003b1ef0 g DF .text 0000000000000828 pow +00000000007e0740 w DO .rodata 0000000000000160 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +0000000000122970 g DF .text 0000000000000008 _ZNK2nn7friends11PlayHistory12GetAccountIdEv +0000000000331ed0 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEx +00000000003c2c2c w DF .text 0000000000000084 iswprint_l +00000000009dc750 w DO .bss 0000000000000030 _ZZN2nn5prepo6detail17ShimLibraryGlobal11GetInstanceEvE8instance +0000000000231420 w DF .text 000000000000011c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl16EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEEEEELm24ELm0ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSM_ILm8ELm8EvEESN_SN_j +0000000000332084 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEy +00000000003c4ddc w DF .text 00000000000002d4 newlocale +000000000097d568 g DO .data 0000000000000028 _ZTVSt16bad_array_length +00000000001a303c g DF .text 0000000000000008 _ZNK2nn5audio6server13EffectContext8GetCountEv +0000000000233ef8 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +00000000002563f4 g DF .text 0000000000000104 _ZN2nn3web14ShowWebPageArg14SetCallbackUrlEPKc +00000000000c6ca8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E20_nn_sf_sync_LockExitEv +0000000000804d50 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi43EE4MaskE +00000000003dbd1c g DF .text 0000000000000094 lsearch +000000000018ba00 g DF .text 000000000000000c _ZN2nn5audio12SplitterInfo13MarkAsUpdatedEv +00000000001bcef4 g DF .text 0000000000000040 _ZN2nn3mii6detail11UtilityImpl14GetRandomRangeEii +00000000003dd568 g DF .text 00000000000000a8 __fseeko_unlocked +0000000000292198 g DF .text 0000000000000034 NvWsiGetDisplayCaps +000000000036353c w DF .text 0000000000000138 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE21__grow_by_and_replaceEmmmmmmPKc +000000000024ed00 g DF .text 0000000000000014 _ZN2nn6capsrv12LibraryStateC1Ev +000000000011baa0 g DF .text 0000000000000008 _ZNK2nn3err14SystemErrorArg20GetFullScreenMessageEv +0000000000977e80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000032533c g DF .text 0000000000000138 _ZNKSt3__111__libcpp_db17__find_c_and_lockEPv +00000000001c56d8 g DF .text 0000000000000020 _ZNK2nn3mii8Database11IsAvailableEv +00000000002cbc2c g DF .text 0000000000000018 _ZN7android6Region7andSelfERKNS_4RectE +00000000003146d4 g DF .text 0000000000000060 _ZN2nn3fgm8DebuggerD1Ev +00000000000333fc g DF .text 0000000000000254 nnutilZlib_deflateCopy +000000000008d770 w DF .text 0000000000000170 _ZN2nn2os6detail18WaitLightEventImplEPNS0_14LightEventTypeE +000000000010cb4c g DF .text 0000000000000a9c compute_frame_size +000000000014c830 g DF .text 0000000000000018 _ZNK2nn3ngc6detail3Set12GetBitVectorEv +0000000000956d38 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags20AudioUsbDeviceOutputE +00000000001b9fb4 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw15SetMustacheTypeEi +00000000003ba13c g DF .text 0000000000000014 ccosf +0000000000121ce8 g DF .text 000000000000002c _ZN2nn7friends12AsyncContextD1Ev +00000000003e0dac g DF .text 0000000000000094 strtoul +0000000000080c04 g DF .text 0000000000000010 nnmem_nlib_mempagesize +0000000000269204 g DF .text 00000000000000b4 NvOsDrvMapSharedMem +00000000003ba150 g DF .text 000000000000028c ccosh +00000000000b9f7c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE34_nn_sf_sync_ClearSaveDataThumbnailERKNS5_3UidENS_13ApplicationIdE +000000000036d648 g DF .text 0000000000000024 _ZNSt3__120__libcpp_thread_joinEPNS_10shared_ptrINS_21__horizon_thread_dataEEE +000000000032c9c4 w DF .text 0000000000000004 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPFRS3_S4_E +0000000000803be0 w DO .rodata 0000000000000051 _ZTSN2nn3hid6detail8RingLifoINS0_16NpadFullKeyStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000003624d0 g DF .text 000000000000008c _ZNSt11logic_errorC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE +000000000018a728 g DF .text 0000000000000008 _ZNK2nn5audio8SinkInfo7GetTypeEv +00000000003ba688 g DF .text 000000000000002c ccosl +00000000000b48a0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE12GetProxyInfoEv +0000000000234ba8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E39_nn_sf_sync_BeginPermitVibrationSessionENS_6applet20AppletResourceUserIdE +00000000003abff0 g DF .text 0000000000000004 access +0000000000144c30 g DF .text 0000000000000004 _ZN2nn3ngc6detail14ContentsReaderD2Ev +0000000000146f98 g DF .text 00000000000001b0 _ZN2nn3ngc6detail12BinaryWriter10WriteArrayEPKtm +0000000000316df4 w DF .text 00000000000001e4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi6ELm0EEENSB_ILi1ELi9ELm0EEEEEELm0ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESK_j +0000000000174474 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_SetVibrationMasterVolumeEf +0000000000823bd0 w DO .rodata 0000000000000023 _ZTSNSt3__117moneypunct_bynameIcLb1EEE +00000000001c6c88 w DF .text 0000000000000180 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm68ELm4ELl0EEENSC_17InRawArgumentInfoILm68ELm4ELl0EEENSI_ILm4ELm4ELl68EEEEEELm72ELm68ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm68ELm4EEENS2_23InRawClientArgumentTypeILm68ELm4EvEENSU_ILm4ELm4EvEEj +00000000000a6730 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESP_NSN_24BufferClientArgumentTypeENSN_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000022a14c g DF .text 0000000000000008 _ZNK2nn3hid15KeyCodeComposer14GetOutputCountEv +0000000000395c9c g DF .text 0000000000000018 _ZSt13get_terminatev +00000000000b7da8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E44_nn_sf_sync_DebugInvalidateTokenCacheForUserERKNS5_3UidE +00000000002ccec0 g DF .text 0000000000000158 _ZN7android6Region9unflattenEPKvm +000000000015cbd8 g DF .text 0000000000000100 _ZN2nn2oe23EnableGamePlayRecordingEPvm +00000000001ba08c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetGlassTypeEi +00000000000a1890 g DF .text 0000000000000004 _ZN2nn6socket7ConnectEiPK8sockaddrj +00000000000b4940 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE29_nn_sf_sync_GetLastOpenedUserENS0_3OutINS5_3UidEvEE +000000000014d1b0 g DF .text 0000000000000078 _ZNK2nn3ngc6detail3Set7Select1Ej +000000000015b248 g DF .text 0000000000000054 _ZN2nn2oe20NotifyRunningForTestEv +00000000001a0bb0 g DF .text 0000000000000028 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_13VolumeCommandE +000000000003ef34 g DF .text 00000000000000d0 _ZN2nn4util12FormatStringEPFvmPKciEmS2_z +000000000018c14c g DF .text 000000000000000c _ZN2nn5audio14GetVoiceVolumeEPKNS0_9VoiceTypeE +00000000000762e0 g DF .text 0000000000000064 nnmem_nlib_utf16_to_utf32char +00000000008011f0 w DO .rodata 00000000000000ba _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000973f60 g DO .data 0000000000000070 _ZTTN7android23BnSurfaceComposerClientE +0000000000947760 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +0000000000166b90 w DF .text 000000000000032c _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm1EE27InitializeShimLibraryHolderINS_5prepo6detail3ipc13IPrepoServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS7_EEE_clESJ_ +0000000000151474 g DF .text 000000000000006c _ZN2nn4nifm6detail21ServiceProviderClientD2Ev +00000000001c9a80 g DF .text 00000000000000a4 _ZN2nn5swkbd16SetGuideTextUtf8EPNS0_14KeyboardConfigEPKc +000000000020e71c g DF .text 0000000000000424 scale_font_ttf +00000000001bcdc4 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw13SetGlassScaleEi +00000000000a1970 g DF .text 0000000000000004 _ZN2nn6socket8InetPtonEiPKcPv +0000000000158c3c g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc11GetDeviceIdEPNS0_8DeviceIdE +0000000000801ec0 w DO .rodata 00000000000000bd _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000022eb1c g DF .text 000000000000007c _ZN2nn3hid22GetVibrationDeviceInfoEPNS0_19VibrationDeviceInfoERKNS0_21VibrationDeviceHandleE +000000000036d2e4 g DF .text 0000000000000034 _ZNSt3__115__thread_structC2Ev +00000000001586d0 g DF .text 0000000000000044 _ZN2nn3nsd18GetCurrentSaveDataEPNS0_8SaveDataE +00000000001c78cc g DF .text 0000000000000008 _ZNK2nn3mii12AppletOutput22GetUpdateMiiImageIndexEv +0000000000326208 g DF .text 0000000000000014 _ZNSt13exception_ptrC2ERKS_ +00000000000b7520 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +00000000001222c8 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo8GetExtraEv +00000000007ce7f0 w DO .rodata 00000000000000fd _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000017109c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_GetGyroscopeScaleENS0_3OutINS5_7factory14GyroscopeScaleEvEE +000000000022c834 g DF .text 0000000000000064 _ZN2nn3hid6system21SendConnectionTriggerENS_9bluetooth7AddressE +0000000000229198 g DF .text 0000000000000044 _ZN2nn3hid5debug29UnsetHomeButtonAutoPilotStateEv +00000000002643f0 g DF .text 0000000000000094 NvOsSnprintf +00000000002c38f4 g DF .text 000000000000002c _ZN7android14SurfaceControl13setLayerStackEi +0000000000059128 w DF .text 0000000000000178 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm64ELm8ELl0EEENSG_ILm64ELm8ELl64EEEEEELm128ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm64ELm8EvEESR_j +00000000001d7844 g DF .text 00000000000000a8 _ZN2nn6fontll6detail11ReadXValuesEPtS2_PPKht +000000000021cbe8 g DF .text 0000000000000074 _ZN2nn3hid6detail26ResetAccelerometerPlayModeENS0_19SixAxisSensorHandleE +000000000018fdac g DF .text 0000000000000074 _ZN2nn5audio30SetAudioInsProcessMasterVolumeENS_6applet20AppletResourceUserIdEfNS_8TimeSpanE +00000000001bcd64 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw7SetEyeXEi +0000000000156e30 g DF .text 0000000000000004 _ZN2nn4nifm7Request9GetHandleEv +000000000013474c g DF .text 0000000000000004 _ZN2nn4htcs6detail25virtual_socket_collection7SetSizeEi +000000000006f3c0 g DF .text 0000000000000018 _ZN2nn4lmem36GetExpHeapAllocationDirectionOfBlockEPKv +00000000007ca890 w DO .rodata 00000000000000fc _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000002cbf90 g DF .text 00000000000000dc _ZNK7android6Region9operationERKS0_i +000000000006c7b0 g DF .text 0000000000000030 _ZN2nn2fs6detail27StorageServiceObjectAdapterC2EONS_2sf13SharedPointerINS_5fssrv2sf8IStorageEEE +00000000000b4b1c w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E40_nn_sf_sync_AuthenticateApplicationAsyncENS0_3OutINS0_13SharedPointerINSJ_13IAsyncContextEEEvEE +0000000000223ab4 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm5EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +0000000000226490 g DF .text 00000000000000a8 _ZN2nn3hid6detail39IsSixAxisSensorUserCalibrationSupportedEPbNS0_6system25UniqueSixAxisSensorHandleE +000000000032c9c8 w DF .text 0000000000000030 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPFRNS_9basic_iosIwS2_EES6_E +000000000011ac2c g DF .text 0000000000000244 _ZN2nn3err45CreateErrorViewerStartupParamForRecordedErrorEPvPmmPKcS4_NS_4time9PosixTimeE +000000000017cf68 w DF .text 0000000000000004 _ZN2nn4time6detail25AdjustableSystemClockBaseINS0_26StandardNetworkSystemClockEED2Ev +0000000000247c2c g DF .text 0000000000000c44 _ZN22nerd_gillette_internal5otete7jaimev123DecodeFullSilhouetteROKERNS_30ContiguousStorageContainerBaseINS_15NumericalVectorIsLm2EEELb1EEERNS0_14InputBitStreamERKNS1_23FullSilhouetteCodecDataE +000000000006bd88 g DF .text 000000000000015c _ZN2nn2fs26GetSdCardProtectedAreaSizeEPl +0000000000942688 w DO .data 0000000000000010 _ZTIN2nn2sf13ISharedObjectE +00000000001bcce0 g DF .text 0000000000000034 _ZN2nn3mii6detail12StoreDataRaw14BuildMiiEditorEPNS1_11UtilityImplENS0_6GenderE +0000000000298bb0 g DF .text 0000000000000034 _ZN7android12BnMemoryHeapD2Ev +00000000009456c8 g DO .data 0000000000000010 _ZN2nn2os6detail22g_CommandLineParameterE +00000000001ce134 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSE_ILi1ELi34ELm0EEENSB_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEESP_NSN_24BufferClientArgumentTypeESQ_SP_j +00000000001d16bc w DF .text 0000000000000198 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl24EEENSB_ILm8ELm8ELl32EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEENSB_ILm4ELm4ELl12EEENSB_ILm4ELm4ELl16EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSB_ILm4ELm4ELl20EEEEEELm40ELm0ELb0EEESM_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEEST_NSS_ILm4ELm4EvEESU_SU_SU_SU_NSR_24BufferClientArgumentTypeESU_j +0000000000329bcc w DF .text 0000000000000030 _ZTv0_n24_NSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev +0000000000135f98 g DF .text 0000000000000030 _ZN2nn2lm6detail20LogPacketTransmitter19PushLogSessionBeginEv +0000000000188c78 g DF .text 00000000000000e0 _ZN2nn5audio13EffectManager24UpdateEffectsInParameterEPv +0000000000396764 g DF .text 0000000000000054 _ZNSt15underflow_errorD1Ev +0000000000986c98 g DO .data 0000000000000008 __stdin_used +00000000000fa2b4 g DF .text 0000000000000200 silk_decode_pulses +000000000095bef8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS1_33SixAxisSensorUserCalibrationStateELi1ENS1_13AtomicStorageIS3_EEEE +00000000000bda08 g DF .text 0000000000000024 _ZN2nn7account12AsyncContext6CancelEv +00000000001f8710 g DF .text 0000000000000040 fnt_RoundToHalfGrid +0000000000091474 g DF .text 0000000000000004 nnosJamMessageQueue +0000000000258788 g DF .text 0000000000000008 nvdcGetCapabilities +00000000007d4c8c g DO .rodata 0000000000000015 silk_pitch_delta_iCDF +000000000012d8f8 g DF .text 00000000000000e8 _ZN2nn2fs24GetFileTimeStampForDebugEPNS0_13FileTimeStampEPKc +000000000094f948 w DO .data 00000000000000a8 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc12IBcatServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000002d34bc g DF .text 0000000000000014 _ZN7android16SortedVectorImplaSERKS0_ +00000000000da6b4 g DF .text 0000000000000094 haar1 +0000000000270134 g DF .text 0000000000000004 NvRmMemUnmap +000000000097e470 g DO .data 0000000000000018 _ZTIN10__cxxabiv121__vmi_class_type_infoE +00000000002347bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E43_nn_sf_sync_AcquireCaptureButtonEventHandleENS0_3OutINS0_12NativeHandleEvEENS_6applet20AppletResourceUserIdE +00000000002286a0 g DF .text 0000000000000044 _ZN2nn3hid6system22InitializeAudioControlEv +00000000007b9250 w DO .rodata 0000000000000029 _ZTSN2nn2sf4hipc6server18Hipc2ServerMessageE +00000000000c93d0 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service25IProcessWindingControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001b263c g DF .text 0000000000000108 _ZN2nn2ec6detail20ShowShopSettingsImplENS1_10LaunchModeERKNS_7account3UidENS0_8SourceIdE +0000000000091358 g DF .text 0000000000000004 nnosReleaseSemaphoreCount +000000000094dc60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001ca840 g DF .text 0000000000000034 _ZN2nn5swkbd6detail18InlineKeyboardImpl12SetInputTextERKNS0_9InputTextE +000000000022b600 g DF .text 0000000000000048 _ZN2nn3hid28SetControlPadRestrictionTypeENS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEENS0_25ControlPadRestrictionTypeE +0000000000225b1c w DF .text 0000000000000254 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplIS4_EEiPT_i +0000000000823c30 w DO .rodata 0000000000000023 _ZTSNSt3__117moneypunct_bynameIwLb1EEE +000000000022bcd8 g DF .text 0000000000000044 _ZN2nn3hid6system10HasBatteryEPbS2_RKj +000000000023ab18 g DF .text 0000000000000044 _ZN2nn8irsensor23StopImageProcessorAsyncERKNS0_14IrCameraHandleE +000000000006e9d4 w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm64ELm1ELl0EEEEEELm64ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm64ELm1EvEEj +000000000009cc38 g DF .text 0000000000000028 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase8LoopAutoEv +000000000033a24c w DF .text 000000000000048c _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIfEES4_S4_S4_RNS_8ios_baseERjRT_ +0000000000396688 g DF .text 0000000000000004 _ZNSt9exceptionD1Ev +00000000001d5018 g DF .text 0000000000000010 _ZN2nn2vi19AllocateLayerHolderEv +0000000000045750 g DF .text 0000000000000058 _ZN2nn4diag6detail22InvokeSdkAbortObserverERKNS0_12SdkAbortInfoE +0000000000008100 w DF .text 0000000000000008 _ZN2nn6crypto6detail11XtsModeImplINS1_20XtsModeGenericHelperEEC1Ev +000000000018aee0 g DF .text 0000000000000044 _ZN2nn5audio20GetSplitterMixVolumeEPKNS0_12SplitterTypeEiPKNS0_10SubMixTypeEii +000000000003d774 g DF .text 000000000000009c _ZN2nn4util6TinyMt10InitializeEj +00000000007db230 w DO .rodata 0000000000000021 _ZTSN2nn3nfc6detail14ISystemManagerE +00000000001bd0e8 g DF .text 0000000000000008 _ZNK2nn3mii6detail12Ver3AuthorId7IsValidEv +00000000001c6374 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +00000000002ae1e4 g DF .text 0000000000000430 _ZN7android15BufferQueueCoreC1ERKNS_2spINS_19IGraphicBufferAllocEEE +00000000002c9a68 g DF .text 00000000000000d0 _ZN7android13GraphicBuffer10reallocateEjjij +0000000000029930 g DF .text 00000000000002c8 _ZN2nn5image6detail4jpeg14jpeg_idct_5x10EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000946388 w DO .data 0000000000000008 _ZN2nn2sf4cmif6server6detail30CmifProcessFunctionTableGetterINS2_22CmifDomainServerObjectEvE7s_TableE +000000000017b3c8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E12GetProxyInfoEv +000000000017d204 w DF .text 0000000000000004 _ZN2nn4time6detail25AdjustableSystemClockBaseINS0_23StandardUserSystemClockEED2Ev +000000000094dc80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000097d960 g DO .data 0000000000000018 _ZTISt10bad_typeid +0000000000075edc g DF .text 00000000000000dc nnmem_nlib_utf16ncpy_ +000000000009d260 g DF .text 0000000000000144 _ZN2nn2sf4hipc6server24HipcServerSessionManager24Process2InvokeMethodImplEONS0_4cmif6server20CmifServerObjectInfoEPNS2_17HipcServerSessionEPvmSA_m +000000000022fdd0 g DF .text 0000000000000008 _ZNK2nn3hid15VibrationPlayer9IsPlayingEv +000000000008e09c g DF .text 00000000000000b4 _ZN2nn2os15ClearTimerEventEPNS0_14TimerEventTypeE +0000000000946030 w DO .data 0000000000000010 _ZTIN2nn2sf4hipc6server28HipcServerSessionManagerBaseE +0000000000331234 w DF .text 0000000000000030 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPFRNS_9basic_iosIwS2_EES6_E +00000000001a08bc g DF .text 00000000000001c8 _ZN2nn5audio6server16CommandGenerator20GenerateSinkCommandsEv +00000000000d40cc g DF .text 00000000000000a8 _ZN2nn6applet14GetStorageSizeENS0_13StorageHandleE +00000000007e92c0 g DO .rodata 0000000000000004 _ZN2nn5audio2PIE +000000000018baa4 g DF .text 0000000000000014 _ZN2nn5audio23SplitterDestinationData12SetMixVolumeEfi +0000000000264520 g DF .text 0000000000000004 NvOsDebugVprintf +0000000000160458 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000000b80e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEE24_nn_sf_sync_GetAccountIdENS0_3OutINS5_23NetworkServiceAccountIdEvEE +0000000000187f90 g DF .text 0000000000000048 _ZN2nn5audio17RemoveI3dl2ReverbEPNS0_19AudioRendererConfigEPNS0_15I3dl2ReverbTypeEPNS0_10SubMixTypeE +0000000000357444 g DF .text 00000000000000d4 _ZNKSt3__17codecvtIwc11__mbstate_tE11do_encodingEv +00000000000473d4 g DF .text 0000000000000048 _ZN2nn2fs23ScopedAutoAbortDisablerC1Ev +00000000001f0254 g DF .text 000000000000037c fixed_norm +000000000014af4c g DF .text 0000000000000010 _ZN2nn3ngc6detail11InputStream14GetWorkBuffer_EPm +000000000019c1d8 g DF .text 0000000000000034 _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl17RequestUpdateAutoERKNS_2sf9OutBufferES7_RKNS4_8InBufferE +00000000000c1940 g DF .text 0000000000000018 _ZN2nn7account8NotifierC2EPNS0_6detail9INotifierE +00000000002205c4 g DF .text 0000000000000040 _ZN2nn3hid6detail18SharedMemoryHolder8FinalizeEv +00000000001af814 g DF .text 0000000000000074 _ZN2nn5audio3dsp9ApplyMix2EPiPKiii +00000000001cbdf0 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_5visrv2sf21ISystemDisplayServiceEED2Ev +00000000001d25ac w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm10EE27InitializeShimLibraryHolderINS_5visrv2sf23IApplicationRootServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +00000000001536e4 w DF .text 00000000000001dc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000a83490 g DO .bss 0000000000000008 __environ +00000000008052f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi88EE4MaskE +0000000000118684 g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder21GetPreSkipSampleCountEv +0000000000172590 w DF .text 00000000000000a0 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E41_nn_sf_sync_CreateSettingsItemKeyIteratorENS0_3OutINS0_13SharedPointerINS5_24ISettingsItemKeyIteratorEEEvEERKNS5_12SettingsNameE +000000000034af94 w DF .text 00000000000013a8 _ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIwEERNS_10unique_ptrIwPFvPvEEERPwSM_ +00000000001155cc g DF .text 0000000000000008 opus_multistream_encoder_init +00000000001c3228 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetBirthMonthEi +00000000009563d0 w DO .data 0000000000000018 _ZTIN2nn3ntc6detail7service14IStaticServiceE +00000000000956e8 g DF .text 00000000000000e4 _ZN2nn2os6detail26ThreadManagerImplByHorizonC2EPNS0_10ThreadTypeE +000000000006567c g DF .text 0000000000000098 _ZN2nn2fs11CanMountRomENS_13ApplicationIdE +000000000022c1e4 g DF .text 0000000000000044 _ZN2nn3hid20StopLrAssignmentModeEv +0000000000259f1c g DF .text 00000000000000c4 nvdcGetModeDB +000000000035b7e8 g DF .text 0000000000000224 _ZNKSt3__120__time_get_c_storageIwE8__monthsEv +00000000007caaa0 w DO .rodata 0000000000000026 _ZTSN2nn2am7service19IApplicationCreatorE +00000000001c6448 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail16IDatabaseServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +000000000006eda0 g DF .text 0000000000000004 nninitFinalizeSdkModule +00000000000940c8 g DF .text 000000000000011c _ZN2nn2os6detail11VammManager14AllocateMemoryEPmm +00000000001183f0 g DF .text 000000000000003c _ZN2nn5codec11OpusEncoder8FinalizeEv +000000000018dcdc g DF .text 0000000000000048 _ZN2nn5audio18Axfx2DelaySetDelayEPNS0_14Axfx2DelayLineEi +000000000008fc14 g DF .text 0000000000000040 _ZN2nn2os12SdkMutexType4LockEv +000000000094dde0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000238ac8 g DF .text 00000000000000b0 _ZN2nn8irsensor6detail13StatusManager22SetIrSensorAruidStatusERKNS_6applet20AppletResourceUserIdENS_4util10BitFlagSetILi32ENS1_16AppletStatusFlagEEE +00000000000914a8 g DF .text 0000000000000004 nnosTryWaitAny +00000000001c9f70 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard17UnsetCustomizeDicEv +0000000000239230 g DF .text 0000000000000034 _ZN2nn8irsensor6detail20InternalErrorHandlerC2Ev +0000000000354488 g DF .text 0000000000000020 _ZNSt3__16locale2id6__initEv +00000000000c7e38 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IDisplayControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000001a5078 g DF .text 000000000000000c _ZN2nn5audio6server11SinkContext10InitializeEPNS1_12SinkInfoBaseEi +0000000000346fa4 w DF .text 0000000000000018 _ZNKSt3__110moneypunctIcLb1EE16do_negative_signEv +00000000003e3104 g DF .text 0000000000000004 wcscasecmp_l +0000000000154598 w DF .text 000000000000016c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm13ELm1ELl0EEENSG_ILm9ELm1ELl13EEEEEELm0ELm22ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm13ELm1EEENSQ_ILm9ELm1EEEj +00000000002d336c g DF .text 00000000000000ac _ZN7android10VectorImpl6resizeEm +000000000012ab48 g DF .text 0000000000000214 _ZN2nn2fs31QueryMountAddOnContentCacheSizeEPmNS_13ApplicationIdEi +000000000014cfc0 g DF .text 000000000000004c _ZN2nn3ngc6detail3Set6TurnOnEj +000000000023027c g DF .text 000000000000003c _ZNK2nn3hid15VibrationTarget26IsVibrationDeviceHandleSetEv +00000000002c720c g DF .text 000000000000009c _ZN7android21SurfaceComposerClient11setRGBRangeERKNS_2spINS_7IBinderEEEi +0000000000a684e8 g DO .bss 0000000000000020 _ZN7android9SingletonINS_8ComposerEE5sLockE +00000000002ca4a8 g DF .text 00000000000001cc _ZNK7android22GraphicBufferAllocator4dumpERNS_7String8E +0000000000161f60 w DF .text 0000000000000240 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEEEEELm0ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm4EEENS2_27OutHandleClientArgumentTypeENS2_24BufferClientArgumentTypeEj +0000000000328e90 w DF .text 000000000000000c _ZNKSt3__115basic_streambufIcNS_11char_traitsIcEEE6getlocEv +000000000004e220 g DF .text 00000000000000e8 _ZN2nn2fs6detail10MountTable7UnmountEPKc +000000000016d8b8 g DF .text 0000000000000184 _ZN2nn8settings6detail16MakeLanguageCodeEPNS0_12LanguageCodeENS0_8LanguageE +00000000000ad770 g DF .text 000000000000000c _ZN2nn6socket8resolver11GetAddrInfoEPKcS3_PK8addrinfoPPS4_ +0000000000949608 w DO .data 0000000000000020 _ZTVN2nn7account31NintendoAccountLinkageProcedureE +000000000019e4d0 g DF .text 0000000000000140 _ZN2nn5audio6server13CommandBuffer32GenerateI3dl2ReverbEffectCommandEiPKNS0_20I3dl2ReverbParameterEPvbmj +00000000001c9f90 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard14SetFooterAlphaEf +0000000000221518 g DF .text 0000000000000070 _ZN2nn3hid6detail28SetSleepButtonAutoPilotStateERKNS0_5debug25SleepButtonAutoPilotStateE +00000000003137b4 g DF .text 0000000000000064 _ZN2nn3fgm7Request15WaitWithTimeoutENS_8TimeSpanE +00000000003c5a14 w DF .text 0000000000000074 wcsxfrm_l +00000000003db954 g DF .text 0000000000000054 __hcreate_r +000000000094c260 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IWindowControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001b4568 g DF .text 000000000000006c _ZN2nn7friends29ShowReceivedFriendRequestListERKNS_7account3UidE +000000000023d368 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail20IrSensorSystemServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001181c4 g DF .text 0000000000000014 _ZN2nn5codec11OpusEncoderD2Ev +0000000000141b80 g DF .text 0000000000000168 _ZN2nn3ngc15ProfanityFilter19CheckProfanityWordsEPjjPPKtm +00000000001472f8 g DF .text 00000000000001b0 _ZN2nn3ngc6detail12BinaryWriter10WriteArrayEPKym +00000000001788b0 g DF .text 00000000000000c8 _ZN2nn3ssl10Connection11GetHostNameEPcPjj +000000000008ecfc g DF .text 00000000000000b0 _ZN2nn2os19ReceiveMessageQueueEPmPNS0_16MessageQueueTypeE +00000000007b2cc0 w DO .rodata 000000000000001b _ZTSN2nn5fssrv2sf10IDirectoryE +000000000015f024 g DF .text 0000000000000008 _ZNK2nn4pctl11PairingInfo8GetStateEv +00000000007e2a90 w DO .rodata 000000000000010c _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000003bbd4 g DF .text 0000000000000010 _ZN2nn4util15RelocationTable12SetSignatureEv +00000000009a9140 g DO .bss 0000000000000030 _ZN2nn2ro6detail8g_RoLockE +000000000012a73c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E15_nn_sf_sync_PopENS0_3OutINS7_21SizedNotificationInfoEvEE +00000000001a7bc4 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_18PerformanceCommandE +00000000003d141c g DF .text 0000000000000088 __tandf +00000000001d6d1c g DF .text 0000000000000014 _ZN2nn2vi6native18NativeWindowHolder15GetNativeWindowEv +0000000000286f24 g DF .text 0000000000000024 NvRmGpuTaskSchedulingGroupSetTimeslice +00000000003c79e4 g DF .text 00000000000000bc cbrtf +00000000001224f4 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest7IsValidEv +0000000000234f18 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E46_nn_sf_sync_CancelAnalogStickManualCalibrationENS5_6system11UniquePadIdEl +0000000000824110 g DO .rodata 0000000000000013 _ZTSNSt3__19strstreamE +00000000003c7aa0 g DF .text 000000000000024c cbrtl +00000000002d02d4 g DF .text 00000000000000cc _ZN7android7String811setPathNameEPKcm +000000000036bbe4 g DF .text 0000000000000098 _ZNSt3__112strstreambuf7seekposENS_4fposI11__mbstate_tEEj +00000000002cd018 g DF .text 0000000000000048 _ZNK7android6Region15getSharedBufferEPm +00000000003e6cac g DF .text 0000000000000018 __nnmusl_LockRecursiveLock +00000000000c5aa8 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE35_nn_sf_sync_GetLibraryAppletCreatorENS0_3OutINS0_13SharedPointerINS6_21ILibraryAppletCreatorEEEvEE +0000000000156264 g DF .text 0000000000000088 _ZN2nn4nifm21GetCurrentAccessPointEPNS0_15AccessPointDataE +0000000000956cc0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000093794 w DF .text 0000000000000004 _ZN2nn2os6detail33MultiWaitHolderOfNativeWaitObject20RemoveFromObjectListEv +000000000019bb38 g DF .text 0000000000000064 _ZNK2nn5audio6server17AudioRenderSystem26GetDspProcessingTimeBudgetEv +00000000001a27b8 g DF .text 0000000000000060 _ZN2nn5audio6server14EffectInfoBase7CleanUpEv +0000000000399db8 g DF .text 0000000000000064 _unw_remove_dynamic_fde +000000000007459c g DF .text 00000000000000c4 nnmem_nlib_skipws +00000000001348c0 g DF .text 00000000000002a8 _ZN2nn4htcs6detail25virtual_socket_collection11FetchSocketEiRi +0000000000135f54 g DF .text 0000000000000008 _ZNK2nn2lm6detail15LogPacketHeader11GetSeverityEv +0000000000189350 g DF .text 00000000000000b8 _ZN2nn5audio14MemoryPoolInfo5StoreEPKNS1_9OutStatusE +00000000007c3fb0 w DO .rodata 0000000000000109 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000c9060 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +0000000000179d70 g DF .text 0000000000000018 nnsslInitialize +00000000000ae324 g DF .text 000000000000003c _ZN2nn6socket8resolver3tls6Client22GetCurrentHErrorStringEv +00000000007b8df0 w DO .rodata 000000000000001b _ZTSN2nn2sf4cmif11ICmifDomainE +0000000000258e98 g DF .text 0000000000000008 nvdcFreeDisplays +00000000002540d8 g DF .text 0000000000000008 _ZNK2nn3web26OfflineHtmlPageReturnValue14GetLastUrlSizeEv +00000000001bb118 g DF .text 0000000000000004 _ZN2nn3mii6detail11GetDeviceIdEPNS1_8DeviceIdE +0000000000979518 w DO .data 0000000000000050 _ZTVNSt3__113basic_istreamIcNS_11char_traitsIcEEEE +00000000003dfe00 g DF .text 000000000000012c __stdio_exit +00000000003e6d7c g DF .text 0000000000000034 __nnmusl_ClockGetRes +0000000000061da0 g DF .text 0000000000000154 _ZN2nn2fs30GetGameCardDeviceIdForProdCardEPvmS1_m +0000000000127f0c w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000822d93 w DO .rodata 0000000000000001 _ZNSt3__110moneypunctIwLb1EE4intlE +000000000004b894 g DF .text 0000000000000108 _ZN2nn2fs15RomFsFileSystemD2Ev +000000000026f7b4 g DF .text 00000000000000b0 NvRmMemGetFd +0000000000327018 g DF .text 0000000000000054 _ZNSt3__16futureIvE3getEv +0000000000198d34 g DF .text 0000000000000084 _ZN2nn5audio12ListAudioInsEPNS0_11AudioInInfoEi +000000000097b970 w DO .data 0000000000000028 _ZTINSt3__19__num_getIwEE +0000000000396930 g DF .text 000000000000005c _ZNSt12out_of_rangeD0Ev +000000000094f860 w DO .data 0000000000000018 _ZTIN2nn4bcat6detail3ipc15IServiceCreatorE +00000000000f1818 g DF .text 0000000000000708 silk_NLSF2A +00000000001687c4 g DF .text 0000000000000044 _ZN2nn8settings6system28SetNetworkSystemClockContextERKNS_4time18SystemClockContextE +0000000000273504 g DF .text 00000000000000c4 NvRmStreamFlushSync +0000000000822db4 g DO .rodata 0000000000000004 _ZNSt3__16locale5ctypeE +000000000024cc2c g DF .text 0000000000000044 _ZN2nn5album12LibraryState10InitializeEv +0000000000126138 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E45_nn_sf_sync_GetFacedFriendRequestProfileImageENS0_3OutIivEERKNS_7account3UidENSN_23NetworkServiceAccountIdERKNS0_9OutBufferE +00000000000bfdfc g DF .text 0000000000000098 _ZN2nn7account28NetworkServiceAccountManager36EnsureNetworkServiceAccountAvailableENS0_32NintendoAccountStartupDialogTypeE +00000000007d7400 w DO .rodata 000000000000014f _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000150848 g DF .text 00000000000000bc _ZN2nn4nifm6detail13RequestClient6SubmitEv +000000000026c434 g DF .text 0000000000000078 NvRmSyncCreateFromSyncpoints +00000000000a19b0 g DF .text 0000000000000004 _ZN2nn6socket4OpenEPKci +000000000094da40 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19ILibraryAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001fc6ac g DF .text 00000000000000bc get_glyph_advance +00000000001b8ee0 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw7GetEyeYEv +0000000000000d8c w DF .text 0000000000000344 _ZN2nn6crypto6detail11CtrModeImplINS0_12AesEncryptorILm16EEEE6UpdateEPvmPKvm +0000000000196f7c w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18OutRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_24OutRawClientArgumentTypeILm8ELm8EEEj +00000000002540c8 g DF .text 0000000000000008 _ZNK2nn3web26OfflineHtmlPageReturnValue20GetOfflineExitReasonEv +0000000000805924 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout9NorwegianE +0000000000169158 g DF .text 0000000000000044 _ZN2nn8settings31SetApplicationOwnKeyboardLayoutENS0_14KeyboardLayoutE +0000000000285ed4 g DF .text 0000000000000008 nvgr_get_usage +0000000000228fa0 g DF .text 0000000000000044 _ZN2nn3hid6system18EnableHandheldHidsEv +000000000016b110 g DF .text 0000000000000044 _ZN2nn8settings5fwdbg19SetHostFsMountPointERKNS0_6system16HostFsMountPointE +0000000000002080 g DF .text 0000000000000050 _ZN2nn6crypto6detail10bigint_cmpEPKjS3_i +00000000003637d0 w DF .text 0000000000000148 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEmc +0000000000326604 g DF .text 0000000000000014 _ZNSt3__117__assoc_sub_state16__on_zero_sharedEv +00000000000b7744 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +00000000001a306c g DF .text 0000000000000008 _ZNK2nn5audio6server14MemoryPoolInfo11GetLocationEv +000000000023479c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E31_nn_sf_sync_ActivateSleepButtonENS_6applet20AppletResourceUserIdE +00000000001ca108 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard27SetFinishedKeyboardCallbackEPFvvE +000000000008ebc8 g DF .text 0000000000000134 _ZN2nn2os20TimedJamMessageQueueEPNS0_16MessageQueueTypeEmNS_8TimeSpanE +00000000007d8650 w DO .rodata 000000000000010c _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000002270d0 g DF .text 0000000000000060 _ZN2nn3hid6detail26EnableUsbFullKeyControllerEb +00000000001190c8 g DF .text 000000000000003c _ZN2nn5codec6detail20SetForceModeInternalEP11OpusEncoderNS0_14OpusCodingModeE +000000000006f5bc g DF .text 0000000000000030 _ZN2nn4lmem16DestroyFrameHeapEPNS0_6detail8HeapHeadE +00000000000cdbb4 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE29_nn_sf_sync_GetDebugFunctionsENS0_3OutINS0_13SharedPointerINS6_15IDebugFunctionsEEEvEE +0000000000156e48 g DF .text 000000000000000c _ZN2nn4nifm17NetworkConnectionC2Ev +0000000000367018 w DF .text 00000000000000a4 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE17find_first_not_ofEPKwmm +000000000003dd90 g DF .text 0000000000000014 _ZN2nn4util6TinyMt12RestoreStateEPKNS1_5StateE +00000000009477d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +0000000000024118 g DF .text 00000000000003f0 _ZN2nn5image6detail4jpeg15jpeg_idct_islowEPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000000912a8 g DF .text 0000000000000010 _ZN2nn2os36GetVirtualAddressMemoryResourceUsageEv +00000000000a5758 g DF .text 0000000000000004 _ZN2nn6socket6detail8InetAtonEPKcP7in_addr +00000000000c1d24 g DF .text 0000000000000030 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureC1EOS1_ +00000000002ce954 g DF .text 0000000000000044 _ZNK7android8String168findLastEDs +0000000000360d50 g DF .text 0000000000000004 _ZNSt3__114__shared_countD0Ev +00000000000c8238 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm1ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_24BufferClientArgumentTypeEj +000000000031647c g DF .text 000000000000003c _ZN2nn3i2c18ExecuteCommandListEPvmRKNS0_10I2cSessionEPKvm +00000000003e30fc g DF .text 0000000000000008 wcscasecmp +000000000004d0fc g DF .text 0000000000000008 _ZN2nn2fs6detail12FileAccessor13GetWriteStateEv +0000000000099fa0 g DF .text 00000000000000b4 _ZN2nn2sf33ScopedCurrentMemoryResourceSetterC2EPNS_14MemoryResourceE +00000000001e4e08 g DF .text 000000000000014c getFDindex +0000000000161ad8 w DF .text 00000000000001e8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000152938 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E43_nn_sf_sync_SetConnectionConfirmationOptionEa +0000000000184cec g DF .text 000000000000003c _ZN2nn5audio27IsValidMixBufferSampleCountEii +00000000000bf3d0 g DF .text 0000000000000010 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarC1EOS1_ +00000000002cce74 g DF .text 000000000000000c _ZNK7android6Region16getFlattenedSizeEv +00000000003cf3e8 g DF .text 00000000000000dc tanhf +00000000001b545c g DF .text 0000000000000064 _ZN2nn2la27AppletToNifmArgumentsReader25ReadNetConnectReturnParamENS_6applet13StorageHandleE +000000000094cee0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001582f4 g DF .text 0000000000000004 _ZN2nn4nifm6detail12HttpPostDataD2Ev +00000000001c3488 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetBeardColorEi +00000000002203e0 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_16NpadFullKeyStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +00000000000682a4 g DF .text 0000000000000210 _ZN2nn2fs20CreateSystemSaveDataENS0_15SaveDataSpaceIdEmNS0_6UserIdEmllj +00000000001b6264 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor16GetEyebrowRotateEv +00000000003cf4c4 g DF .text 000000000000001c tanhl +000000000018c088 g DF .text 000000000000000c _ZN2nn5audio16GetVoicePriorityEPKNS0_9VoiceTypeE +000000000036b510 g DF .text 0000000000000094 _ZNSt3__112strstreambufC1EPalS1_ +00000000001cd918 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_CloseLayerEm +00000000000c059c g DF .text 0000000000000034 _ZN2nn7account34NetworkServiceAccountAdministratorC1ERKNS0_3UidEPNS0_4baas14IAdministratorE +000000000036ccdc g DF .text 0000000000000024 _ZNSt3__112system_errorD0Ev +0000000000069604 g DF .text 0000000000000034 _ZN2nn2fs14VerifySaveDataEPbmPvm +000000000011cab4 g DF .text 00000000000001c4 _ZN2nn7friends6detail16PresenceAccessor15GetKeyValueListEPiPNS2_8KeyValueEiPKcm +00000000003e9314 g DF .text 0000000000000058 __musl_bytewise_strncmp +00000000001b1490 g DF .text 0000000000000048 _ZN2nn2ec24ShowShopSubscriptionListENS_13ApplicationIdERKNS_7account10UserHandleE +00000000001248cc g DF .text 00000000000000d8 _ZN2nn7friends6detail20AsyncContextInternal9CallAsyncEPKcPFNS_6ResultEPNS1_3ipc14IFriendServiceEPvES9_m +0000000000346d0c g DF .text 00000000000000f8 _ZNKSt3__110__time_put8__do_putEPwRS1_PK2tmcc +000000000094bef8 w DO .data 0000000000000150 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15ISelfControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000186268 g DF .text 000000000000007c _ZN2nn5audio25SetBufferMixerInputOutputEPNS0_15BufferMixerTypeEPKaS4_i +00000000001d4030 g DF .text 000000000000009c _ZN2nn2vi29InitializeForIndirectProducerEv +00000000001458c8 g DF .text 00000000000002fc _ZN2nn3ngc6detail11AhoCorasick6ImportEPNS1_12BinaryReaderE +000000000018da24 g DF .text 0000000000000008 _ZN2nn5audio20DelayLineGetMaxDelayEPNS0_11FXDelayLineE +000000000026cdb4 g DF .text 0000000000000008 NvRmSyncGetSemaphores +0000000000360d18 g DF .text 0000000000000004 _ZNSt3__112bad_weak_ptrD1Ev +000000000002ecd8 g DF .text 0000000000000018 _ZN2nn5image11JpegEncoder16SetSamplingRatioENS0_17JpegSamplingRatioE +00000000001c9b24 g DF .text 0000000000000064 _ZN2nn5swkbd14SetInitialTextEPNS0_15ShowKeyboardArgEPKDs +00000000002a19a8 g DF .text 0000000000000010 _ZN7android12ProcessState16getContextObjectERKNS_2spINS_7IBinderEEE +00000000002203cc w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_13KeyboardStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +000000000029e094 g DF .text 0000000000000018 _ZN7android6Parcel15setDataCapacityEm +0000000000049be0 w DF .text 0000000000000088 _ZN2nn2fs10SubStorage4ReadElPvm +00000000001d75a0 g DF .text 0000000000000010 _ZN2nn2vi6buffer11BufferQueue20GetScanBufferAddressEPPvS4_ +000000000005ad7c w DF .text 00000000000001e8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEENSI_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEENST_ILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000250024 g DF .text 0000000000000044 _ZN2nn3ldn20AddAcceptFilterEntryERKNS0_8NodeInfoE +00000000009489f0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas29IOAuthProcedureForExternalNsaENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000003d43ac g DF .text 0000000000001bb8 regcomp +000000000094ca60 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service20IApplicationAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000171280 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_GetEciDeviceKeyENS0_3OutINS5_7factory16EccB233DeviceKeyEvEE +000000000020ee8c g DF .text 0000000000000200 get_scale_inputs +00000000000cb500 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000179f3c g DF .text 0000000000000024 nnsslConnectionSetVerifyOption +00000000002cede8 g DF .text 0000000000000018 _ZN7android7String8C2ERKS0_ +000000000006f184 g DF .text 0000000000000054 _ZN2nn4lmem25GetExpHeapAllocatableSizeEPNS0_6detail8HeapHeadEi +000000000029695c g DF .text 0000000000000040 _ZTv0_n48_N7android8BpBinder20onIncStrongAttemptedEjPKv +00000000000cc4c0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_ExitProcessAndReturnEv +0000000000077f74 g DF .text 00000000000001bc nnmem_nlib_fd_pwritev +0000000000047fe4 g DF .text 0000000000000024 _ZN2nn2fs24HierarchicalRomFileTable17FindFileRecursiveEPNS1_8EntryKeyEPNS1_17DirectoryRomEntryEPKc +000000000008f838 g DF .text 000000000000008c _ZN2nn2os19TryAcquireWriteLockEPNS0_20ReaderWriterLockTypeE +000000000009cdbc g DF .text 000000000000001c _ZN2nn2sf4hipc6server21HipcServerSessionBase5ReplyEPvm +0000000000156eb0 g DF .text 0000000000000014 _ZN2nn4nifm17NetworkConnection14GetSystemEventEv +000000000002f644 g DF .text 0000000000000014 _ZN2nn5image11ExifBuilder11SetDateTimeEPKcm +000000000006aff4 g DF .text 000000000000008c _ZN2nn2fs16SaveDataExporterC2EONS_2sf13SharedPointerINS_5fssrv2sf17ISaveDataExporterEEE +000000000031d5c8 w DF .text 000000000000030c _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIssEEPsEEbT0_S5_T_ +0000000000118d58 g DF .text 0000000000000048 _ZN2nn5codec6detail18OpusPacketInternal19GetHeaderFromPacketEPNS2_6HeaderEPKh +000000000016896c g DF .text 0000000000000044 _ZN2nn8settings24GetDebugPadGenericPadMapEPNS0_21DebugPadGenericPadMapE +0000000000959e60 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001fc32c g DF .text 0000000000000044 update_sp_ep +0000000000a80d68 g DO .bss 0000000000000010 _ZNSt3__15ctypeIcE2idE +00000000001b67d0 g DF .text 000000000000000c _ZN2nn3mii6detail15BufferAllocatorC2EPvm +00000000000aac50 w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEEEEELm4ELm8ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESV_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeEj +00000000000bf290 g DF .text 0000000000000014 _ZN2nn7account33ExternalNetworkServiceAccountInfo4SwapERS1_ +0000000000176ba0 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm128EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +000000000004d128 g DF .text 0000000000000128 _ZN2nn2fs6detail18FileSystemAccessorC2EPKcONSt3__110unique_ptrINS0_3fsa11IFileSystemENS5_14default_deleteIS8_EEEEONS6_INS7_25ICommonMountNameGeneratorENS9_ISD_EEEE +0000000000264b30 g DF .text 0000000000000008 NvOsSharedMemAlloc +000000000004cd94 g DF .text 00000000000000b8 _ZN2nn2fs6detail12FileAccessorD2Ev +0000000000a290e8 g DO .bss 0000000000000008 _ZN2nn3hid13VibrationNode30DefaultVibrationSampleIntervalE +000000000026fe00 g DF .text 00000000000000b0 NvRmMemGetId +0000000000126240 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_BlockUserWithApplicationInfoERKNS_7account3UidENSL_23NetworkServiceAccountIdEiRKNS5_15ApplicationInfoERKNS5_15InAppScreenNameE +000000000032553c g DF .text 000000000000015c _ZNSt3__111__libcpp_db9__erase_cEPv +000000000005c3d4 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000000c8090 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_ReleaseCallerAppletCaptureBufferEv +000000000005d320 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm2ELl0EEEEEELm0ELm16ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm2EEEj +000000000022845c g DF .text 0000000000000060 _ZN2nn3hid6system33StartAnalogStickManualCalibrationENS1_11UniquePadIdENS1_19AnalogStickPositionE +0000000000259ecc g DF .text 0000000000000048 nvdcGetMode +0000000000364b08 w DF .text 00000000000000bc _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5rfindEPKcmm +00000000003c2664 w DF .text 0000000000000010 isprint_l +000000000021402c g DF .text 0000000000000010 nnfontllFsTellFile +000000000097bf18 w DO .data 0000000000000010 _ZTINSt3__111__money_getIwEE +00000000000d7858 g DF .text 00000000000001a0 _ZN2nn4bcat6detail3ipc10InitializeEv +00000000003b880c g DF .text 00000000000000b4 memchr +000000000023d414 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_E34_nn_sf_sync_EnableAppletToGetInputENS_6applet20AppletResourceUserIdEb +0000000000361b88 g DF .text 0000000000000024 _ZNSt19bad_optional_accessD0Ev +00000000000cb66c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_StartSleepSequenceEb +00000000000d2e80 g DF .text 00000000000000d0 _ZN2nn6applet17JoinLibraryAppletENS0_19LibraryAppletHandleE +0000000000056470 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi25ELm769EEENSG_ILi1ELi25ELm769EEEEEELm0ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeESQ_j +0000000000286dcc g DF .text 000000000000000c NvRmGpuChannelEventIdControl +0000000000975e90 g DO .data 0000000000000028 _ZTIN7android6ThreadE +00000000009493b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000152314 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +000000000021e180 g DF .text 0000000000000064 _ZN2nn3hid6detail27ApplyNpadSystemCommonPolicyEv +00000000009a2dd8 g DO .bss 0000000000000008 _ZN2nn2fs18g_AllReturnContextE +0000000000118ca8 g DF .text 0000000000000018 _ZN2nn5codec25GetOpusPacketChannelCountEPKhm +0000000000187cb0 w DF .text 0000000000000140 _ZN2nn5audio18AddI3dl2ReverbImplINS0_12FinalMixTypeEEENS_6ResultEPNS0_19AudioRendererConfigEPNS0_15I3dl2ReverbTypeEPvmPT_i +00000000000961c0 g DF .text 000000000000007c _ZN2nn2os6detail27InterruptEventImplByHorizon7TryWaitEv +000000000097c5b0 g DO .data 0000000000000018 _ZTINSt12experimental19bad_optional_accessE +000000000022c7f0 g DF .text 0000000000000044 _ZN2nn3hid6system33BindConnectionTriggerTimeoutEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +000000000032b228 w DF .text 00000000000000a0 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getEPcl +00000000007a7e14 g DO .rodata 0000000000000140 _ZN2nn5image6detail4jpeg18jpeg_natural_orderE +00000000000cad50 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000257090 g DF .text 0000000000000120 _ZN2nn3web15ShowNewsPageArg20SetBootAsMediaPlayerEb +000000000036d670 g DF .text 0000000000000004 _ZNSt3__135__libcpp_thread_available_core_maskEv +0000000000220438 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_6system18CaptureButtonStateELi16ENS1_13AtomicStorageIS4_EEED2Ev +0000000000046a9c g DF .text 0000000000000088 _ZN2nn2fs6detail15OutputAccessLogENS_6ResultENS_2os4TickES4_PKcNS1_23IdentifyAccessLogHandleES6_z +0000000000169c70 g DF .text 0000000000000050 _ZN2nn8settings6system18IsExternalRtcResetEv +0000000000220650 g DF .text 0000000000000008 _ZN2nn3hid6detail38GetSixAxisSensorHandleSixAxisSensorIdxERKNS0_19SixAxisSensorHandleE +0000000000231ef8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_ReleaseXpadIdEventHandleEm +00000000000d4b28 g DF .text 0000000000000054 _ZN2nn6applet19BeginVrModeInternalEv +00000000001bcd58 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetEyeScaleEi +0000000000168f80 g DF .text 0000000000000078 _ZN2nn8settings7factory14GetGameCardKeyEPNS1_11GameCardKeyE +00000000001bfcc4 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetEyebrowXEv +000000000017523c w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetAllowedSslHostsENS0_3OutIivEERKNS0_8OutArrayINS5_6system14AllowedSslHostEEE +00000000000701c8 g DF .text 0000000000000158 _ZN2nn4lmem6detail13FreeToExpHeapEPNS1_8HeapHeadEPv +00000000001767c0 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm36ELm1ELl0EEEEEELm0ELm36ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm36ELm1EEEj +0000000000395d88 g DF .text 0000000000000004 _ZNSt20bad_array_new_lengthD1Ev +00000000000d5b18 g DF .text 00000000000000a0 _ZN2nn4bcat32UnregisterBackgroundDeliveryTaskENS_13ApplicationIdE +0000000000044ca8 g DF .text 000000000000002c _ZN2nn4diag6detail7PutImplERKNS0_11LogMetaDataEPKcm +00000000002204a0 g DF .text 0000000000000054 _ZN2nn3hid6detail18SharedMemoryHolderC1EOS2_ +000000000004191c g DF .text 0000000000000018 _ZN2nn4edid6detail7ToAsciiEh +00000000000b3e28 g DF .text 0000000000000040 _ZN2nn7account28DeleteSaveDataThumbnailImageERKNS0_3UidERKNS_13ApplicationIdE +00000000007c2480 w DO .rodata 000000000000003c _ZTSN2nn7account3nas40IOAuthProcedureForNintendoAccountLinkageE +00000000009460a0 w DO .data 0000000000000010 _ZTIN2nn2sf4hipc6server17IHipcObjectDomainE +000000000023275c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E32_nn_sf_sync_IsVibrationPermittedENS0_3OutIbvEE +0000000000821210 w DO .rodata 00000000000000bd _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000025a3c4 g DF .text 00000000000000cc nvdcSetMode2 +000000000039dda8 g DF .text 000000000000056c __multc3 +0000000000256e00 g DF .text 0000000000000188 _ZN2nn3web15ShowNewsPageArgC1Ev +0000000000172e10 w DF .text 00000000000000b8 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_8settings28IFirmwareDebugSettingsServerEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSE_24ISettingsItemKeyIteratorEEEvi +000000000006b478 g DF .text 0000000000000284 _ZN2nn2fs11MountSdCardEPKc +0000000000070660 g DF .text 00000000000001a4 _ZN2nn4lmem6detail23CheckExpHeapMemoryBlockEPKvPNS1_8HeapHeadEj +000000000022d174 g DF .text 0000000000000044 _ZN2nn3hid5debug37GetShiftAccelerometerCalibrationValueEPfS2_RKNS0_19SixAxisSensorHandleE +000000000034d404 w DF .text 00000000000005b8 _ZNSt3__111__money_putIcE8__formatEPcRS2_S3_jPKcS5_RKNS_5ctypeIcEEbRKNS_10money_base7patternEccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESL_SL_i +00000000000d90b4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000951510 w DO .data 0000000000000018 _ZTIN2nn7friends6detail3ipc20INotificationServiceE +00000000001559b0 g DF .text 0000000000000060 _ZN2nn4nifm6WakeUpEv +00000000000cd870 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IOverlayAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000003161c0 g DF .text 00000000000000c0 _ZN2nn3i2c11OpenSessionEPNS0_10I2cSessionENS0_9I2cDeviceE +000000000034161c w DF .text 0000000000000060 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIcEE +00000000003e00dc g DF .text 0000000000000008 atof +0000000000185fe0 g DF .text 000000000000000c _ZN2nn5audio21SetAudioDeviceMappingEPKcPKNS0_15AudioDeviceNameE +000000000023283c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E40_nn_sf_sync_ActivateConsoleSixAxisSensorENS_6applet20AppletResourceUserIdE +00000000003ab20c g DF .text 0000000000000030 clock_getres +0000000000089b68 g DF .text 000000000000002c _ZN2nn7nlibsdk4heap10CachedHeap8FinalizeEv +000000000008e6e8 g DF .text 0000000000000004 _ZN2nn2os30GetWritableHandleOfSystemEventEPNS0_15SystemEventTypeE +00000000007c85e0 w DO .rodata 000000000000010e _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000097c608 g DO .data 0000000000000028 _ZTVNSt3__111regex_errorE +00000000003c25c4 g DF .text 0000000000000018 iscntrl +00000000003e00e4 g DF .text 0000000000000088 atoi +000000000024befc g DF .text 0000000000000060 _ZN2nn3kpr15KeyCodeComposer6RemoveEPti +00000000000b637c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +000000000029b978 g DF .text 00000000000000c8 _ZN7android10AllocationC1ERKNS_2spINS_12MemoryDealerEEERKNS1_INS_11IMemoryHeapEEElm +00000000003e016c g DF .text 0000000000000088 atol +000000000004c690 w DF .text 000000000000000c _ZN2nn2fs3fsa11IFileSystem7DoFlushEv +0000000000118d0c g DF .text 000000000000004c _ZN2nn5codec6detail18OpusPacketInternal17SetHeaderInPacketEPhRKNS2_6HeaderE +000000000095de80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002959dc g DF .text 0000000000000080 _ZTv0_n24_N7android9BpRefBaseD0Ev +0000000000114968 g DF .text 0000000000000a74 surround_analysis +000000000014ab5c g DF .text 000000000000009c _ZN2nn3ngc6detail11InputStream4SkipEm +00000000003a7f5c w DF .text 0000000000000004 _init_libc0 +000000000019c054 g DF .text 000000000000002c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl13GetSampleRateENS_2sf3OutIivEE +00000000003a7f60 w DF .text 0000000000000004 _init_libc1 +00000000003de600 g DF .text 0000000000000078 sprintf +00000000003a7f64 w DF .text 0000000000000004 _init_libc2 +0000000000047854 g DF .text 00000000000002c8 _ZN2nn2fs24HierarchicalRomFileTable15CreateDirectoryEPiPKcRKNS0_16RomDirectoryInfoE +00000000000916ac g DF .text 0000000000000010 _ZN2nn2os6detail24TryWaitInterProcessEventEPNS1_21InterProcessEventTypeE +000000000014d2d4 g DF .text 0000000000000018 _ZNK2nn3ngc6detail3Set16GetBitVectorSizeEv +00000000000ae4bc g DF .text 00000000000000d4 _ZN2nn6socket8resolver20CreateResolverByHipcERNS_2sf13SharedPointerINS1_9IResolverEEE +00000000000b9ba8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE43_nn_sf_sync_TrySelectUserWithoutInteractionENS0_3OutINS5_3UidEvEEb +00000000001a7cbc w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_E29_nn_sf_sync_GetWorkBufferSizeENS0_3OutIlvEERKNS5_30AudioRendererParameterInternalE +000000000012469c g DF .text 0000000000000114 _ZN2nn7friends6detail20AsyncContextInternal14CreateInstanceEPPS2_PNS1_3ipc14IFriendServiceEPFPvmEPFvS8_mE +0000000000179924 g DF .text 00000000000000a4 _ZN2nn3ssl10Connection9SetOptionENS1_10OptionTypeEb +00000000000f7954 g DF .text 0000000000000148 silk_control_SNR +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__116__narrow_to_utf8ILm32EED1Ev +000000000008fe5c g DF .text 0000000000000008 _ZN2nn2os17FinalizeSemaphoreEPNS0_13SemaphoreTypeE +0000000000199a08 g DF .text 00000000000000f0 _ZN2nn5audio21ContainsAudioInBufferEPKNS0_7AudioInEPKNS0_13AudioInBufferE +000000000019e03c g DF .text 000000000000009c _ZN2nn5audio6server13CommandBuffer18GenerateMixCommandEiifj +00000000002c53e0 g DF .text 00000000000000a4 _ZN7android21SurfaceComposerClientC1Ev +0000000000345c88 g DF .text 0000000000000500 _ZNKSt3__118__time_get_storageIwE15__do_date_orderEv +0000000000028bc0 g DF .text 00000000000001a0 _ZN2nn5image6detail4jpeg13jpeg_idct_4x2EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000270804 g DF .text 0000000000000014 NvRmSyncClose +0000000000095488 g DF .text 0000000000000048 _ZN2nn2os6detail27TransferMemoryImplByHorizon5CloseEj +0000000000132cc8 g DF .text 0000000000000050 _ZN2nn4htcs10InitializeEPFPvmEPFvS1_mE +0000000000091308 g DF .text 0000000000000004 nnosYieldThread +000000000022baf0 g DF .text 0000000000000044 _ZN2nn3hid6system32EnableAssigningSingleOnSlSrPressEv +0000000000091490 g DF .text 0000000000000004 nnosTryPeekMessageQueue +00000000000d6e18 g DF .text 000000000000003c _ZN2nn4bcat21DeliveryCacheProgressC2Ev +0000000000189b50 g DF .text 0000000000000010 _ZN2nn5audio15PerformanceInfoD1Ev +00000000003553d0 g DF .text 00000000000000dc _ZNKSt3__15ctypeIwE10do_toupperEPwPKw +00000000001fea2c g DF .text 000000000000017c fsg_ReduceMatrix +0000000000197f58 g DF .text 0000000000000028 _ZN2nn5audio19OpenDefaultAudioOutEPNS0_8AudioOutERKNS0_17AudioOutParameterE +0000000000356a3c g DF .text 00000000000000a0 _ZNKSt3__112ctype_bynameIwE8do_widenEPKcS3_Pw +00000000003cfd4c g DF .text 0000000000000060 __p1evll +0000000000950420 g DO .data 0000000000000018 _ZTIN2nn5codec19HardwareOpusDecoderE +0000000000324a0c g DF .text 00000000000000fc _ZNKSt3__111__libcpp_db15__find_c_from_iEPv +00000000007bcbf0 w DO .rodata 0000000000000167 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000000010d0 w DF .text 0000000000000164 _ZN2nn6crypto6detail11CcmModeImplINS0_12AesEncryptorILm16EEEE11GenerateMacEv +00000000001522d0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E33_nn_sf_sync_GetCurrentAccessPointENS0_3OutINS6_2sf15AccessPointDataEvEE +00000000000aca8c g DF .text 0000000000000054 _ZN2nn6socket8resolver33WaitForAllResolverCallsToCompleteEv +00000000003e25cc g DF .text 0000000000000058 strncat +0000000000159428 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc13GetNasApiFqdnEPNS0_4FqdnE +0000000000213c94 g DF .text 00000000000000b8 FSS_realloc +0000000000317e9c g DF .text 000000000000007c _ZN2nn3pcv15SetVoltageValueENS0_11PowerDomainEi +00000000003281d4 g DF .text 0000000000000038 _ZNSt3__121__horizon_thread_data9get_stackEv +00000000000d4dd0 g DF .text 000000000000006c _ZNK2nn4bcat13DirectoryName7IsValidEv +00000000002ab44c g DF .text 00000000000000dc _ZN7android11BufferQueue21ProxyConsumerListenerC1ERKNS_2wpINS_16ConsumerListenerEEE +00000000001677c8 w DF .text 0000000000000200 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEENSG_ILm8ELm8ELl16EEENSI_ILi1ELi5ELm0EEEEEELm24ELm0ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENS2_24BufferClientArgumentTypeENST_ILm8ELm8EvEESV_j +000000000019cdf0 w DF .text 000000000000002c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E33_nn_sf_sync_GetRenderingTimeLimitENS0_3OutIivEE +00000000000e8fdc g DF .text 0000000000000140 ec_encode_bin +00000000001d7cd0 g DF .text 0000000000000418 _ZN2nn6fontll6detail38PickKernXValuesFromGlyphPairAdjustmentEPiPNS0_15OtfKerningTableEPKvtPPKh +00000000001cdd34 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000013e6b8 g DF .text 0000000000000070 _ZN2nn3nfp15WriteBackupDataEPKvm +0000000000a80c50 w DO .bss 0000000000000010 _ZNSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE2idE +00000000000906d0 g DF .text 0000000000000014 _ZN2nn2os11GetTlsValueENS0_7TlsSlotE +00000000001c7b74 g DF .text 0000000000000068 _ZN2nn3mii20GetShowMiiEditResultENS_6applet13StorageHandleE +0000000000042c68 g DF .text 00000000000000a8 _ZN2nn4edid6cea86120VisitDetailedTimingsEPKhmPFbPKNS0_15DisplayModeInfoEPKNS0_17DisplayTimingInfoEPKNS0_13ImageSizeInfoEPvESD_ +00000000007f0ab0 w DO .rodata 00000000000000ab _ZTSN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_EE +0000000000150e3c g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient24RegisterSocketDescriptorEi +00000000003cd2f0 g DF .text 00000000000000ac nextafter +00000000001de110 g DF .text 0000000000000024 FS_set_bold_pct +00000000003240bc g DF .text 0000000000000018 _ZNSt3__118condition_variableD1Ev +000000000015b34c g DF .text 000000000000003c _ZN2nn2oe23SetWirelessPriorityModeENS0_20WirelessPriorityModeE +0000000000015740 g DF .text 000000000000003c _ZN2nn5image6detail4jpeg16jpeg_set_qualityEPNS2_20jpeg_compress_structEib +0000000000122278 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo19GetMiiImageUrlParamEv +0000000000160c00 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_IsPlayTimerEnabledENS0_3OutIbvEE +000000000017a5e0 g DF .text 0000000000000018 _ZN2nn3ssl21GetSslResultFromValueEPNS_6ResultEPKcj +000000000018d174 g DF .text 0000000000000030 _ZN2nn5audio6common10EdgeMatrix7ConnectEii +000000000033ef28 w DF .text 0000000000000404 _ZNSt3__19__num_putIwE21__widen_and_group_intEPcS2_S2_PwRS3_S4_RKNS_6localeE +00000000003a2a90 g DF .text 0000000000000044 __lshrdi3 +00000000007ca2e0 w DO .rodata 000000000000010e _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002866c8 g DF .text 000000000000001c NvRmGpuDeviceOpen +00000000002d1f14 g DF .text 0000000000000040 _ZN7android10VectorImplC2ERKS0_ +0000000000331074 w DF .text 0000000000000008 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev +00000000000cdec8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IOverlayFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +0000000000081758 g DF .text 0000000000000028 nnmem_nlib_semaphore_trywait_for +000000000016fba0 g DF .text 0000000000000070 _ZN2nn8settings6detail13SetColorSetIdEi +00000000003b9b1c g DF .text 0000000000000030 casinhf +00000000001bc7dc g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw9GetGenderEv +000000000021c6bc g DF .text 00000000000000a8 _ZN2nn3hid6detail32SetSixAxisSensorFusionParametersERKNS0_19SixAxisSensorHandleEff +0000000000a684d0 g DO .bss 0000000000000008 _ZN7android9SingletonINS_15ComposerServiceEE9sInstanceE +00000000009433b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client23CmifDomainClientMessageINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEEE15ProxyBaseObjectE +000000000094d110 w DO .data 0000000000000018 _ZTIN2nn2am7service16IStorageAccessorE +0000000000138e88 g DF .text 0000000000000024 _ZN2nn3nfc6client25GetUserInterfaceForCommonEv +000000000029c0d4 g DF .text 0000000000000008 _ZN7android12MemoryDealer10deallocateEm +00000000003b9b4c g DF .text 0000000000000050 casinhl +000000000036c608 g DF .text 0000000000000018 _ZNKSt3__110error_code7messageEv +0000000000324754 g DF .text 0000000000000030 _ZNKSt3__124__libcpp_debug_exception4whatEv +00000000000bba84 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E64_nn_sf_sync_CreateProcedureToUpdateLinkageStateOfNintendoAccountENS0_3OutINS0_13SharedPointerINS5_4http15IOAuthProcedureEEEvEE +0000000000218124 g DF .text 00000000000000e0 _ZN2nn3hid6detail12FinalizeXpadERKNS0_9JoyXpadIdE +0000000000084138 g DF .text 0000000000000008 _ZN2nn7nlibsdk4heap14TlsHeapCentralC1Ev +00000000001cda00 w DF .text 0000000000000064 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_GetIndirectLayerImageCropMapENS0_3OutIlvEESH_RKNS0_9OutBufferEllffffmNS_6applet20AppletResourceUserIdE +00000000003a3640 g DF .text 00000000000004b8 __multf3 +000000000097d9c0 g DO .data 0000000000000018 _ZTIN10__cxxabiv117__class_type_infoE +00000000003e6d58 g DF .text 0000000000000018 main +0000000000805230 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi82EE4MaskE +0000000000171238 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E26_nn_sf_sync_GetGameCardKeyENS0_3OutINS5_7factory11GameCardKeyEvEE +0000000000174bc0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E26_nn_sf_sync_GetMiiAuthorIdENS0_3OutINS_4util4UuidEvEE +00000000003677a8 g DF .text 0000000000000268 _ZNSt3__14stoiERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPmi +0000000000046cc4 g DF .text 000000000000008c _ZN2nn2fs6detail30OutputAccessLogForPreconditionENS_6ResultENS_2os4TickES4_PKcPKvS6_z +0000000000333390 g DF .text 0000000000000024 _ZNSt3__18ios_base7failureD0Ev +0000000000070bbc g DF .text 000000000000001c _ZN2nn4lmem6detail15FreeToFrameHeapEPNS1_8HeapHeadENS0_8FreeModeE +000000000035a84c g DF .text 0000000000000028 _ZNSt3__18numpunctIcEC1Em +00000000000a1ab4 g DF .text 0000000000000004 nnsocketShutdown +0000000000230cc8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E41_nn_sf_sync_UnsetHomeButtonAutoPilotStateEv +00000000002d01ac g DF .text 000000000000002c _ZNK7android7String810getUtf32AtEmPm +00000000001865cc w DF .text 0000000000000158 _ZN2nn5audio12AddDelayImplINS0_10SubMixTypeEEENS_6ResultEPNS0_19AudioRendererConfigEPNS0_9DelayTypeEPvmPT_NS_8TimeSpanEi +00000000002a4538 g DF .text 00000000000000b0 _ZN7android14IPCThreadState15getNativeHandleERNS_8BpBinderEjRjRb +000000000097d940 g DO .data 0000000000000018 _ZTISt8bad_cast +00000000003e20fc g DF .text 00000000000000b8 strcspn +00000000003ce384 g DF .text 00000000000000ac scalbf +00000000009795c8 w DO .data 0000000000000010 _ZTTNSt3__113basic_istreamIwNS_11char_traitsIwEEEE +0000000000229584 g DF .text 0000000000000054 _ZN2nn3hid19GetXpadPlayerNumberERKNS0_9JoyXpadIdE +0000000000179690 g DF .text 00000000000000a4 _ZN2nn3ssl10Connection18GetVerifyCertErrorEPNS_6ResultE +00000000001a0578 g DF .text 0000000000000124 _ZN2nn5audio6server16CommandGenerator22GenerateSubMixCommandsEv +0000000000082520 g DF .text 000000000000005c _ZN2nn7nlibsdk4heap12TlsHeapCache15ReleaseAllCacheEv +00000000000b17d8 g DF .text 0000000000000098 _ZN2nn4util12GenerateUuidEv +00000000003398ec w DF .text 00000000000004ac _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedImEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000003ce490 g DF .text 0000000000000088 scalbn +0000000000947350 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000001854dc g DF .text 0000000000000008 _ZN2nn5audio51SetAudioRendererExclusiveControlLeakageCheckEnabledEb +00000000001b94bc g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw8GetMoleXEv +00000000001c65ec w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E24_nn_sf_sync_BuildDefaultENS0_3OutINS5_8CharInfoEvEEi +00000000007c5fe0 w DO .rodata 0000000000000109 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000956fa4 g DO .data 0000000000000010 _ZN2nn5audio14FdnDelayLenMaxE +0000000000231980 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm1ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000023d370 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail20IrSensorSystemServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +0000000000230760 g DF .text 0000000000000048 _ZN2nn3hid5debug21SetXpadAutoPilotStateERKNS0_11BasicXpadIdERKNS1_23BasicXpadAutoPilotStateE +00000000002707e4 g DF .text 0000000000000004 NvRmMemReserve +000000000009d4fc g DF .text 00000000000000fc _ZN2nn2sf4hipc6server24HipcServerSessionManager15ProcessMessage2EPNS2_21HipcServerSessionBaseEPvmS6_m +000000000013609c g DF .text 000000000000002c _ZN2nn2lm6detail20LogPacketTransmitter22PushLogPacketDropCountEm +000000000022b648 g DF .text 0000000000000050 _ZN2nn3hid28GetControlPadRestrictionTypeENS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +000000000025a82c g DF .text 0000000000000008 nvdcScrncaptDupFBuf +00000000001b23a4 g DF .text 000000000000014c _ZN2nn2ec6detail40ShowShopSecretApplicationInformationImplENS1_10LaunchModeENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdE +00000000003a7800 g DF .text 0000000000000000 memcmp +00000000002b4470 g DF .text 0000000000000040 _ZN7android18GraphicBufferAllocD1Ev +00000000001d2834 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetDisplayServiceENS0_3OutINS0_13SharedPointerINS6_26IApplicationDisplayServiceEEEvEEj +000000000004aee4 g DF .text 000000000000003c _ZN2nn2fs11FileStorage7SetSizeEl +000000000012d0b8 g DF .text 0000000000000264 _ZN2nn2fs14ExtendSaveDataERKNS_7account3UidEll +0000000000225e1c g DF .text 00000000000000e0 _ZN2nn3hid6detail14ListUniquePadsEPiPNS0_6system11UniquePadIdEi +0000000000122d84 g DF .text 0000000000000004 _ZNK2nn7friends16UserPresenceView24GetLastPlayedApplicationEv +0000000000326dd0 g DF .text 00000000000000b4 _ZNSt3__117__assoc_sub_state4waitEv +00000000003541fc g DF .text 0000000000000074 _ZNSt3__16locale2id5__getEv +000000000029c6f4 g DF .text 00000000000000c0 _ZN7android10MemoryBaseC1ERKNS_2spINS_11IMemoryHeapEEElm +000000000018f97c g DF .text 00000000000001dc _ZN2nn5audio22ProcessResamplerBufferEPNS0_13ResamplerTypeEPiPsmPKsi +000000000017db4c g DF .text 000000000000009c _ZN2nn4time14GetSpanBetweenEPlRKNS0_20SteadyClockTimePointES4_ +0000000000805190 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi77EE4MaskE +0000000000333b78 g DF .text 0000000000000048 _ZNSt3__18ios_base4InitD1Ev +000000000035a574 g DF .text 0000000000000068 _ZNKSt3__120__codecvt_utf8_utf16IDsE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_ +0000000000164558 g DF .text 0000000000000054 _ZN2nn5prepo6detail7msgpack20WriteSignedInteger16EPNS2_17OutputStreamParamEs +00000000001d0338 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_CreateSharedBufferTransferMemoryENS0_3OutINS_2vi7fbshare18SharedBufferHandleEvEEONS0_12NativeHandleEmRKNSI_22SharedMemoryPoolLayoutE +00000000000d70c8 g DF .text 0000000000000030 _ZNK2nn4bcat21DeliveryCacheProgress13GetWholeTotalEv +00000000000c8ad8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000bce34 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E12GetProxyInfoEv +000000000095ba78 w DO .data 0000000000000020 _ZTVN2nn3hid6detail15NpadJoyDualLifoE +000000000039f6b8 g DF .text 000000000000002c __unordsf2 +0000000000314028 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000001fd0c g DF .text 00000000000001b8 _ZN2nn5image6detail4jpeg22jpeg_resync_to_restartEPNS2_22jpeg_decompress_structEi +00000000003151c0 g DF .text 0000000000000050 _ZN2nn4gpio16SetInterruptModeEPNS0_14GpioPadSessionENS0_13InterruptModeE +00000000003cdf44 g DF .text 0000000000000058 rintf +00000000000a1c44 g DF .text 0000000000000004 nnsocketGetHErrno +00000000003a4780 g DF .text 0000000000000058 __subvsi3 +0000000000091504 g DF .text 0000000000000004 nnosGetSystemTick +00000000001b8a44 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw10SetDefaultEv +000000000033306c w DF .text 00000000000000ac _ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEEC1EPNS_15basic_streambufIcS2_EE +0000000000264b00 g DF .text 0000000000000030 NvOsDebugNprintf +00000000007e6670 w DO .rodata 00000000000001c6 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +000000000017e794 g DF .text 0000000000000094 _ZN2nn4time20CalculateSpanBetweenEPNS_8TimeSpanERKNS0_13ClockSnapshotES5_ +000000000024dec0 g DF .text 000000000000011c _ZN2nn5album22SaveAndShareScreenshotEPNS0_7ShareIdEPKvmNS0_9ImageSizeENS0_16ImageOrientationENS0_17AlbumReportOptionERKNS_7account3UidEPKc +000000000097d740 g DO .data 0000000000000018 _ZTISt16invalid_argument +00000000003cdf9c g DF .text 00000000000000a4 rintl +0000000000070b1c g DF .text 0000000000000004 _ZN2nn4lmem6detail16DestroyFrameHeapEPNS1_8HeapHeadE +000000000002db18 g DF .text 00000000000007b0 _ZN2nn5image6detail17ExtractJpegHeaderEPNS1_10JpegHeaderEPKvmi +0000000000343f68 w DF .text 000000000000005c _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIwEE +0000000000044444 g DF .text 0000000000000064 _ZN2nn4diag6detail10VAbortImplEPKcS3_S3_iPKNS_6ResultEPKNS_2os17UserExceptionInfoES3_St9__va_list +000000000011908c g DF .text 000000000000003c _ZN2nn5codec6detail20SetBandwidthInternalEP11OpusEncoderNS0_13OpusBandwidthE +000000000022171c g DF .text 00000000000000c0 _ZN2nn3hid6detail21InitializeTouchScreenEv +000000000008f9b8 g DF .text 000000000000004c _ZN2nn2os24SdkConditionVariableType4WaitERNS0_12SdkMutexTypeE +00000000000c1dfc g DF .text 0000000000000040 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureC2EPNS0_3nas29IOAuthProcedureForExternalNsaE +000000000097b330 g DO .data 0000000000000018 _ZTINSt3__115__codecvt_utf16IwLb0EEE +000000000023f1a8 w DF .text 0000000000000468 _ZN22nerd_gillette_internal5otete7jaimev29SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_12HandInPacketERT_ +0000000000109c8c g DF .text 0000000000000030 encode_size +000000000015e4cc g DF .text 00000000000000ec _ZN2nn4pctl34SynchronizeParentalControlSettingsEPNS_4time9PosixTimeE +00000000007b1220 g DO .rodata 0000000000000024 _ZTSN2nn2fs6detail18FileSystemAccessorE +0000000000233960 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18OutRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_24OutRawClientArgumentTypeILm8ELm8EEEj +000000000004e70c g DF .text 000000000000008c _ZN2nn2fs6detail14FindFileSystemEPPNS1_18FileSystemAccessorEPKc +000000000017b128 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E17GetCmifBaseObjectEv +000000000095d2f0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000000abd2c w DF .text 0000000000000218 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEENSJ_ILm4ELm4ELl4EEENSJ_ILm4ELm4ELl8EEENSJ_ILm16ELm8ELl16EEEEEELm32ELm8ELb0EEESQ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESY_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeES10_S10_NSZ_ILm16ELm8EvEEj +00000000001a30b4 g DF .text 0000000000000010 _ZNK2nn5audio6server14MemoryPoolInfo8IsMappedEv +000000000034dd74 w DF .text 0000000000000498 _ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwe +0000000000296e1c g DF .text 0000000000000054 _ZN7android10IInterface8asBinderEPKS0_ +0000000000356b50 g DF .text 00000000000000b4 _ZNKSt3__112ctype_bynameIwE9do_narrowEPKwS3_cPc +0000000000347904 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb1EE16do_thousands_sepEv +0000000000a68478 g DO .bss 0000000000000008 _ZN7android19IGraphicBufferAlloc10descriptorE +0000000000326d3c g DF .text 0000000000000094 _ZNSt3__117__assoc_sub_state10__sub_waitERNS_11unique_lockINS_5mutexEEE +0000000000326c08 g DF .text 0000000000000040 _ZNSt3__117__assoc_sub_state12__make_readyEv +0000000000822580 w DO .rodata 000000000000002f _ZTSNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE +00000000003566c4 g DF .text 000000000000024c _ZNKSt3__112ctype_bynameIwE11do_scan_notEtPKwS3_ +000000000008d460 g DF .text 0000000000000050 _ZN2nn2os12TryWaitEventEPNS0_9EventTypeE +000000000009132c g DF .text 0000000000000004 nnosGetCurrentCoreNumber +00000000000ceb8c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_RequestToShutdownEv +00000000001d041c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_CreateSharedLayerENS0_3OutINS_2vi7fbshare17SharedLayerHandleEvEENS_6applet20AppletResourceUserIdE +0000000000356c54 g DF .text 0000000000000008 _ZNKSt3__17codecvtIcc11__mbstate_tE11do_encodingEv +000000000006c068 g DF .text 00000000000000b4 _ZN2nn2fs12FormatSdCardEv +000000000019c3e4 g DF .text 000000000000004c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl10InitializeERKNS0_6detail30AudioRendererParameterInternalEmRNS_2sf12NativeHandleEmRKNS_6applet20AppletResourceUserIdEi +00000000002565fc g DF .text 0000000000000090 _ZN2nn3web14ShowWebPageArg17SetPointerEnabledEb +0000000000348238 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb0EE11do_groupingEv +0000000000051a34 g DF .text 00000000000001b0 _ZN2nn2fs12MountContentEPKcNS_3ncm9ProgramIdENS0_11ContentTypeE +00000000002cda68 g DF .text 0000000000000004 _ZN7android7RefBase12weakref_type7trackMeEbb +0000000000329fb4 w DF .text 00000000000001f8 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPNS_15basic_streambufIcS2_EE +00000000001cdad4 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000007dea80 w DO .rodata 0000000000000017 _ZTSN2nn3nfp6detail5IUserE +00000000000640d0 g DF .text 000000000000011c _ZN2nn2fs16SuspendMmcPatrolEv +000000000017956c g DF .text 00000000000000d8 _ZN2nn3ssl10Connection4PollEPNS1_9PollEventES3_j +0000000000220240 g DF .text 0000000000000174 _ZN2nn3hid6detail26FinalizeSharedMemoryFormatEPNS1_18SharedMemoryFormatE +0000000000805938 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout19SpanishLatinAmericaE +000000000023a6f0 g DF .text 000000000000000c _ZN2nn8irsensor6detail15IrSensorSession37ThrowResultDeactivationLowerLimitOverEv +00000000000bb958 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E52_nn_sf_sync_CreateProcedureToLinkWithNintendoAccountENS0_3OutINS0_13SharedPointerINS5_3nas40IOAuthProcedureForNintendoAccountLinkageEEEvEE +0000000000317870 g DF .text 0000000000000088 _ZN2nn3pcv8FinalizeEv +00000000003a35f8 g DF .text 0000000000000048 __multi3 +000000000002fc8c g DF .text 0000000000000004 _ZN2nn5image13ExifExtractorD2Ev +0000000000125be0 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_GetFriendDetailedInfoENS0_3OutINS6_22FriendDetailedInfoImplEvEERKNS_7account3UidENSO_23NetworkServiceAccountIdE +00000000001c4f2c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetReserved1Ev +0000000000a69960 g DO .bss 0000000000000030 _ZN7android22GraphicBufferAllocator10sAllocListE +000000000015183c w DF .text 0000000000000114 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_4nifm6detail14IStaticServiceENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEEENS_6ResultEPNS0_13SharedPointerIT_EENS_3svc6HandleE +00000000007b8cb0 w DO .rodata 000000000000001e _ZTSN2nn2ro6detail12IRoInterfaceE +000000000015e8c8 g DF .text 0000000000000058 _ZN2nn4pctl23IsRestrictedByPlayTimerEv +0000000000822dc8 g DO .rodata 0000000000000004 _ZNSt3__16locale3allE +000000000032489c g DF .text 0000000000000058 _ZNSt3__18__c_nodeD2Ev +00000000002a0694 g DF .text 0000000000000070 _ZNK7android6Parcel11readString8Ev +00000000000b3914 g DF .text 0000000000000058 _ZN2nn7account27StoreSaveDataThumbnailImageERKNS0_3UidEPKvm +000000000000a404 w DF .text 00000000000000c8 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE6GetMacEPvm +0000000000077050 g DF .text 0000000000000314 nnmem_nlib_memutf8_to_utf16 +000000000010c074 g DF .text 0000000000000050 opus_packet_get_nb_frames +0000000000122248 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo12GetAccountIdEv +000000000006fb14 g DF .text 0000000000000054 _ZN2nn4lmem14FreeToUnitHeapEPNS0_6detail8HeapHeadEPv +0000000000168214 g DF .text 0000000000000048 _ZN2nn8settings6system22SetBluetoothAfhEnabledEb +00000000002d0d28 g DF .text 0000000000000004 androidSetThreadName +000000000023a6fc g DF .text 000000000000000c _ZN2nn8irsensor6detail15IrSensorSession27ThrowResultAllocationFailedEv +00000000007e3c10 w DO .rodata 00000000000000ec _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +00000000001a2590 g DF .text 000000000000000c _ZN2nn5audio6server12BehaviorInfo11UpdateFlagsERKNS_4util10BitFlagSetILi64EvEE +000000000023994c g DF .text 0000000000000028 _ZN2nn8irsensor6detail15IrSensorSession25GetIrCameraInternalStatusERKNS0_14IrCameraHandleE +000000000097aa68 g DO .data 0000000000000060 _ZTVNSt3__17codecvtIwc11__mbstate_tEE +000000000022e1ec g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm12EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000001fc370 g DF .text 000000000000009c advance_elementPtr +000000000036ba74 g DF .text 000000000000002c _ZNSt3__112strstreambuf9underflowEv +000000000039f41c g DF .text 000000000000002c __unorddf2 +0000000000328ff8 w DF .text 000000000000002c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE7sungetcEv +0000000000805610 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi113EE4MaskE +00000000000b234c g DF .text 0000000000000034 _ZN2nn7account6detail24SimpleOAuthProcedureBaseC1ERKNS0_3UidEPNS0_4http15IOAuthProcedureE +00000000000be87c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_GetSystemEventENS0_3OutINS0_12NativeHandleEvEE +0000000000170070 g DF .text 0000000000000070 _ZN2nn8settings6detail32GetWirelessCertificationFileSizeEPm +0000000000232b5c w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000003a80cc w DF .text 0000000000000028 exit +00000000003a4728 g DF .text 0000000000000058 __subvdi3 +00000000009537c8 w DO .data 0000000000000070 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail12IScanRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +000000000017521c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_GetWebInspectorFlagENS0_3OutIbvEE +00000000007e4550 w DO .rodata 000000000000014f _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectESI_E6ObjectE +00000000003b8940 g DF .text 00000000000003cc memcpy +000000000009bf34 g DF .text 000000000000010c _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBaseD2Ev +0000000000030ff4 g DF .text 0000000000000304 nnutilZlib_deflateInit2_ +0000000000286e34 g DF .text 000000000000000c NvRmGpuRegOpsSessionSetPcSamplingMode +00000000000a3798 g DF .text 0000000000000170 _ZN2nn6socket6detail11GetSockNameEiP8sockaddrPj +000000000022939c g DF .text 0000000000000054 _ZN2nn3hid6system16GetIrSensorStateEj +0000000000122980 g DF .text 0000000000000008 _ZNK2nn7friends11PlayHistory26HasNetworkServiceAccountIdEv +00000000002599e4 g DF .text 0000000000000008 nvdcFlipSyncFd2 +00000000003ab094 g DF .text 0000000000000004 pthread_attr_setschedpolicy +00000000003c0910 g DF .text 0000000000000080 __crypt_sha512 +000000000021a184 g DF .text 0000000000000060 _ZN2nn3hid6detail24UnsetMouseAutoPilotStateEv +00000000007c1cd0 w DO .rodata 00000000000001b9 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000007d3fce g DO .rodata 000000000000001c silk_Resampler_1_2_COEFS +00000000001263b8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +000000000024ea0c w DF .text 00000000000001bc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm32ELm1ELl0EEENS7_18BufferArgumentInfoILi0ELi69ELm0EEENS7_17InRawArgumentInfoILm64ELm4ELl0EEENSF_ILm8ELm8ELl72EEENSF_ILm4ELm4ELl64EEEEEELm80ELm32ELb1EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm32ELm1EEENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm64ELm4EvEENSS_ILm8ELm8EvEENSS_ILm4ELm4EvEEj +00000000002578b0 g DF .text 0000000000000090 _ZN2nn3web15ShowNewsPageArg20SetScreenShotEnabledEb +0000000000164094 g DF .text 0000000000000140 _ZN2nn5prepo6detail7msgpack11WriteBinaryEPNS2_17OutputStreamParamEPKvj +0000000000986d90 g DO .data 0000000000000008 __stdout_used +0000000000072618 g DF .text 0000000000000088 nnmem_nlib_snwprintf +00000000001a98f8 g DF .text 0000000000000084 _ZN2nn5audio3dsp10ApplyDepopEPiiii +00000000000b8bac w DF .text 00000000000002b4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi25ELm264EEENSI_ILi1ELi25ELm512EEENSC_20InHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESP_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeESX_NS2_26InHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000286e1c g DF .text 000000000000000c NvRmGpuRegOpsSessionSetSmpcContextSwitchMode +00000000003e0558 g DF .text 0000000000000010 ldiv +000000000019a9d0 g DF .text 0000000000000008 _ZN2nn5audio35GetFinalOutputRecorderBufferEndTimeEPKNS0_25FinalOutputRecorderBufferE +0000000000217178 g DF .text 00000000000000cc _ZN2nn3hid6detail20InitializeHomeButtonEv +000000000026486c g DF .text 0000000000000024 NvOsAtomicCompareExchange32 +000000000024fdac g DF .text 0000000000000034 _ZN2nn3ldn16CloseAccessPointEv +000000000018929c g DF .text 0000000000000034 _ZN2nn5audio14MemoryPoolInfo6DetachEv +00000000003969e8 g DF .text 000000000000005c _ZNSt14overflow_errorD0Ev +000000000009d868 w DF .text 0000000000000148 _ZNK2nn2sf4hipc6server17HipcServerMessage10GetBuffersEPNS0_6detail14PointerAndSizeE +0000000000274700 g DF .text 0000000000000008 NvRmChannelGetModuleMutex +000000000012254c g DF .text 0000000000000008 _ZNK2nn7friends23NintendoNetworkIdFriend7IsValidEv +000000000015679c g DF .text 000000000000008c _ZN2nn4nifm22GetCurrentProxySettingEPNS0_12ProxySettingE +000000000020220c g DF .text 0000000000000008 FsLtt_getFileVersion +00000000000cc2c0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_PopInDataENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEE +00000000001806fc w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object7ReleaseEv +0000000000099c9c g DF .text 000000000000007c _ZN2nn2ro9BindEntryEv +00000000000c7100 w DF .text 0000000000000154 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm1ELm1ELl0EEENSG_ILm1ELm1ELl1EEENSG_ILm1ELm1ELl2EEEEEELm3ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm1ELm1EvEESS_SS_j +000000000021b1a8 g DF .text 00000000000000c8 _ZN2nn3hid6detail22GetNpadControllerColorEPNS0_19NpadControllerColorERKj +00000000007dfab0 g DO .rodata 0000000000000022 _ZTSN2nn3ngc6detail15NullInputStreamE +0000000000179644 g DF .text 000000000000004c _ZN2nn3ssl10Connection12GetLastErrorEPNS_6ResultE +000000000007551c g DF .text 00000000000002f4 nnmem_nlib_memutf8_to_utf32 +00000000001a3498 g DF .text 0000000000000008 _ZNK2nn5audio6server10PoolMapper17IsForceMapEnabledEv +000000000036bd20 g DF .text 00000000000000b8 _ZNSt3__110istrstreamD1Ev +0000000000823520 g DO .rodata 0000000000000015 _ZTSNSt3__18numpunctIwEE +00000000009464b0 w DO .data 0000000000000018 _ZTIN2nn2sm6detail14IUserInterfaceE +000000000007b6d0 g DF .text 0000000000000088 nnmem_nlib_snprintf_fallback +00000000007d4beb g DO .rodata 0000000000000005 silk_uniform5_iCDF +000000000017529c w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +00000000007ee440 w DO .rodata 0000000000000021 _ZTSN2nn5audio6detail12IAudioDeviceE +00000000001d5310 g DF .text 000000000000002c _ZN2nn2vi13ObjectManager22FindValidDisplayHolderEPKNS0_7DisplayE +00000000001b62b4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor9GetMouthYEv +0000000000232494 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E30_nn_sf_sync_GetNpadJoyHoldTypeENS_6applet20AppletResourceUserIdENS0_3OutIlvEE +000000000006759c g DF .text 0000000000000170 _ZN2nn2fs16SaveDataIterator16ReadSaveDataInfoEPlPNS0_12SaveDataInfoEl +000000000015983c g DF .text 00000000000000c4 _ZN2nn3nsd6detail3ipc25DeleteSaveDataOfFsForTestEv +0000000000a834ac g DO .bss 0000000000000004 __optreset +000000000011b2c4 g DF .text 0000000000000020 _ZN2nn3err19ApplicationErrorArgC2Ev +00000000000914cc g DF .text 0000000000000004 nnosCloseNativeHandle +000000000017a05c g DF .text 0000000000000024 nnsslConnectionDoHandshake +000000000018778c g DF .text 0000000000000098 _ZN2nn5audio21SetReverbPredelayTimeEPNS0_10ReverbTypeENS_8TimeSpanE +0000000000234b64 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E36_nn_sf_sync_SetVibrationMasterVolumeEf +00000000000ac2c8 g DF .text 0000000000000048 _ZN2nn6socket6detail10socketNtoaE7in_addr +00000000001b47dc g DF .text 00000000000000b4 _ZN2nn2la17PopFromOutChannelENS_6applet19LibraryAppletHandleEPvmPm +000000000021b948 g DF .text 00000000000001fc _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_16NpadJoyLeftStateEiRKj +000000000022e120 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm9EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +000000000018d29c g DF .text 0000000000000030 _ZN2nn5audio6common10NodeStates17GetWorkBufferSizeEi +000000000018724c g DF .text 0000000000000038 _ZN2nn5audio30GetRequiredBufferSizeForReverbEii +0000000000264be8 g DF .text 00000000000000fc _ZN2nv20SetGraphicsAllocatorEPFPvmmS0_EPFvS0_S0_EPFS0_S0_mS0_ES0_ +000000000097a9e0 g DO .data 0000000000000088 _ZTVNSt3__112ctype_bynameIwEE +000000000009a1a4 w DF .text 0000000000000004 _ZN2nn14MemoryResourceD2Ev +0000000000220474 g DF .text 000000000000002c _ZN2nn3hid6detail18SharedMemoryHolderC1Ev +000000000036d6d0 g DF .text 0000000000000018 _ZNSt3__129__libcpp_recursive_mutex_lockEPN2nn2os9MutexTypeE +0000000000944160 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf15IDeviceOperatorE +0000000000953ab0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +0000000000236764 g DF .text 00000000000000d0 _ZN2nn8irsensor6detail23GetImageProcessorStatusEPNS0_20ImageProcessorStatusERKbRKNS0_14IrCameraHandleE +0000000000825150 g DO .rodata 0000000000000012 _ZTSSt13bad_exception +00000000001d7494 g DF .text 0000000000000090 _ZN2nn2vi6buffer11BufferQueue13DequeueBufferEPPPv +0000000000823a60 w DO .rodata 000000000000004d _ZTSNSt3__115time_put_bynameIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000022e3e0 g DF .text 0000000000000054 _ZN2nn3hid6system16GetUniquePadTypeENS1_11UniquePadIdE +000000000080d970 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail20IrSensorSystemServerEEEEEE13ServiceObjectE +00000000000904f8 g DF .text 0000000000000004 _ZN2nn2os11SleepThreadENS_8TimeSpanE +0000000000399b40 g DF .text 0000000000000028 unw_get_proc_name +000000000019237c w DF .text 0000000000000160 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi5ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000017f10c g DF .text 00000000000000c0 _ZN2nn4time38SetStandardLocalSystemClockCurrentTimeERKNS0_9PosixTimeE +0000000000093dd8 w DF .text 000000000000011c _ZN2nn2os6detail20AddressRegionManagerC2Emm +00000000000bdb68 g DF .text 00000000000000ac _ZN2nn7account37InitializeBaasAccessTokenAccessorWithEONS_2sf13SharedPointerINS0_24IBaasAccessTokenAccessorEEE +000000000018bbcc g DF .text 0000000000000044 _ZN2nn5audio20SetSubMixDestinationEPNS0_19AudioRendererConfigEPNS0_10SubMixTypeEPNS0_12SplitterTypeE +00000000000d0f54 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000227cd4 g DF .text 000000000000000c _ZN2nn3hid6detail36GetVibrationDeviceHandlePlayerNumberERKNS0_21VibrationDeviceHandleE +0000000000285edc g DF .text 0000000000000008 nvgr_get_memfd +0000000000250068 g DF .text 000000000000003c _ZN2nn3ldn20AddAcceptFilterEntryENS0_10MacAddressE +0000000000248874 w DF .text 0000000000000cc8 _ZN22nerd_gillette_internal5otete7jaimev127DecodeFullSilhouetteImplROKINS_15NumericalVectorIfLm2EEEPFS4_NS3_IsLm2EEEEEEbRNS_30ContiguousStorageContainerBaseIT_Lb1EEERNS0_14InputBitStreamERKNS1_23FullSilhouetteCodecDataET0_ +000000000017b58c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E19_nn_sf_sync_PendingENS0_3OutIivEE +00000000000a1acc g DF .text 0000000000000004 nnsocketPoll +000000000094c500 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IAudioControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000d1254 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +00000000003197ac w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm3EE27InitializeShimLibraryHolderINS_3pcv6detail11IPcvServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +0000000000354474 g DF .text 0000000000000014 _ZNSt3__16locale5facet16__on_zero_sharedEv +00000000000ce1dc w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE29_nn_sf_sync_GetSelfControllerENS0_3OutINS0_13SharedPointerINS6_15ISelfControllerEEEvEE +0000000000822ddc g DO .rodata 0000000000000002 _ZNSt3__110ctype_base6xdigitE +00000000007e9214 g DO .rodata 0000000000000004 _ZN2nn5audio10EffectInfo11InParameter22InvalidProcessingOrderE +000000000021d2a8 g DF .text 00000000000001e4 _ZN2nn3hid6detail26GetSixAxisSensorLeftStatesEPiPNS0_18SixAxisSensorStateEiRKjNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +000000000006c850 g DF .text 0000000000000034 _ZN2nn2fs6detail27StorageServiceObjectAdapter4ReadElPvm +000000000094c748 w DO .data 0000000000000070 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IDebugFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000122d90 g DF .text 0000000000000008 _ZNK2nn7friends16UserPresenceView17GetLastUpdateTimeEv +00000000007d4b80 g DO .rodata 0000000000000020 silk_stereo_pred_quant_Q13 +000000000003b730 g DF .text 0000000000000020 _ZN2nn4util16BinaryFileHeader11SetFileNameERKNS0_17basic_string_viewIcNSt3__111char_traitsIcEEEE +00000000000ed9c8 g DF .text 000000000000016c unquant_energy_finalise +000000000011dc04 g DF .text 0000000000000054 _ZN2nn7friends14AddPlayHistoryERKNS0_26PlayHistoryRegistrationKeyERKNS0_15InAppScreenNameES6_ +000000000016b48c g DF .text 0000000000000044 _ZN2nn8settings20SetXpadGenericPadMapERKNS0_22BasicXpadGenericPadMapEi +000000000032706c g DF .text 0000000000000060 _ZNSt3__17promiseIvEC2Ev +0000000000118230 g DF .text 00000000000001a0 _ZN2nn5codec11OpusEncoder10InitializeEiiNS0_15OpusApplicationEPvm +0000000000180ad8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E48_nn_sf_sync_SetStandardSteadyClockInternalOffsetENS_12TimeSpanTypeE +00000000007fa8a0 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail22RandomMiiNoseTypeTableE +0000000000001f28 g DF .text 0000000000000028 _ZN2nn6crypto6detail11bigint_zeroEPji +00000000000b6984 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E41_nn_sf_sync_InvokeWithoutInteractionAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +00000000007f61e0 g DO .rodata 0000000000000018 _ZN2nn3mii6detail12WrinkleColorE +000000000094fed8 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000003ac0b0 g DF .text 000000000000003c __flt_rounds +0000000000044804 g DF .text 000000000000000c nndetailDiagOnAssertionFailure +0000000000804180 w DO .rodata 0000000000000058 _ZTSN2nn3hid6detail8RingLifoINS0_6system16SleepButtonStateELi16ENS1_13AtomicStorageIS4_EEEE +0000000000135ed0 g DF .text 0000000000000008 _ZN2nn2lm6detail15LogPacketHeader11SetThreadIdEm +00000000003e6c90 g DF .text 0000000000000004 __nnmusl_FinalizeLock +0000000000957050 w DO .data 0000000000000018 _ZTIN2nn5audio6detail18IAudioDebugManagerE +000000000022c010 g DF .text 0000000000000044 _ZN2nn3hid28SetNpadJoyAssignmentModeDualERKj +000000000022d1b8 g DF .text 0000000000000044 _ZN2nn3hid5debug33SetShiftGyroscopeCalibrationValueERKNS0_19SixAxisSensorHandleEff +0000000000184be0 g DF .text 0000000000000008 _ZNK2nn5audio15AudioBufferListINS0_14AudioOutBufferEE5frontEv +000000000018d8a8 g DF .text 000000000000002c _ZN2nn5audio6common16UpdateDataHeader10InitializeEj +00000000001d9dc8 g DF .text 0000000000000008 _ZN2nn6fontll18ScalableFontEngine25InitializeOtfKerningTableEPFPvmmS2_ES2_ +000000000025ad70 g DF .text 000000000000007c nvdcutilBeginTelemetryTest +00000000001b4930 g DF .text 0000000000000010 _ZN2nn2la20UseJumpLibraryAppletEb +00000000001de824 g DF .text 0000000000000400 FSS_set_font +000000000094da60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service19ILibraryAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000002631f8 g DF .text 0000000000000078 NvOsEventPoolCreate +0000000000255760 g DF .text 00000000000000a4 _ZN2nn3web16ShowSharePageArgC1ENS0_14ShareStartPageE +000000000036c7d0 g DF .text 0000000000000144 _ZNSt3__112system_errorC2ENS_10error_codeEPKc +00000000000d32b4 g DF .text 00000000000000bc _ZN2nn6applet36GetPopFromInteractiveOutChannelEventENS0_19LibraryAppletHandleE +00000000001c96e4 g DF .text 0000000000000008 _ZN2nn5swkbd24SetLeftOptionalSymbolKeyEPNS0_14KeyboardConfigEDs +0000000000001e80 g DF .text 0000000000000004 _ZN2nn6crypto6detail6BigNumD2Ev +00000000001aa46c g DF .text 0000000000000004 _ZN2nn5audio3dsp4WakeEv +00000000000c1dcc g DF .text 0000000000000030 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureC1Ev +0000000000168bf4 g DF .text 0000000000000078 _ZN2nn8settings7factory15GetEciDeviceKeyEPNS1_16EccB233DeviceKeyE +00000000007a42b4 g DO .rodata 00000000000000c0 _ZN2nn6crypto6detail20p256_named_parameterE +00000000000b2334 g DF .text 0000000000000018 _ZN2nn7account6detail24SimpleOAuthProcedureBaseC1Ev +000000000015cf58 g DF .text 0000000000000054 _ZN2nn4pctl28UnlockRestrictionTemporarilyEPKc +000000000017eb34 g DF .text 0000000000000018 _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTask9GetResultEv +00000000000a4ee4 g DF .text 0000000000000140 _ZN2nn6socket6detail12SocketExemptEiii +000000000014577c g DF .text 0000000000000094 _ZN2nn3ngc6detail11AhoCorasick5ResetEv +00000000007c4460 g DO .rodata 000000000000001d _ZTSN2nn7account13ProfileEditorE +00000000001a2cbc g DF .text 000000000000001c _ZN2nn5audio6server10ReverbInfo26UpdateForCommandGenerationEv +0000000000132d18 g DF .text 0000000000000010 _ZN2nn4htcs10InitializeEPvm +000000000015d208 g DF .text 000000000000008c _ZN2nn4pctl14CheckMasterKeyERKNS0_11InquiryCodeEPKc +00000000000b1870 g DF .text 000000000000002c _ZNK2nn7account10UiSettings9GetUiModeEv +0000000000223308 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm11EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +0000000000291e5c g DF .text 0000000000000120 NvWsiContextCreate +00000000000c5588 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service18ISystemAppletProxyEEEvi +00000000000c9a68 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_PopOutDataENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEE +0000000000188f14 g DF .text 000000000000001c _ZN2nn5audio15AudioBufferListINS0_25FinalOutputRecorderBufferEE9pop_frontEv +0000000000943da0 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf17ISaveDataExporterE +00000000000a1a0c g DF .text 0000000000000004 _ZN2nn6socket12FreeAddrInfoEP8addrinfo +000000000017ec14 g DF .text 0000000000000004 _ZN2nn4time30SuspendAutonomicTimeCorrectionEv +0000000000959158 g DO .data 0000000000000020 _ZTVN2nn5audio6server14DeviceSinkInfoE +00000000001ce670 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_CloseIndirectLayerEm +000000000024c678 g DF .text 000000000000007c _ZN2nn3kpr6detail22DequeueKeyCodeComposerEPNS1_22KeyCodeComposerStorageEPti +00000000001b626c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetEyebrowXEv +00000000007c9200 w DO .rodata 0000000000000100 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007ced90 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000151dfc w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E36_nn_sf_sync_EnumerateNetworkProfilesERKNS0_8OutArrayINS6_2sf23NetworkProfileBasicInfoEEENS0_3OutIivEEh +000000000015dfa4 g DF .text 0000000000000038 _ZN2nn4pctl31ConfirmSystemSettingsPermissionEv +00000000002cef50 g DF .text 0000000000000040 _ZN7android7String8C2ERKNS_8String16E +000000000016df2c g DF .text 0000000000000070 _ZN2nn8settings6detail17GetGyroscopeScaleEPNS0_7factory14GyroscopeScaleE +00000000001cdcc0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetNativeHandleEijNS0_3OutINS0_12NativeHandleEvEE +00000000003466b8 g DF .text 000000000000006c _ZNKSt3__110__time_put8__do_putEPcRS1_PK2tmcc +000000000015ef9c g DF .text 0000000000000088 _ZN2nn4pctl11PairingInfo14GetAccountInfoEPNS0_18PairingAccountInfoE +000000000006ae60 g DF .text 0000000000000014 _ZN2nn2fs30SaveDataTransferSizeCalculator34QuerySaveDataRequiredSizeForImportEv +00000000000a3908 g DF .text 0000000000000180 _ZN2nn6socket6detail10GetSockOptEiiiPvPj +00000000003160e4 g DF .text 00000000000000dc _ZN2nn3i2c17OpenSessionForDevEPNS0_10I2cSessionEitNS0_14AddressingModeENS0_9SpeedModeE +000000000095d070 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000000cebcc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E45_nn_sf_sync_ExitAndRequestToShowThanksMessageEv +0000000000122554 g DF .text 0000000000000034 _ZN2nn7friends17NotificationQueueC1Ev +00000000002d2edc g DF .text 0000000000000058 _ZN7android10VectorImpl16editItemLocationEm +00000000001652f8 g DF .text 0000000000000010 _ZN2nn5prepo10PlayReportC2Ev +00000000003c9354 g DF .text 0000000000000198 exp2 +0000000000216ca0 g DF .text 000000000000020c _ZN2nn3hid6detail16GetGestureStatesEPiPNS0_12GestureStateEi +00000000001d5028 g DF .text 0000000000000018 _ZN2nn2vi15FreeLayerHolderEPv +0000000000317500 g DF .text 0000000000000034 _ZN2nn3i2c20CommandListFormatterC2EPvm +000000000009bbe8 g DF .text 0000000000000038 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor10SetPointerEimmi +00000000000be5ac w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E21_nn_sf_sync_LoadCacheENS0_3OutIjvEERKNS0_9OutBufferERKNS5_3UidE +0000000000150198 g DF .text 0000000000000170 _ZN2nn3ngc6detail11CalcSelect0EjjPKmPKjPKh +000000000016d5ac g DF .text 000000000000008c _ZN2nn8settings6detail23GetNxControllerSettingsEPiPNS0_6system20NxControllerSettingsEi +00000000009495f8 g DO .data 0000000000000010 _ZTIN2nn7account8NotifierE +000000000094d3d0 w DO .data 0000000000000018 _ZTIN2nn2am7service21ILibraryAppletCreatorE +000000000018c4a8 g DF .text 000000000000002c _ZN2nn5audio16VoiceInfoManagerC2Ev +00000000001c3690 g DF .text 0000000000000034 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetCreateIdERKNS1_12Ver3CreateIdE +0000000000082728 g DF .text 00000000000000c0 _ZN2nn7nlibsdk4heap12TlsHeapCache22GetAllocSizeFunc_Mode0EPS2_PKv +0000000000061ef4 g DF .text 0000000000000138 _ZN2nn2fs26EraseAndWriteParamDirectlyEPvm +0000000000298ac8 g DF .text 0000000000000044 _ZTv0_n24_N7android11IMemoryHeapD0Ev +000000000011bab4 g DF .text 0000000000000010 _ZN2nn3err14SystemErrorArg18AttachErrorContextEPNS0_12ErrorContextE +000000000022d7f0 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm15EEEvPNS0_16TouchScreenStateIXT_EEE +00000000007cb060 w DO .rodata 0000000000000119 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEEE +0000000000368cb0 g DF .text 00000000000001d8 _ZNSt3__14stodERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPm +000000000018eda8 g DF .text 00000000000004c0 _ZN2nn5audio22InitializeResampler6ChEPNS0_17ResamplerState6ChEj +00000000001c7ae4 g DF .text 0000000000000090 _ZN2nn3mii14UpdateMiiImageEPiRKNS_4util4UuidEPS4_i +0000000000084dd8 g DF .text 0000000000000068 _ZN2nn7nlibsdk4heap14TlsHeapCentral12MakeFreeSpanEm +000000000015fa6c g DF .text 000000000000008c _ZN2nn4pctl6detail3ipc20GetServiceForWatcherEv +00000000001743d4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_SetNotificationSettingsERKNS5_6system20NotificationSettingsE +0000000000804030 w DO .rodata 000000000000002a _ZTSN2nn3hid6detail23NfcXcdDeviceHandleStateE +0000000000239974 g DF .text 0000000000000040 _ZN2nn8irsensor6detail15IrSensorSession20CheckFirmwareVersionERKNS0_14IrCameraHandleERKNS0_16PackedMcuVersionE +000000000011af68 g DF .text 000000000000009c _ZN2nn3err23ShowNetworkServiceErrorENS0_9ErrorCodeERKNS_7account10UserHandleE +00000000003dc6b0 g DF .text 0000000000000008 __fsetlocking +000000000001adec g DF .text 00000000000000c8 _ZN2nn5image6detail4jpeg18jinit_huff_decoderEPNS2_22jpeg_decompress_structE +0000000000080a34 g DF .text 0000000000000030 nnmem_nlib_get_native_last_error +00000000003e04f8 g DF .text 0000000000000038 gcvt +0000000000091450 g DF .text 0000000000000004 nnosTimedWaitInterruptEvent +00000000000a7a50 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEEEEELm4ELm8ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESP_NSN_23InRawClientArgumentTypeILm4ELm4EvEENSN_24BufferClientArgumentTypeEj +000000000018911c g DF .text 0000000000000014 _ZN2nn5audio14MemoryPoolInfo8FinalizeEv +00000000001cba50 g DF .text 0000000000000090 _ZN2nn2vi17GetDisplayCmuModeEPNS0_7CmuModeEPKNS0_7DisplayE +000000000015c1ac g DF .text 0000000000000008 _ZN2nn2oe20GetDefaultThemeColorEv +000000000096e6b0 g DO .data 0000000000000018 _ZTIN7android19IGraphicBufferAllocE +000000000022c4c8 g DF .text 000000000000005c _ZN2nn3hid12GetNpadStateEPNS0_17NpadJoyRightStateERKj +000000000022b1d4 g DF .text 0000000000000044 _ZN2nn3hid14InitializeNpadEv +0000000000315118 g DF .text 0000000000000050 _ZN2nn4gpio21SetValueForSleepStateEPNS0_14GpioPadSessionENS0_9GpioValueE +0000000000174840 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_GetPrimaryAlbumStorageENS0_3OutIivEE +00000000003a7a00 g DF .text 0000000000000000 strncmp +0000000000144ce4 g DF .text 0000000000000020 _ZN2nn3ngc6detail14ContentsReader15UnmountContentsEv +000000000025a038 g DF .text 0000000000000048 nvdcSetMode +00000000003c9910 g DF .text 0000000000000180 expf +00000000000713ec g DF .text 0000000000000044 nnmem_nlib_thread_attr_init +00000000000957cc g DF .text 0000000000000134 _ZNK2nn2os6detail26ThreadManagerImplByHorizon13MapAliasStackEPKvS4_m +0000000000323e08 g DF .text 0000000000000018 _ZNSt3__112__rs_defaultC1ERKS0_ +00000000007ec100 w DO .rodata 000000000000002f _ZTSN2nn5audio6detail26IAudioInManagerForDebuggerE +000000000023a814 g DF .text 0000000000000068 _ZN2nn8irsensor6detail14SessionManager10GetSessionERKNS_6applet20AppletResourceUserIdE +000000000023176c w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm16ELm1ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSD_ILm4ELm4ELl4EEEEEELm8ELm16ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm16ELm1EEENSL_23InRawClientArgumentTypeILm4ELm4EvEESP_j +00000000003e7a28 g DF .text 0000000000000024 __nnmusl_pthread_attr_setschedpolicy +00000000001a67fc g DF .text 0000000000000010 _ZNK2nn5audio6server12VoiceContext18GetChannelResourceEi +00000000002300dc g DF .text 000000000000004c _ZN2nn3hid15VibrationTargetC1Ev +0000000000396674 g DF .text 0000000000000014 __cxa_deleted_virtual +00000000003c9a90 g DF .text 000000000000001c expl +00000000007cd7a0 w DO .rodata 00000000000000f1 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +0000000000823ef0 w DO .rodata 000000000000002a _ZTSNSt3__114codecvt_bynameIwc11__mbstate_tEE +00000000000c2278 g DF .text 0000000000000028 _ZN2nn7account13ProfileEditorD2Ev +0000000000264740 g DF .text 0000000000000018 multimedia_Free +00000000001cbd10 g DF .text 0000000000000070 _ZN2nn2vi17SetDisplayCmuLumaEPNS0_7DisplayEf +00000000001b7784 g DF .text 0000000000000718 _ZN2nn3mii6detail19CompareCharInfoImpl15CompareCharInfoEPiiRKNS0_21ParamCharInfoAccessorES6_ +00000000009534a0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +00000000001d28dc w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E50_nn_sf_sync_GetDisplayServiceWithProxyNameExchangeENS0_3OutINS0_13SharedPointerINS6_26IApplicationDisplayServiceEEEvEEjNS_2vi9ProxyNameE +00000000008050d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi71EE4MaskE +00000000002cfd74 g DF .text 00000000000001ac _ZN7android7String89removeAllEPKc +000000000097b0f0 g DO .data 0000000000000018 _ZTINSt3__117__widen_from_utf8ILm32EEE +0000000000180d10 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISystemClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object7ReleaseEv +000000000019ed38 g DF .text 00000000000000ac _ZN2nn5audio6server13CommandBuffer26GeneratePerformanceCommandEPKNS1_25PerformanceEntryAddressesENS0_22PerformanceCommandTypeEj +00000000000454dc g DF .text 0000000000000014 _ZN2nn4diag26EnableDefaultAbortObserverEb +0000000000953ad0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +000000000006d9cc w DF .text 0000000000000168 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_24BufferClientArgumentTypeEj +0000000000361acc w DF .text 000000000000002c _ZnwmSt11align_val_tRKSt9nothrow_t +000000000022e7ec g DF .text 0000000000000050 _ZN2nn3hid6system29IsUsbFullKeyControllerEnabledEv +000000000036c0a8 g DF .text 000000000000002c _ZNSt3__19strstreamD1Ev +0000000000070c10 g DF .text 0000000000000014 _ZN2nn4lmem6detail21RestoreFrameHeapStateEPNS1_8HeapHeadERKNS0_14FrameHeapStateE +00000000001b5acc g DF .text 0000000000000004 _ZN2nn2la32NifmToWifiWebAuthArgumentsWriterD1Ev +0000000000214eb4 g DF .text 0000000000000040 _ZN2nn3hid6detail17AssertValidXpadIdERKNS0_11BasicXpadIdE +0000000000180e24 w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm32ELm8ELl0EEEEEELm0ELm32ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm32ELm8EEEj +000000000025ccb8 g DF .text 00000000000000b4 NvOsAllocLeak +000000000023518c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E17GetCmifBaseObjectEv +0000000000946040 w DO .data 0000000000000018 _ZTIN2nn2sf4hipc6server25HipcServerSessionManagerTINS0_4cmif6server20CmifServerObjectInfoEEE +000000000016cbf4 g DF .text 0000000000000070 _ZN2nn8settings6detail23GetDataDeletionSettingsEPNS0_6system20DataDeletionSettingsE +00000000003de7dc g DF .text 00000000000000a0 ungetc +00000000003c2ac4 g DF .text 0000000000000010 iswdigit +00000000001a293c g DF .text 0000000000000080 _ZNK2nn5audio6server14EffectInfoBase15GetSingleBufferENS2_5IndexE +0000000000017d4c g DF .text 000000000000005c _ZN2nn5image6detail4jpeg19jpeg_input_completeEPNS2_22jpeg_decompress_structE +0000000000186b78 g DF .text 000000000000004c _ZN2nn5audio14SetDelayInGainEPNS0_9DelayTypeEf +00000000001c7cdc g DF .text 0000000000000080 _ZN2nn3mii23GetUpdateMiiImageResultEPiNS_6applet13StorageHandleE +00000000003d1cd8 g DF .text 0000000000000014 ffsl +0000000000038804 g DF .text 000000000000002c nnutilZlib_inflateUndermine +00000000007d7b00 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000133734 g DF .text 0000000000000068 _ZN2nn4htcs6detail6listenENS_2sf13SharedPointerINS_3tma7ISocketEEEiRi +0000000000092edc g DF .text 0000000000000340 _ZN2nn2os6detail13MultiWaitImpl19InternalWaitAnyImplEbNS_8TimeSpanE +00000000001369fc g DF .text 0000000000000030 _ZN2nn2lm14SetDestinationEj +000000000009bce8 g DF .text 0000000000000050 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor10SetReceiveEimmj +000000000014b2d4 g DF .text 0000000000000094 _ZN2nn3ngc6detail12OutputStream14GetWorkBuffer_Ev +000000000021f008 g DF .text 0000000000000190 _ZN2nn3hid6detail7Session8ActivateEv +000000000094e9a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000255d88 g DF .text 0000000000000050 _ZNK2nn3web20SharePageReturnValue18GetPostServiceNameEv +00000000001873a4 g DF .text 0000000000000120 _ZN2nn5audio9AddReverbEPNS0_19AudioRendererConfigEPNS0_10ReverbTypeEPvmPNS0_10SubMixTypeEi +000000000019c4b8 g DF .text 000000000000003c _ZN2nn5audio6server24AudioRendererManagerImplD1Ev +00000000001ceac0 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001b1ff0 g DF .text 0000000000000138 _ZN2nn2ec6detail30ShowShopConsumableItemListImplENS1_10LaunchModeENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdE +00000000002509a8 g DF .text 00000000000000e4 _ZN2nn3ldn6detail30CreateUserServiceCreatorByHipcEv +0000000000217860 g DF .text 0000000000000118 _ZN2nn3hid6detail19GetInputSourceStateEPNS0_6system16InputSourceStateERKNS_4util10BitFlagSetILi32ENS2_13InputSourceIdEEE +0000000000365a28 w DF .text 0000000000000034 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendEPKw +0000000000152914 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E25_nn_sf_sync_SetRejectableEb +00000000000b90c8 w DF .text 00000000000001e4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSG_ILm8ELm8ELl16EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm24ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSS_ILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +0000000000234894 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E38_nn_sf_sync_GetXcdHandleForNpadWithNfcENS0_3OutImvEEjNS_6applet20AppletResourceUserIdE +000000000036d620 g DF .text 0000000000000004 _ZNSt3__130__libcpp_thread_get_current_idEv +00000000003d1bf4 g DF .text 00000000000000cc dirname +00000000002cfa64 g DF .text 0000000000000178 _ZN7android7String812appendFormatEPKcz +00000000003c3d74 w DF .text 000000000000005c duplocale +000000000008d00c g DF .text 0000000000000008 _ZN2nn2os23SignalConditionVariableEPNS0_21ConditionVariableTypeE +00000000000b7510 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +000000000026b3e8 g DF .text 0000000000000120 NvRmSurfaceComputeSecondFieldOffset +0000000000075c38 g DF .text 0000000000000080 nnmem_nlib_swapendian_32_generic +00000000009534f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +0000000000244554 w DF .text 0000000000000024 _ZN22nerd_gillette_internal5otete11ImageCodec213DecodeInPlaceIhEEbRKNS_15StaticImageViewIT_EERNS0_14InputBitStreamEf +00000000001b7e9c g DF .text 0000000000000008 _ZNK2nn3mii6detail11CoreDataRaw6VerifyEv +000000000095b988 w DO .data 0000000000000020 _ZTVN2nn3hid6detail13BasicXpadLifoE +00000000000b449c g DF .text 0000000000000014 _ZN2nn7account11Declaration4SwapERS1_ +00000000000c80f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_AcquireCallerAppletCaptureBufferExENS0_3OutIbvEENSK_INS0_12NativeHandleEvEE +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__17codecvtIDic11__mbstate_tED1Ev +00000000003e7418 g DF .text 0000000000000098 __pthread_tsd_run_dtors +00000000002d21e4 g DF .text 00000000000000a8 _ZN7android10VectorImpl14insertVectorAtERKS0_m +00000000000bb3c4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE32_nn_sf_sync_GetNintendoAccountIdENS0_3OutINS5_17NintendoAccountIdEvEE +000000000029538c g DF .text 0000000000000060 _ZTv0_n24_N7android7BBinderD1Ev +00000000000bb770 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E35_nn_sf_sync_SynchronizeProfileAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +00000000000d3370 g DF .text 0000000000000144 _ZN2nn6applet37WaitPopFromInteractiveOutChannelEventENS0_19LibraryAppletHandleE +00000000003a7ca4 g DF .text 0000000000000000 setjmp +0000000000091f08 g DF .text 000000000000007c _ZN2nn2os6detail13ThreadManager26SetInitialThreadNameUnsafeEPNS0_10ThreadTypeE +00000000000d5008 g DF .text 000000000000013c _ZN2nn4bcat25MountDeliveryCacheStorageEv +000000000015214c w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E30_nn_sf_sync_SetExclusiveClientENS5_8ClientIdE +00000000001ca2d0 g DF .text 0000000000000004 _ZN2nn5swkbd6detail18InlineKeyboardImplD1Ev +00000000002ce5b8 g DF .text 0000000000000104 _ZN7android8String166appendERKS0_ +0000000000360e5c g DF .text 0000000000000030 _ZNSt3__119__shared_weak_count14__release_weakEv +000000000036ae6c g DF .text 00000000000001cc _ZNSt3__110to_wstringEd +000000000006fc70 g DF .text 0000000000000004 _ZN2nn4lmem6detail12DumpHeapHeadEPKNS1_8HeapHeadE +000000000036b038 g DF .text 00000000000001c4 _ZNSt3__110to_wstringEe +000000000036ac9c g DF .text 00000000000001d0 _ZNSt3__110to_wstringEf +00000000003b8fa0 g DF .text 0000000000000160 __memmove_fast +00000000000c7ec0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_UpdateLastForegroundCaptureImageEv +00000000001da5c0 g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine15AcquireGlyphmapEjt +00000000007c93a0 w DO .rodata 0000000000000150 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24ITransferStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000007f6196 g DO .rodata 0000000000000008 _ZN2nn3mii6detail18Ver3HairColorTableE +000000000004d038 g DF .text 000000000000007c _ZN2nn2fs6detail12FileAccessor7SetSizeEl +000000000036a2ac g DF .text 00000000000001a8 _ZNSt3__110to_wstringEi +0000000000170000 g DF .text 0000000000000070 _ZN2nn8settings6detail20SetAppletLaunchFlagsERKNS_4util10BitFlagSetILi32ENS0_6system16AppletLaunchFlagEEE +0000000000366bf8 w DF .text 000000000000007c _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4copyEPwmm +000000000036a454 g DF .text 00000000000001a8 _ZNSt3__110to_wstringEj +000000000036a5fc g DF .text 00000000000001a8 _ZNSt3__110to_wstringEl +0000000000065c38 w DF .text 00000000000000e8 _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE10DoOpenFileEPNS3_INS4_5IFileENS6_ISA_EEEEPKcNS0_8OpenModeE +000000000036a7a4 g DF .text 00000000000001a8 _ZNSt3__110to_wstringEm +0000000000095d00 g DF .text 0000000000000054 _ZNK2nn2os6detail26ThreadManagerImplByHorizon18GetCurrentPriorityEPKNS0_10ThreadTypeE +00000000007c45f0 w DO .rodata 0000000000000116 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001605b4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E46_nn_sf_sync_ConfirmLaunchApplicationPermissionENS_3ncm13ApplicationIdERKNS0_7InArrayIaEEb +000000000004aa14 g DF .text 00000000000000b4 _ZN2nn2fs11RomPathTool10PathParser20GetNextDirectoryNameEPNS1_12RomEntryNameE +00000000002358cc w DF .text 0000000000000118 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEEEEELm16ELm8ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSL_24OutRawClientArgumentTypeILm8ELm8EEENSM_ILm8ELm8EvEEj +00000000002a2ec4 g DF .text 0000000000000090 _ZN7android21defaultServiceManagerEv +0000000000956330 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service16ITimeZoneServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +000000000095bd80 w DO .data 0000000000000018 _ZTIN2nn3hid6detail17CaptureButtonLifoE +0000000000822dce g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5printE +0000000000152a38 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E36_nn_sf_sync_SetRequirementByRevisionEj +0000000000068268 g DF .text 000000000000003c _ZN2nn2fs18CreateCacheStorageENS_3ncm13ApplicationIdEmllj +000000000013e558 g DF .text 0000000000000068 _ZN2nn3nfp10FlushDebugERKNS0_12DeviceHandleE +00000000001c32e8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetHairColorEi +0000000000979498 w DO .data 0000000000000080 _ZTVNSt3__115basic_streambufIwNS_11char_traitsIwEEEE +000000000008ee5c g DF .text 0000000000000130 _ZN2nn2os24TimedReceiveMessageQueueEPmPNS0_16MessageQueueTypeENS_8TimeSpanE +00000000002240e4 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm16EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +000000000036a94c g DF .text 00000000000001a8 _ZNSt3__110to_wstringEx +000000000036aaf4 g DF .text 00000000000001a8 _ZNSt3__110to_wstringEy +00000000001c5b54 g DF .text 000000000000003c _ZN2nn3mii15PrivateDatabase3GetEPiPNS0_9StoreDataEii +000000000097d360 g DO .data 0000000000000028 _ZTVNSt3__112system_errorE +000000000009ff64 g DF .text 0000000000000040 _ZN2nn2sf4impl6detail21ServiceObjectImplBase12AddReferenceEv +000000000035ad8c g DF .text 0000000000000048 _ZNSt3__115numpunct_bynameIcED0Ev +000000000008d2ac g DF .text 0000000000000058 _ZN2nn2os15InitializeEventEPNS0_9EventTypeEbNS0_14EventClearModeE +0000000000197ecc g DF .text 0000000000000004 _ZN2nn5audio16StartCpuProfilerEv +00000000000d15f0 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3apm8ISessionEE19FunctionForBoolTypeEv +00000000007e9090 g DO .rodata 0000000000000008 _ZN2nn5audio13AudioInBuffer16AddressAlignmentE +000000000025d23c g DF .text 0000000000000058 NvOsGetConfigString +0000000000091470 g DF .text 0000000000000004 nnosTimedSendMessageQueue +00000000007c7230 w DO .rodata 0000000000000107 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000477c0 g DF .text 000000000000003c _ZN2nn2fs24HierarchicalRomFileTable8FinalizeEv +0000000000122470 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest31GetExternalApplicationCatalogIdEv +000000000026b274 g DF .text 0000000000000008 NvRmSurfaceGetDefaultLayout +0000000000158960 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3nsd6detail8IManagerEED2Ev +00000000002581a8 g DF .text 0000000000000064 nvcecSetEventCb +0000000000089a1c g DF .text 0000000000000010 _ZN2nn7nlibsdk4heap10CachedHeap15ReleaseAllCacheEv +00000000001a3074 g DF .text 000000000000000c _ZN2nn5audio6server14MemoryPoolInfo13SetCpuAddressENS0_7CpuAddrEm +00000000002ceeac g DF .text 00000000000000a4 _ZN7android7String8C1EPKcm +000000000018ba14 g DF .text 000000000000002c _ZN2nn5audio23SplitterDestinationDataC2Ei +000000000017ee08 g DF .text 0000000000000008 _ZNK2nn4time13ClockSnapshot38GetStandardUserSystemClockCalendarTimeEv +0000000000270308 g DF .text 0000000000000190 NvRmMemReadStrided +00000000000b7430 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E12GetProxyInfoEv +0000000000821440 w DO .rodata 000000000000001f _ZTSN2nn3pcv19IArbitrationManagerE +000000000011b65c g DF .text 0000000000000014 _ZN2nn3err18ErrorResultVariantC2ERKNS0_9ErrorCodeE +00000000002b3400 g DF .text 000000000000002c _ZN7android12ConsumerBaseD1Ev +000000000097bb50 w DO .data 0000000000000048 _ZTINSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000000d2dcc g DF .text 0000000000000010 _ZN2nn6applet31RequestExitLibraryAppletAndWaitENS0_19LibraryAppletHandleE +00000000001bcf6c g DF .text 0000000000000030 _ZN2nn3mii6detail11UtilityImpl15GetRandomUint32Ej +0000000000274ad8 g DF .text 0000000000000008 NvRmChannelSetSyncPointName +0000000000060610 g DF .text 0000000000000170 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter15DoOpenDirectoryEPNSt3__110unique_ptrINS0_3fsa10IDirectoryENS3_14default_deleteIS6_EEEEPKcNS0_17OpenDirectoryModeE +00000000007ce320 w DO .rodata 00000000000000ad _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +000000000016a548 g DF .text 0000000000000044 _ZN2nn8settings6system39SetConsoleSixAxisSensorAccelerationBiasERKNS1_36ConsoleSixAxisSensorAccelerationBiasE +000000000017a164 g DF .text 0000000000000024 nnsslConnectionPeek +00000000003e2624 g DF .text 0000000000000024 strncpy +0000000000341db8 w DF .text 000000000000005c _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIcEE +00000000002cc320 g DF .text 0000000000000018 _ZN7android6Region7andSelfERKS0_ii +00000000000042d8 g DF .text 0000000000000038 _ZN2nn6crypto6detail7Md5Impl10InitializeEv +00000000007cd760 w DO .rodata 000000000000002b _ZTSN2nn2am7service24IApplicationProxyServiceE +0000000000126324 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E35_nn_sf_sync_ChangePlayLogPermissionERKNS_7account3UidEi +00000000001265e0 w DF .text 0000000000000224 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSK_ILm4ELm4ELl0EEENSK_ILm16ELm8ELl24EEENSK_ILm8ELm8ELl40EEEEEELm48ELm4ELb1EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENSZ_ILm4ELm4EvEES10_NSZ_ILm8ELm8EvEEj +00000000001a7bb8 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_25CircularBufferSinkCommandE +000000000023220c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E40_nn_sf_sync_ResetAccelerometerParametersENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +00000000003e7a4c g DF .text 000000000000001c __nnmusl_pthread_attr_setscope +000000000028667c g DF .text 0000000000000040 NvRmGpuLibClose +00000000000a1974 g DF .text 0000000000000004 _ZN2nn6socket8InetNtopEiPKvPcj +0000000000948120 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile14IProfileEditorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000254188 g DF .text 0000000000000090 _ZN2nn3web36ShowOfflineHtmlPageArgWithPlayReport20SetPlayReportEnabledEb +00000000001bcff8 g DF .text 000000000000002c _ZN2nn3mii6detail11UtilityImpl15GetRandomUint32Ev +00000000000b62fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E26_nn_sf_sync_GetSystemEventENS0_3OutINS0_12NativeHandleEvEE +00000000002a0434 g DF .text 0000000000000038 _ZNK7android6Parcel9readInt64EPl +0000000000150ce8 g DF .text 0000000000000028 _ZN2nn4nifm6detail13RequestClient13SetRejectableEb +000000000015e1f8 g DF .text 0000000000000078 _ZN2nn4pctl22GetSettingsLastUpdatedEPNS_4time9PosixTimeE +00000000001cc96c g DF .text 00000000000003b0 _ZN2nn2vi8FinalizeEv +000000000007e360 g DF .text 00000000000000a4 nnmem_nlib_strto_double +00000000000ae134 g DF .text 0000000000000018 _ZN2nn6socket8resolver3tls6Client10InitializeEv +000000000014d2a4 g DF .text 0000000000000030 _ZNK2nn3ngc6detail3Set7MemSizeEv +00000000007adc54 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u811ConstantRedE +000000000011d8d8 g DF .text 00000000000000c0 _ZN2nn7friends29DeclareCloseOnlinePlaySessionERKNS_7account3UidE +00000000001743f4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_GetAccountNotificationSettingsENS0_3OutIivEERKNS0_8OutArrayINS5_6system27AccountNotificationSettingsEEE +00000000000d8768 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceEEEvi +000000000024bf64 g DF .text 000000000000000c _ZN2nn3kpr6detail25InitializeKeyCodeComposerEPNS1_22KeyCodeComposerStorageE +000000000019d1ac w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E38_nn_sf_sync_QueryAudioDeviceInputEventENS0_3OutINS0_12NativeHandleEvEE +00000000001b7748 g DF .text 0000000000000010 _ZN2nn3mii6detail21GetMouthColorFromVer3ENS1_14Ver3MouthColorE +0000000000117e84 g DF .text 000000000000001c _ZN2nn5codec17GetOpusBitRateMaxEi +00000000008054b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi102EE4MaskE +000000000018d78c g DF .text 0000000000000014 _ZNK2nn5audio6common10NodeStates11ResultBeginEv +00000000001bc810 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetEyeColorEv +00000000001ba164 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw9SetGlassYEi +00000000002cf12c g DF .text 000000000000002c _ZN7android7String8C1EPKDim +00000000001887cc g DF .text 00000000000000a0 _ZN2nn5audio24SetI3dl2ReverbParametersEPNS0_15I3dl2ReverbTypeEPKNS0_23I3dl2ReverbParameterSetE +0000000000319c3c w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object7ReleaseEv +00000000007e90b0 g DO .rodata 0000000000000004 _ZN2nn5audio22AudioRendererParameter17MixBufferCountMaxE +00000000002183a4 g DF .text 00000000000001ac _ZN2nn3hid6detail19GetJoyXpadLeftStateEPNS0_12JoyXpadStateERKNS0_9JoyXpadIdE +0000000000092d8c g DF .text 0000000000000090 _ZN2nn2os6detail13MultiWaitImpl21ConstructObjectsArrayEPjPPNS1_19MultiWaitHolderBaseEi +00000000001715cc w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm6ELm2ELl0EEEEEELm0ELm6ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm6ELm2EEEj +00000000001d4e40 g DF .text 0000000000000070 _ZN2nn2vi15AddToLayerStackEPNS0_5LayerENS0_10LayerStackE +00000000003e78b0 g DF .text 0000000000000004 __memalign +00000000000b0e60 g DF .text 00000000000000f8 _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferI12sockaddr_in6EElRT_PKhm +0000000000118594 g DF .text 000000000000007c _ZN2nn5codec11OpusEncoder10SetBitRateEi +0000000000220404 w DF .text 0000000000000004 _ZN2nn3hid6detail14NpadSystemLifoD0Ev +0000000000804c30 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi34EE4MaskE +00000000003625dc g DF .text 000000000000002c _ZNSt11logic_errorC2ERKS_ +000000000014b600 w DF .text 0000000000000008 _ZN2nn3ngc6detail15NullInputStream6Close_Ev +00000000002cc514 g DF .text 0000000000000008 _ZNK7android6Region14mergeExclusiveERKS0_ii +00000000000aaa54 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEENSG_ILm4ELm4ELl8EEEEEELm4ELm12ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESW_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeESW_j +000000000039cd84 g DF .text 00000000000000d4 __letf2 +000000000095a230 w DO .data 0000000000000018 _ZTIN2nn5visrv2sf21ISystemDisplayServiceE +00000000003e7e90 g DF .text 0000000000000064 __nnmusl_sched_cpucount +0000000000088aa4 g DF .text 00000000000000d8 _ZN2nn7nlibsdk4heap11CentralHeap9MakeCacheEPNS1_10CachedHeapE +000000000011c940 g DF .text 0000000000000010 _ZN2nn7friends6detail16PresenceAccessor11VerifyValueEPKcm +00000000000a19fc g DF .text 000000000000000c _ZN2nn6socket11GetAddrInfoEPKcS2_PK8addrinfoPPS3_ +0000000000139750 g DF .text 00000000000000c4 _ZN2nn3nfc8GetStateEv +00000000001b4fac g DF .text 000000000000002c _ZN2nn2la19FinishLibraryAppletEv +0000000000220434 w DF .text 0000000000000004 _ZN2nn3hid6detail17CaptureButtonLifoD0Ev +000000000012a75c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000064b8c g DF .text 0000000000000178 _ZN2nn2fs11GetRightsIdEPNS0_8RightsIdEPhPKc +00000000007c2a70 w DO .rodata 0000000000000158 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000001d9c6c g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngineD2Ev +000000000003c7e8 g DF .text 0000000000000008 _ZN2nn4util14DecompressGzipEPvmPKvmS1_m +000000000016a6e0 g DF .text 0000000000000044 _ZN2nn8settings6system42SetConsoleSixAxisSensorAngularVelocityGainERKNS1_39ConsoleSixAxisSensorAngularVelocityGainE +00000000001743b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetNotificationSettingsENS0_3OutINS5_6system20NotificationSettingsEvEE +00000000000a18a4 g DF .text 0000000000000004 _ZN2nn6socket10SetSockOptEiiiPKvj +00000000001d53e8 g DF .text 000000000000000c _ZN2nn2vi13ObjectManager14GetDisplayLockEv +00000000001ca088 g DF .text 0000000000000018 _ZN2nn5swkbd14InlineKeyboard21SetUsbKeyboardEnabledEb +000000000029c1d8 g DF .text 000000000000007c _ZNK7android12MemoryDealer4dumpEPKc +0000000000182d28 g DF .text 0000000000000014 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTask26GetFinishNotificationEventEv +0000000000189fa8 g DF .text 0000000000000028 _ZN2nn5audio28ClearPerformanceDetailTargetEPNS0_19AudioRendererConfigE +00000000001b6864 g DF .text 000000000000001c _ZN2nn3mii6detail25CalculateSizeAndAlignment20AddSizeWithAlignmentEmm +00000000001b1a78 g DF .text 00000000000001d0 _ZN2nn2ec6detail34ShowShopApplicationInformationImplENS1_10LaunchModeENS0_5NsUidERKNS_7account3UidENS0_8SourceIdEPKc +000000000006bee4 g DF .text 0000000000000184 _ZN2nn2fs26GetAndClearSdCardErrorInfoEPNS0_16StorageErrorInfoEPmPcm +0000000000160a40 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_GenerateInquiryCodeENS0_3OutINS5_11InquiryCodeEvEE +00000000002b67bc g DF .text 0000000000000028 _ZThn8_N7android23BnGraphicBufferProducer17onGetNativeHandleEjRjRb +000000000033cda0 w DF .text 0000000000000420 _ZNSt3__19__num_putIcE21__widen_and_group_intEPcS2_S2_S2_RS2_S3_RKNS_6localeE +0000000000188628 g DF .text 0000000000000048 _ZN2nn5audio31SetI3dl2ReverbLateReverbDensityEPNS0_15I3dl2ReverbTypeEf +00000000001c78d4 g DF .text 0000000000000008 _ZN2nn3mii13AppletManagerC2Ev +000000000094de38 w DO .data 0000000000000098 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IOverlayAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000361204 g DF .text 0000000000000040 _ZNSt3__115recursive_mutex6unlockEv +00000000003b330c g DF .text 0000000000000160 vfprintf +00000000001191c4 g DF .text 0000000000000028 _ZN2nn5codec6detail21GetFinalRangeInternalEP11OpusEncoder +000000000013dd1c g DF .text 000000000000008c _ZN2nn3nfp6detail19StartAmiiboSettingsEPNS0_28ReturnValueForAmiiboSettingsERKNS0_27StartParamForAmiiboSettingsE +00000000002043fc g DF .text 000000000000022c fill_outline_cff +0000000000172f90 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectESI_E6Object11DisposeImplEv +00000000002cbaf8 g DF .text 0000000000000014 _ZNK7android6Region16isTriviallyEqualERKS0_ +0000000000030294 g DF .text 00000000000000e0 _ZNK2nn5image13ExifExtractor25ExtractEffectiveDimensionEPNS0_9DimensionE +00000000000418f0 g DF .text 000000000000002c _ZN2nn4edid6detail10InitializeEPNS0_11DisplayInfoE +000000000004c6bc w DF .text 0000000000000070 _ZN2nn2fs13MemoryStorage4ReadElPvm +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__117__widen_from_utf8ILm16EED2Ev +00000000000b7dc8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E34_nn_sf_sync_DebugSetUserStateCloseERKNS5_3UidE +00000000000c6c28 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15ISelfControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000015d440 g DF .text 000000000000005c _ZN2nn4pctl18DisableAllFeaturesEv +00000000003a9dc0 g DF .text 000000000000000c __nnmusl_stdout_lock_finalize +00000000003b917c w DF .text 0000000000000054 __strndup +0000000000076534 g DF .text 00000000000000cc nnmem_nlib_utf32char_to_utf8 +000000000021ca3c g DF .text 0000000000000074 _ZN2nn3hid6detail28ResetAccelerometerParametersENS0_19SixAxisSensorHandleE +0000000000331144 w DF .text 000000000000004c _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryC2ERS3_ +0000000000959290 w DO .data 0000000000000038 _ZTIN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_EE +00000000000ba0d4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E27_nn_sf_sync_SetUserPositionERKNS5_3UidEi +0000000000080b4c g DF .text 00000000000000b8 nnmem_nlib_sleep +00000000008235f0 w DO .rodata 0000000000000019 _ZTSNSt3__114__num_get_baseE +0000000000361098 g DF .text 0000000000000048 _ZNSt3__15alignEmmRPvRm +000000000018bcc0 g DF .text 0000000000000018 _ZN2nn5audio18GetSubMixMixVolumeEPKNS0_10SubMixTypeEPKNS0_12FinalMixTypeEii +0000000000a7fc40 g DO .bss 0000000000000004 _ZNSt3__112__rs_default4__c_E +00000000001de198 g DF .text 0000000000000004 FSS_get_outline +0000000000179734 g DF .text 0000000000000110 _ZN2nn3ssl10Connection19GetVerifyCertErrorsEPNS_6ResultEPjS4_j +00000000007e2970 w DO .rodata 000000000000011b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000016e4f4 g DF .text 0000000000000070 _ZN2nn8settings6detail16SetNfcEnableFlagEb +0000000000296928 g DF .text 0000000000000034 _ZN7android8BpBinder20onIncStrongAttemptedEjPKv +000000000094bd30 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000947a00 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000946e78 g DO .data 0000000000000010 _ZTIN2nn7account6detail18OAuthProcedureBaseE +0000000000156be0 g DF .text 00000000000000b8 _ZN2nn4nifm22BindTelemetryInfoEventEPNS_2os15SystemEventTypeENS1_14EventClearModeE +0000000000160c40 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E35_nn_sf_sync_IsRestrictedByPlayTimerENS0_3OutIbvEE +000000000009f394 w DF .text 0000000000000010 _ZN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage19SetOutNativeHandlesEPNS0_12NativeHandleE +0000000000201270 g DF .text 0000000000000050 copy_graymap +0000000000353f30 g DF .text 0000000000000068 _ZNSt3__16localeC1ERKS0_S2_i +000000000006cbd0 g DF .text 0000000000000034 _ZN2nn2fs19MountSystemSaveDataEPKcmNS0_6UserIdE +000000000017551c w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm40ELm4ELl0EEEEEELm0ELm40ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm40ELm4EEEj +00000000000cbb34 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000032621c g DF .text 0000000000000048 _ZNSt13exception_ptraSERKS_ +000000000015ebf8 g DF .text 0000000000000094 _ZN2nn4pctl18PairingAccountInfo15GetAccountStateEPNS0_19PairingAccountStateE +000000000097c0e0 w DO .data 0000000000000018 _ZTINSt3__114codecvt_bynameIcc11__mbstate_tEE +0000000000328158 g DF .text 0000000000000050 _ZNSt3__121__horizon_thread_data14allocate_stackEv +000000000008a1f0 g DF .text 0000000000000044 _ZNK2nn3mem17StandardAllocator18GetAllocatableSizeEv +00000000000bfd40 g DF .text 0000000000000028 _ZN2nn7account28NetworkServiceAccountManagerC2ERKNS0_3UidEPNS0_4baas24IManagerForSystemServiceE +00000000000c8ca0 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service20IApplicationAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000035b0f4 g DF .text 0000000000000088 _ZNSt3__115numpunct_bynameIwEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +0000000000234e74 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E46_nn_sf_sync_CancelSixAxisSensorUserCalibrationENS5_6system25UniqueSixAxisSensorHandleE +00000000002cdfa4 g DF .text 000000000000002c _ZN7android19initialize_string16Ev +00000000000ce4c0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE39_nn_sf_sync_GetProcessWindingControllerENS0_3OutINS0_13SharedPointerINS6_25IProcessWindingControllerEEEvEE +000000000032f068 w DF .text 0000000000000014 _ZTv0_n24_NSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev +00000000003614cc g DF .text 0000000000000030 _ZNSt3__121recursive_timed_mutexC2Ev +00000000003e791c g DF .text 000000000000006c __nnmusl_pthread_attr_setschedparam +000000000009bcac g DF .text 000000000000003c _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor7GetSendEi +00000000007ad684 g DO .rodata 0000000000000408 _ZN2nn4util6detail15AtanSampleTableE +00000000009532d8 g DO .data 0000000000000040 _ZTVN2nn3ngc6detail11InputStreamE +00000000009795d8 w DO .data 0000000000000050 _ZTVNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE +000000000021a9e8 g DF .text 000000000000007c _ZN2nn3hid6detail41EnableUnintendedHomeButtonInputProtectionERKjb +000000000016c864 g DF .text 0000000000000080 _ZN2nn8settings6detail27SetBluetoothDevicesSettingsEPKNS0_6system24BluetoothDevicesSettingsEi +00000000001c3248 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw16SetFavoriteColorEi +00000000001d37c8 g DF .text 00000000000000e4 _ZN2nn2vi20ListDisplayRgbRangesEPNS0_8RgbRangeEiPKNS0_7DisplayE +0000000000233c9c w DF .text 0000000000000120 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm16ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEEEEELm16ELm16ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm16ELm4EEENSL_23InRawClientArgumentTypeILm8ELm8EvEENSO_ILm4ELm4EvEEj +0000000000140fe4 g DF .text 0000000000000010 _ZN2nn3ngc15ProfanityFilter16CleanUpVariablesEv +000000000016d294 g DF .text 0000000000000070 _ZN2nn8settings6detail18GetFirmwareVersionEPNS0_6system15FirmwareVersionE +00000000001768bc w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm36ELm1ELl0EEEEEELm36ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm36ELm1EvEEj +0000000000081214 g DF .text 00000000000000b4 nnmem_nlib_physical_free +000000000097d758 g DO .data 0000000000000028 _ZTVSt12length_error +000000000003beb8 g DF .text 000000000000004c _ZN2nn4util8BitArray3AndEPS1_RKS1_S4_ +000000000014b61c g DF .text 0000000000000014 _ZN2nn3ngc6detail17MemoryInputStreamD2Ev +0000000000180778 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E38_nn_sf_sync_GetStandardUserSystemClockENS0_3OutINS0_13SharedPointerINS7_12ISystemClockEEEvEE +00000000001c676c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_FormatEv +0000000000395960 g DF .text 0000000000000094 __cxa_get_globals +0000000000145014 g DF .text 0000000000000068 _ZN2nn3ngc6detail14ContentsReader14GetVersionDataEPvj +00000000001ca600 g DF .text 00000000000000c8 _ZN2nn5swkbd6detail18InlineKeyboardImpl12SendRequest_ENS0_14RequestCommandEPKvm +0000000000270138 g DF .text 0000000000000020 NvRmMemWrite +0000000000a80680 g DO .bss 0000000000000004 _ZNSt3__18ios_base9__xindex_E +00000000000d1b30 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm40ELm8ELl0EEEEEELm0ELm40ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm40ELm8EEEj +00000000001d32fc g DF .text 0000000000000070 _ZN2nn2vi20SetDisplayPowerStateEPNS0_7DisplayENS0_10PowerStateE +0000000000082190 g DF .text 0000000000000088 nnmem_nlib_dir_read +00000000003a24ec g DF .text 000000000000002c __floatundidf +000000000097cff0 g DO .data 0000000000000020 _ZTTNSt3__110ostrstreamE +00000000009457c8 g DO .data 0000000000000038 _ZTVN2nn2os6detail22MultiWaitHolderOfEventE +0000000000947950 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEEE +000000000094ccf0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000822dda g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5punctE +0000000000091324 g DF .text 0000000000000004 nnosGetThreadNamePointer +0000000000008108 w DF .text 00000000000000dc _ZN2nn6crypto6detail11XtsModeImplINS1_20XtsModeGenericHelperEE6UpdateEPvmPKvm +00000000000983a0 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENSB_ILm8ELm8ELl16EEEEEELm24ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESM_SM_j +00000000000d0a90 g DF .text 0000000000000024 _ZN2nn3apm28GetInternalManagerPrivilegedEv +000000000031454c g DF .text 0000000000000048 _ZN2nn3fgm8Debugger21GetSystemEventPointerEv +00000000002860b8 g DF .text 0000000000000010 nvgr_get_stereo_info +0000000000297e8c g DF .text 00000000000000d0 _ZN7android12BpMemoryHeapC2ERKNS_2spINS_7IBinderEEE +00000000001c5bc0 g DF .text 0000000000000040 _ZNK2nn3mii15PrivateDatabase9FindIndexERKNS0_8CreateIdEb +000000000006f0dc g DF .text 000000000000005c _ZN2nn4lmem13AdjustExpHeapEPNS0_6detail8HeapHeadE +00000000000fcdc8 g DF .text 00000000000001a8 silk_process_NLSFs +00000000000b9998 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +0000000000822dde g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5blankE +000000000008ce6c g DF .text 0000000000000010 _ZN2nn2os11GetHostArgvEv +00000000000c1ab0 g DF .text 0000000000000030 _ZN2nn7account31NintendoAccountLinkageProcedureC1Ev +00000000007f6210 g DO .rodata 0000000000000018 _ZN2nn3mii6detail14EyeShadowColorE +0000000000318c54 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_SetVoltageEnabledEib +000000000002e734 g DF .text 000000000000006c _ZN2nn5image11JpegDecoder6DecodeEPvmiS2_m +00000000002ac65c g DF .text 00000000000005ec _ZN7android19BufferQueueConsumer13acquireBufferEPNS_22IGraphicBufferConsumer10BufferItemEl +00000000001ae478 g DF .text 000000000000056c _ZN2nn5audio26I3dl2Reverb6ChannelMonoMixEPNS0_16I3dl2ReverbStateEPPKiPPij +00000000000c1e3c g DF .text 0000000000000030 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureC2EOS1_ +000000000011867c g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder17GetBitRateControlEv +000000000024ed00 g DF .text 0000000000000014 _ZN2nn6capsrv12LibraryStateC2Ev +0000000000264f6c g DF .text 0000000000000058 _ZN2nv21GetGraphicsMemoryInfoEPNS_10MemoryInfoE +00000000001b9a64 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw7SetEyeXEi +000000000033b7e8 w DF .text 00000000000001e0 _ZNSt3__19__num_getIcE17__stage2_int_prepERNS_8ios_baseEPcRc +0000000000091320 g DF .text 0000000000000004 nnosSetThreadNamePointer +00000000003146d4 g DF .text 0000000000000060 _ZN2nn3fgm8DebuggerD2Ev +00000000000cfdc4 w DF .text 00000000000000b0 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm100EE27InitializeShimLibraryHolderINS_2am7service24IApplicationProxyServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENKUlPvE_clESG_ +000000000016ccd4 g DF .text 0000000000000070 _ZN2nn8settings6detail23GetEciDeviceCertificateEPNS0_7factory24EccB233DeviceCertificateE +0000000000072cc0 g DF .text 00000000000001c0 nnmem_nlib_memchr +0000000000162ddc w DF .text 0000000000000260 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSG_ILm4ELm4ELl8EEENSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm12ELb0EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm4EEENS2_27OutHandleClientArgumentTypeENSW_ILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000121ce8 g DF .text 000000000000002c _ZN2nn7friends12AsyncContextD2Ev +00000000002707dc g DF .text 0000000000000004 NvRmMemCacheListSyncForCpu +00000000001bcd94 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetMouthTypeEi +00000000001bae88 g DF .text 000000000000005c _ZN2nn3mii6detail10NicknameLe7ConvertEPS2_RKNS0_8NicknameE +000000000012f898 w DF .text 0000000000000174 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_21OutHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSF_ILm4ELm4ELl4EEEEEELm8ELm4ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSN_27OutHandleClientArgumentTypeENSN_23InRawClientArgumentTypeILm4ELm4EvEESS_j +00000000000453dc g DF .text 000000000000000c _ZN2nn4diag29InitializeAbortObserverHolderEPNS0_19AbortObserverHolderEPFvRKNS0_9AbortInfoEE +00000000001a3e00 g DF .text 00000000000000ec _ZN2nn5audio6server10MixContext27UpdateDistancesFromFinalMixEv +000000000001eb44 g DF .text 0000000000000068 _ZN2nn5image6detail4jpeg22jinit_input_controllerEPNS2_22jpeg_decompress_structE +00000000002c888c g DF .text 0000000000000230 sync_create_nvrm_mapping +00000000008057b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi147EE4MaskE +000000000022ff70 g DF .text 0000000000000008 _ZNK2nn3hid15VibrationPlayer18GetLoopEndPositionEv +00000000001a2704 g DF .text 0000000000000018 _ZNK2nn5audio6server12BehaviorInfo51IsAudioRenererProcessingTimeLimit75PercentSupportedEv +000000000017f354 g DF .text 0000000000000094 _ZN2nn4time26StandardNetworkSystemClock20IsAccuracySufficientEv +00000000001a2d48 g DF .text 0000000000000100 _ZN2nn5audio6server15I3dl2ReverbInfo6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPKNS0_10EffectInfo11InParameterERNS1_10PoolMapperE +00000000003c2bac g DF .text 0000000000000080 iswprint +0000000000073570 g DF .text 0000000000000198 nnmem_nlib_memchr_gt_generic +00000000000b635c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E21_nn_sf_sync_GetResultEv +0000000000255e84 g DF .text 000000000000005c _ZNK2nn3web20SharePageReturnValue13GetPostIdSizeEv +00000000007e02c0 w DO .rodata 00000000000001a9 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15IGeneralServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000002105f4 g DF .text 0000000000000048 get_ttf_table +0000000000804150 w DO .rodata 0000000000000022 _ZTSN2nn3hid6detail15SleepButtonLifoE +00000000009590b8 g DO .data 0000000000000028 _ZTVN2nn5audio6server15I3dl2ReverbInfoE +0000000000977ed8 w DO .data 0000000000000070 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000002f6ac g DF .text 00000000000004c4 _ZN2nn5image11ExifBuilder7AnalyzeEv +0000000000227880 g DF .text 0000000000000090 _ZN2nn3hid6detail23GetActualVibrationValueEPNS0_14VibrationValueERKNS0_21VibrationDeviceHandleE +0000000000396aa4 g DF .text 0000000000000004 _ZNSt9type_infoD0Ev +000000000009ddf4 w DF .text 00000000000000e4 _ZN2nn2sf4hipc6server17HipcServerMessage12SetOutObjectEiONS0_4cmif6server20CmifServerObjectInfoE +0000000000133038 g DF .text 0000000000000058 _ZN2nn4htcs5CloseEi +0000000000133b70 g DF .text 0000000000000188 _ZN2nn4htcs6detail9sendLargeENS_2sf13SharedPointerINS_3tma7ISocketEEEPKvmiRi +000000000018587c g DF .text 000000000000000c _ZN2nn5audio14ResetAuxBufferEPNS0_13AuxBufferInfoE +0000000000090584 g DF .text 0000000000000028 _ZN2nn2os17GetThreadCoreMaskEPiPmPKNS0_10ThreadTypeE +00000000000a1894 g DF .text 0000000000000004 _ZN2nn6socket11GetPeerNameEiP8sockaddrPj +00000000001afb3c g DF .text 00000000000000ac _ZN2nn5audio8ResampleEPiPKiiS1_i +00000000002a9804 g DF .text 0000000000000008 _ZThn16_N7android18BnConsumerListener10onTransactEjRKNS_6ParcelEPS1_j +00000000008051d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi79EE4MaskE +0000000000805918 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout5GreekE +0000000000978cb0 w DO .data 0000000000000018 _ZTIN2nn3pcv19IArbitrationManagerE +000000000094def0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEEE +0000000000955ce0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEvEE +00000000007e6840 w DO .rodata 0000000000000185 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000031d9c g DF .text 000000000000152c nnutilZlib_deflate +00000000000b1ca4 g DF .text 000000000000003c _ZN2nn7account25ShowUserCreatorForStarterEv +00000000002ce438 g DF .text 000000000000002c _ZN7android8String16D1Ev +000000000097b548 g DO .data 0000000000000060 _ZTVNSt3__115__codecvt_utf16IDiLb1EEE +00000000003baa04 g DF .text 0000000000000008 conj +000000000023b0d8 g DF .text 0000000000000044 _ZN2nn8irsensor17RunIrLedProcessorERKNS0_14IrCameraHandleERKNS0_20IrLedProcessorConfigE +00000000000a5c20 g DF .text 0000000000000058 _ZN2nn6socket6detail26DestroyClientMonitorByHipcEPNS_2sf13SharedPointerINS0_2sf7IClientEEE +000000000022d58c g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm6EEEvPNS0_16TouchScreenStateIXT_EEE +0000000000060e24 g DF .text 0000000000000134 _ZN2nn2fs13EraseGameCardENS0_12GameCardSizeEm +0000000000051f78 g DF .text 0000000000000034 _ZN2nn2fs26GetContentStorageMountNameENS0_16ContentStorageIdE +000000000008f594 g DF .text 0000000000000008 _ZN2nn2os24FinalizeReaderWriterLockEPNS0_20ReaderWriterLockTypeE +0000000000125fa8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_ChangeFriendFavoriteFlagERKNS_7account3UidENSL_23NetworkServiceAccountIdEb +00000000001bcd68 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw7SetEyeYEi +00000000008048d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi7EE4MaskE +0000000000174e70 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_SetHeadphoneVolumeWarningCountEi +000000000021eee8 g DF .text 000000000000004c _ZN2nn3hid6detail33InitializeSharedMemoryForRingLifoEPNS_2os16SharedMemoryTypeEm +00000000002328c4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E38_nn_sf_sync_EnableUsbFullKeyControllerEb +0000000000986e78 g DO .data 0000000000000004 optind +0000000000218550 g DF .text 0000000000000208 _ZN2nn3hid6detail21GetJoyXpadRightStatesEPiPNS0_12JoyXpadStateEiRKNS0_9JoyXpadIdE +0000000000070e94 g DF .text 000000000000008c _ZN2nn4lmem6detail18ExtendUnitHeapAreaEPNS1_8HeapHeadEm +000000000015d1b0 g DF .text 0000000000000058 _ZN2nn4pctl19GenerateInquiryCodeEPNS0_11InquiryCodeE +0000000000186370 g DF .text 000000000000005c _ZN2nn5audio22IsBufferMixerRemovableEPKNS0_15BufferMixerTypeE +0000000000196584 g DF .text 00000000000000e4 _ZN2nn5audio49CreateFinalOutputRecorderManagerForDebuggerByHipcEv +00000000000cab2c w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E25_nn_sf_sync_CreateStorageENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEEl +000000000014b0e4 g DF .text 00000000000001f0 _ZN2nn3ngc6detail12OutputStream6Write_EPKvm +00000000001d2594 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000398534 g DF .text 0000000000000084 __cxa_throw +0000000000329b90 w DF .text 0000000000000014 _ZTv0_n24_NSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev +00000000003e7e1c g DF .text 0000000000000074 __nnmusl_pthread_setschedprio +00000000001862e4 g DF .text 0000000000000010 _ZN2nn5audio20GetBufferMixerVolumeEPKNS0_15BufferMixerTypeEi +00000000008058d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi231EE4MaskE +0000000000396764 g DF .text 0000000000000054 _ZNSt15underflow_errorD2Ev +00000000003a9738 w DF .text 00000000000000ec freopen64 +0000000000361a3c w DF .text 0000000000000004 _ZdaPv +00000000009affd8 w DO .bss 0000000000000008 _ZGVZN2nn4bcat6detail17ShimLibraryGlobal11GetInstanceEvE10s_Instance +000000000018c094 g DF .text 0000000000000030 _ZN2nn5audio17SetVoicePlayStateEPNS0_9VoiceTypeENS1_9PlayStateE +0000000000234e98 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E40_nn_sf_sync_GetUniquePadBluetoothAddressENS0_3OutINS_9bluetooth7AddressEvEENS5_6system11UniquePadIdE +00000000002cc23c g DF .text 00000000000000cc _ZN7android6Region13operationSelfERKS0_iii +000000000004e798 g DF .text 0000000000000054 _ZN2nn2fs6detail14CheckMountNameEPKc +000000000036d780 g DF .text 0000000000000018 _ZNSt3__121__libcpp_mutex_unlockEPN2nn2os9MutexTypeE +0000000000065c2c w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE19DoGetTotalSpaceSizeEPlPKc +0000000000055a10 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEEEEELm0ELm0ELb0EEESI_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001c681c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +00000000003c5d94 g DF .text 0000000000000054 posix_memalign +00000000000839bc g DF .text 0000000000000088 _ZN2nn7nlibsdk4heap14TlsHeapCentral18FreeSpanToSpanPageEPNS1_4SpanEPNS1_8SpanPageE +00000000002d0200 g DF .text 00000000000000d4 _ZN7android7String811setPathNameEPKc +000000000094e2f0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IApplicationProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000168ff8 g DF .text 0000000000000074 _ZN2nn8settings7factory22GetGameCardCertificateEPNS1_19GameCardCertificateE +0000000000358788 g DF .text 0000000000000068 _ZNKSt3__114__codecvt_utf8IwE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_ +000000000015dde4 g DF .text 000000000000005c _ZN2nn4pctl38UpdateFreeCommunicationApplicationListEPKNS0_32FreeCommunicationApplicationInfoEi +000000000023c48c w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E17GetCmifBaseObjectEv +0000000000074660 g DF .text 0000000000000134 nnmem_nlib_strnlen_generic +000000000018d8f0 g DF .text 000000000000000c _ZN2nn5audio6common19WorkBufferAllocatorC2EPvm +0000000000216b1c g DF .text 00000000000000d0 _ZN2nn3hid6detail17InitializeGestureEv +000000000006e458 g DF .text 000000000000009c _ZN2nn3htc43WaitUntilTargetEnvironmentVariableAvailableENS_8TimeSpanE +000000000002a454 g DF .text 0000000000000004 _ZN2nn5image6detail4jpeg15jpeg_free_largeEPNS2_18jpeg_common_structEPvm +0000000000183f34 w DF .text 0000000000000044 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_ListAddOnContentByApplicationIdENS0_3OutIivEERKNS0_8OutArrayIiEEiiNS_3ncm13ApplicationIdE +00000000003a837c g DF .text 00000000000003b8 dcngettext +0000000000124548 g DF .text 000000000000014c _ZN2nn7friends6detail9CallAsyncEPNS0_12AsyncContextEPKcPFNS_6ResultEPNS1_3ipc14IFriendServiceEPvEPFvPKvSA_mESE_ +00000000002b4c0c g DF .text 000000000000000c _ZNK7android19IGraphicBufferAlloc22getInterfaceDescriptorEv +00000000000ac740 g DF .text 0000000000000068 _ZN2nn6socket8resolver3tls10InitializeEv +00000000000bb240 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE29_nn_sf_sync_CheckAvailabilityEv +0000000000346530 g DF .text 0000000000000094 _ZNSt3__110__time_putD1Ev +000000000082e3d8 g DO .rodata 0000000000000040 __c_locale +00000000003350f8 w DF .text 0000000000000480 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__do_get_signedIxEES4_S4_S4_RNS_8ios_baseERjRT_ +0000000000971c98 g DO .data 0000000000000250 _ZTVN7android17BnSurfaceComposerE +0000000000396688 g DF .text 0000000000000004 _ZNSt9exceptionD2Ev +00000000000926bc g DF .text 000000000000003c _ZN2nn2os6detail17MemoryHeapManager25SplitFreeMemoryNodeUnsafeENS_4util13IntrusiveListINS1_14FreeMemoryNodeENS3_29IntrusiveListMemberNodeTraitsIS5_XadL_ZNS5_6m_nodeEEES5_EEE8iteratorEm +0000000000958ac0 w DO .data 0000000000000038 _ZTIN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_EE +0000000000008100 w DF .text 0000000000000008 _ZN2nn6crypto6detail11XtsModeImplINS1_20XtsModeGenericHelperEEC2Ev +0000000000186724 g DF .text 0000000000000048 _ZN2nn5audio11RemoveDelayEPNS0_19AudioRendererConfigEPNS0_9DelayTypeEPNS0_12FinalMixTypeE +00000000001b5c58 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor9GetHeightEv +00000000003153bc g DF .text 0000000000000088 _ZN2nn4gpio13BindInterruptEPNS_2os15SystemEventTypeEPNS0_14GpioPadSessionE +00000000001b6658 g DF .text 0000000000000014 _ZN2nn3mii16GetNoselineColorENS0_9GammaTypeE +0000000000165954 g DF .text 0000000000000020 _ZN2nn5prepo16SystemPlayReport3AddEPKcd +0000000000a80cb0 w DO .bss 0000000000000010 _ZNSt3__110moneypunctIcLb1EE2idE +0000000000186004 g DF .text 000000000000008c _ZN2nn5audio14AddBufferMixerEPNS0_19AudioRendererConfigEPNS0_15BufferMixerTypeEPNS0_12FinalMixTypeE +0000000000066f68 g DF .text 0000000000000020 _ZN2nn2fs21MountSaveDataForDebugEPKc +00000000002552c8 g DF .text 00000000000000b4 _ZN2nn3web13ShowSharePageEPNS0_20SharePageReturnValueERKNS0_16ShowSharePageArgE +0000000000149640 g DF .text 0000000000000064 _ZN2nn3ngc6detail2Bp6ImportEPNS1_12BinaryReaderE +00000000000b9cec w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE49_nn_sf_sync_GetBaasAccountManagerForSystemServiceENS0_3OutINS0_13SharedPointerINS5_4baas24IManagerForSystemServiceEEEvEERKNS5_3UidE +000000000094daa0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19ILibraryAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000165914 g DF .text 0000000000000020 _ZN2nn5prepo16SystemPlayReport3AddEPKcl +000000000022bc20 g DF .text 0000000000000064 _ZN2nn3hid6system21GetUniquePadsFromNpadEPNS1_11UniquePadIdEiRKj +0000000000092324 g DF .text 00000000000000b0 _ZN2nn2os6detail10TlsManager20InvokeTlsDestructorsEv +0000000000160f74 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E35_nn_sf_sync_GetAccountMiiImageAsyncENS0_3OutINS6_9AsyncDataEvEENSL_INS0_12NativeHandleEvEENSL_IjvEERKNS0_9OutBufferERKNS6_22PairingAccountInfoBaseE +00000000000ee75c g DF .text 0000000000000164 renormalise_vector +000000000012d690 g DF .text 0000000000000040 _ZN2nn2fs36CorruptSaveDataThumbnailFileForDebugEmRKNS_7account3UidE +000000000097a0c8 w DO .data 0000000000000030 _ZTVNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000003e4554 g DF .text 0000000000000038 timespec_get +000000000009067c g DF .text 0000000000000040 _ZN2nn2os18SdkAllocateTlsSlotEPNS0_7TlsSlotEPFvmE +00000000000c12ac g DF .text 0000000000000048 _ZN2nn7account42NintendoAccountAuthorizationRequestContextC2EOS1_ +00000000001d9d10 g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine8FinalizeEv +000000000018c158 g DF .text 0000000000000054 _ZN2nn5audio17SetVoiceMixVolumeEPNS0_9VoiceTypeEPNS0_12FinalMixTypeEfii +00000000000d40c0 g DF .text 000000000000000c _ZN2nn6applet14ReleaseStorageENS0_13StorageHandleE +000000000024fd34 g DF .text 0000000000000044 _ZN2nn3ldn24GetIpv4AddressForMonitorEPNS0_11Ipv4AddressEPNS0_10SubnetMaskE +00000000000473d4 g DF .text 0000000000000048 _ZN2nn2fs23ScopedAutoAbortDisablerC2Ev +0000000000174a10 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_GetDeviceNickNameENS0_3OutINS5_6system14DeviceNickNameEvEE +000000000005f8f8 g DF .text 0000000000000038 _ZN2nn2fs6detail24FileServiceObjectAdapter7DoWriteElPKvmRKNS0_11WriteOptionE +0000000000182e38 g DF .text 0000000000000078 _ZN2nn3ntc4shim29ResumeAutonomicTimeCorrectionEv +00000000001eb4ec g DF .text 0000000000000294 emboss_graymap +0000000000361290 g DF .text 0000000000000094 _ZNSt3__111timed_mutexD1Ev +00000000001695cc g DF .text 0000000000000044 _ZN2nn8settings6system24SetVibrationMasterVolumeEf +0000000000215110 g DF .text 00000000000000cc _ZN2nn3hid6detail23InitializeCaptureButtonEv +000000000003b750 g DF .text 0000000000000014 _ZN2nn4util16BinaryFileHeader18GetRelocationTableEv +0000000000150534 g DF .text 0000000000000018 _ZN2nn4nifm6detail29TemporaryNetworkProfileClientD1Ev +00000000001f8c6c g DF .text 0000000000000378 BAZOutlineSmooth +0000000000230fb8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E36_nn_sf_sync_IsFirmwareUpdatingDeviceENS0_3OutIbvEENS5_6system11UniquePadIdE +00000000001c34f8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetMoleTypeEi +00000000001b4fd8 g DF .text 0000000000000060 _ZN2nn2la28StartLibraryAppletBackgroundEPKvmNS_6applet8AppletIdEb +00000000002504e8 g DF .text 000000000000003c _ZN2nn3ldn16GetNetworkConfigEPNS0_13NetworkConfigE +00000000000cd868 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IOverlayAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +0000000000812260 w DO .rodata 0000000000000029 _ZTSN2nn3ldn6detail22IMonitorServiceCreatorE +0000000000042258 g DF .text 0000000000000020 _ZN2nn4edid6detail30GetDetailedTimingHsyncPolarityEh +000000000017eab8 g DF .text 000000000000001c _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTaskC1Ev +0000000000319a30 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E24_nn_sf_sync_SetClockRateEij +00000000000b4d44 w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm1ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000240c94 w DF .text 00000000000003f8 _ZN22nerd_gillette_internal5otete7jaimev29SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_20ProtuberanceInPacketERT_ +000000000032bd3c w DF .text 000000000000014c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE8readsomeEPcl +000000000039c92c g DF .text 0000000000000024 _Unwind_GetGR +00000000000e8ea4 g DF .text 0000000000000138 ec_encode +00000000001f0160 g DF .text 00000000000000b8 FixSqrt +00000000000514a0 g DF .text 0000000000000098 _ZN2nn2fs18InvalidateBisCacheEv +0000000000286750 g DF .text 000000000000000c NvRmGpuDeviceZbcGetTableSize +00000000003e7d24 g DF .text 0000000000000050 __nnmusl_GetThreadNamePointer +0000000000946c10 w DO .data 0000000000000018 _ZTIN2nn6socket8resolver9IResolverE +0000000000327f00 g DF .text 00000000000000c0 _ZNSt3__120__threads_data_queueD1Ev +00000000008232e0 g DO .rodata 0000000000000022 _ZTSNSt3__115__codecvt_utf16IDsLb1EEE +000000000003d49c g DF .text 0000000000000084 _ZN2nn4util40InitializeStreamingDecompressZlibContextEPNS0_30StreamingDecompressZlibContextE +000000000036de74 g DF .text 000000000000001c _ZNSt13__libcxx_shim19__libcxx_shim_ver_119__allocate_tls_slotEPNS0_11__tls_key_tEPFvmE +0000000000095f18 g DF .text 0000000000000050 _ZNK2nn2os6detail26ThreadManagerImplByHorizon17SetThreadCoreMaskEPNS0_10ThreadTypeEim +000000000006f024 g DF .text 0000000000000054 _ZN2nn4lmem13FreeToExpHeapEPNS0_6detail8HeapHeadEPv +0000000000091344 g DF .text 0000000000000004 nnosFinalizeSemaphore +000000000025bd28 g DF .text 000000000000000c NvMemoryProfilerBeginFree +00000000009510f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000361f34 g DF .text 000000000000004c _ZNKSt3__123__match_any_but_newlineIcE6__execERNS_7__stateIcEE +00000000008044e0 w DO .rodata 0000000000000061 _ZTSN2nn3hid6detail8RingLifoINS1_33SixAxisSensorUserCalibrationStateELi1ENS1_13AtomicStorageIS3_EEEE +00000000002a61e4 g DF .text 0000000000000008 ashmem_create_region +0000000000943c40 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf24ISaveDataTransferManagerE +00000000007a8670 g DO .rodata 0000000000000019 _ZTSN2nn5image11ExifBuilderE +0000000000160c20 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E37_nn_sf_sync_GetPlayTimerRemainingTimeENS0_3OutINS_12TimeSpanTypeEvEE +000000000021cab0 g DF .text 000000000000007c _ZN2nn3hid6detail24SetAccelerometerPlayModeENS0_19SixAxisSensorHandleENS0_21AccelerometerPlayModeE +00000000003e1bb0 g DF .text 0000000000000138 memset +00000000001cdfd4 w DF .text 0000000000000160 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_21OutHandleArgumentInfoILi0ELi1EEEEEELm8ELm0ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEESN_NSL_27OutHandleClientArgumentTypeEj +0000000000359458 g DF .text 00000000000000a0 _ZNKSt3__115__codecvt_utf16IDsLb0EE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_ +00000000001d5bb4 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_5visrv2sf21ISystemDisplayServiceEE19FunctionForBoolTypeEv +0000000000222994 g DF .text 0000000000000234 _ZN2nn3hid6detail20GetTouchScreenStatesILm2EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +00000000007b0da0 w DO .rodata 0000000000000031 _ZTSN2nn2sf4hipc6client26Hipc2ClientProxyBaseObjectE +000000000011ce8c g DF .text 00000000000000d8 _ZN2nn7friends10InitializeEv +00000000001247b0 g DF .text 0000000000000080 _ZN2nn7friends6detail20AsyncContextInternal14DeleteInstanceEPS2_ +0000000000166400 g DF .text 000000000000011c _ZN2nn5prepo6detail19PlayReportGenerator11AddKeyValueEPmPKclPhmm +0000000000044d44 g DF .text 0000000000000040 nndetailDiagVLogImplForC +0000000000072a60 g DF .text 0000000000000260 nnmem_nlib_memcmp +00000000001e04d8 g DF .text 00000000000000e0 FSS_get_link_info +000000000006ebc0 w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm64ELm1ELl0EEEEEELm64ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm64ELm1EvEEj +000000000094c7e0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001d5050 g DF .text 00000000000000b8 _ZN2nn2vi13ObjectManager27CreateValidateDisplayHolderEmPKc +000000000004235c g DF .text 0000000000000010 _ZN2nn4edid6detail26IsDetailedTimingInterlacedEh +000000000004c1ec g DF .text 0000000000000100 _ZN2nn2fs15RomFsFileSystem10DoOpenFileEPNSt3__110unique_ptrINS0_3fsa5IFileENS2_14default_deleteIS5_EEEEPKcNS0_8OpenModeE +0000000000070f20 g DF .text 0000000000000024 _ZN2nn4lmem6detail17AllocFromUnitHeapEPNS1_8HeapHeadE +000000000003b844 g DF .text 0000000000000014 _ZN2nn4util16BinaryFileHeader13SetFirstBlockEPNS0_17BinaryBlockHeaderE +0000000000316098 g DF .text 0000000000000004 nngpioGetDirection +000000000012cb5c g DF .text 000000000000004c _ZN2nn2fs13MountSaveDataEPKcRKNS_7account3UidE +000000000015b72c g DF .text 0000000000000074 _ZN2nn2oe43GetUserInactivityDetectionTimeExtensionModeEv +000000000022e83c g DF .text 0000000000000058 _ZN2nn3hid6system14IsUsbConnectedENS1_11UniquePadIdE +000000000024f7d0 g DF .text 00000000000000a0 _ZN2nn3ldn14FinalizeSystemEv +000000000022a0f8 g DF .text 0000000000000054 _ZNK2nn3hid15KeyCodeComposer14GetCompositionEPti +0000000000361a48 w DF .text 0000000000000084 _ZnwmSt11align_val_t +00000000001bc82c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw15GetEyebrowColorEv +00000000000a1d7c g DF .text 00000000000000e0 _ZN2nn6socket6detail7ReallocEPvm +000000000006aa5c g DF .text 0000000000000094 _ZN2nn2fs23SaveDataTransferManager8SetTokenEPKvm +0000000000121b80 g DF .text 000000000000013c _ZN2nn7friends29GetPlayHistoryRegistrationKeyEPNS0_26PlayHistoryRegistrationKeyENS_7account23NetworkServiceAccountIdEb +000000000012d6d0 g DF .text 0000000000000078 _ZN2nn2fs23SaveDataTransferManager20OpenSaveDataImporterEPNSt3__110unique_ptrINS0_16SaveDataImporterENS2_14default_deleteIS4_EEEEPlPKvmRKNS_7account3UidENS0_15SaveDataSpaceIdE +000000000036d3f4 g DF .text 0000000000000018 _ZNSt3__129__libcpp_recursive_mutex_lockEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +000000000011919c g DF .text 0000000000000028 _ZN2nn5codec6detail20GetLookAheadInternalEP11OpusEncoder +000000000036835c g DF .text 00000000000001e4 _ZNSt3__15stollERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPmi +00000000001bc804 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetHairColorEv +0000000000803e20 w DO .rodata 0000000000000052 _ZTSN2nn3hid6detail8RingLifoINS0_17NpadJoyRightStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000003c3d5c g DF .text 0000000000000008 catclose +000000000014b500 g DF .text 00000000000000c4 _ZN2nn3ngc6detail12OutputStream12WriteGather_EPKNS1_7FdIoVecEi +000000000010a55c g DF .text 0000000000000134 opus_decoder_create +000000000016ae54 g DF .text 0000000000000044 _ZN2nn8settings6system29GetDeviceTimeZoneLocationNameEPNS_4time12LocationNameE +00000000007c4330 w DO .rodata 0000000000000032 _ZTSN2nn7account34NetworkServiceAccountAdministratorE +00000000002203fc w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_17NpadJoyRightStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +00000000002cf048 g DF .text 000000000000002c _ZN7android7String8C1EPKDsm +00000000009426f0 w DO .data 0000000000000018 _ZTIN2nn2sf4hipc6client26Hipc2ClientProxyBaseObjectE +00000000001c3388 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw15SetEyebrowColorEi +00000000000b7808 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE24_nn_sf_sync_ListAllUsersERKNS0_8OutArrayINS5_3UidEEE +00000000003c7f90 g DF .text 000000000000018c cosf +00000000000b7bcc w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E36_nn_sf_sync_GetProfileUpdateNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +00000000002c3b0c g DF .text 0000000000000024 _ZNK7android14SurfaceControl20clearLayerFrameStatsEv +000000000039c954 g DF .text 0000000000000028 _Unwind_GetIP +00000000003c811c g DF .text 00000000000000ac cosh +000000000004cfa4 g DF .text 000000000000002c _ZN2nn2fs6detail12FileAccessor16UpdateLastResultENS_6ResultE +00000000001752a4 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object11DisposeImplEv +00000000001f8b04 g DF .text 0000000000000168 RoundFuncCall +00000000000b9f9c w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE33_nn_sf_sync_LoadSaveDataThumbnailENS0_3OutIjvEERKNS0_9OutBufferERKNS5_3UidENS_13ApplicationIdE +00000000001d0288 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_SetLayerVisibilityEmb +000000000029dd04 g DF .text 0000000000000014 _ZNK7android6Parcel8dataSizeEv +00000000009479e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000007eef70 w DO .rodata 0000000000000035 _ZTSN2nn5audio6detail32IAudioRendererManagerForDebuggerE +00000000003c8294 g DF .text 00000000000000f4 cosl +00000000000ad030 g DF .text 000000000000000c _ZN2nn6socket8resolver13GetHostByNameEPKc +000000000016be70 g DF .text 0000000000000070 _ZN2nn8settings6detail22GetPrimaryAlbumStorageEPi +0000000000a83490 w DO .bss 0000000000000008 environ +00000000009a2dd0 g DO .bss 0000000000000008 _ZN2nn2fs16g_DefaultContextE +00000000000d8814 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +00000000003a7c5c g DF .text 0000000000000000 sqrtf +00000000001a79a0 g DF .text 0000000000000030 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl24GetActiveAudioDeviceNameERKNS_2sf9OutBufferE +00000000001a81e8 g DF .text 0000000000000004 _ZN2nn5audio3dsp19InvalidateDataCacheEPvmb +0000000000979688 w DO .data 0000000000000010 _ZTTNSt3__113basic_ostreamIwNS_11char_traitsIwEEEE +00000000007b9030 w DO .rodata 0000000000000023 _ZTSN2nn2sf4hipc6detail12IHipcManagerE +0000000000059da4 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEENSI_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEENST_ILm8ELm8EvEEj +00000000000bb260 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE24_nn_sf_sync_GetAccountIdENS0_3OutINS5_23NetworkServiceAccountIdEvEE +0000000000091440 g DF .text 0000000000000004 nnosInitializeMultiWaitHolderForEvent +00000000001caa20 g DF .text 0000000000000024 _ZN2nn5swkbd6detail18InlineKeyboardImpl11SetUtf8ModeEb +00000000001cea60 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_GetSharedFrameBufferAcquirableEventENS0_3OutINS0_12NativeHandleEvEENS_2vi7fbshare17SharedLayerHandleE +00000000003160a0 g DF .text 0000000000000004 nngpioGetInterruptMode +00000000003cf114 g DF .text 0000000000000030 sqrtl +0000000000183738 g DF .text 0000000000000010 _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImpl6CancelEv +00000000001491b8 g DF .text 000000000000006c _ZNK2nn3ngc6detail2Bp8FindOpenEj +00000000008254c8 g DO .rodata 0000000000000003 _ZTSDh +000000000094e600 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000010a3b8 g DF .text 00000000000001a4 opus_decoder_init +000000000011f810 g DF .text 0000000000000168 _ZN2nn7friends22GetFriendCandidateListEPNS0_12AsyncContextEPiPNS0_15FriendCandidateERKNS_7account3UidEiNS0_19FriendCandidateTypeE +0000000000396878 g DF .text 000000000000005c _ZNSt16invalid_argumentD0Ev +0000000000825518 g DO .rodata 0000000000000003 _ZTSDi +0000000000948280 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000009591f0 w DO .data 0000000000000018 _ZTIN2nn5audio6server8SinkInfoINS0_6common23CircularBufferParameterENS1_23CircularBufferSinkStateEEE +00000000001a553c g DF .text 0000000000000044 _ZNK2nn5audio6server15SplitterContext13UsingSplitterEv +00000000001fa9ac g DF .text 0000000000000104 init_phantom_points +00000000003966ac g DF .text 0000000000000054 _ZNSt12out_of_rangeD1Ev +0000000000318bc4 w DF .text 0000000000000040 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_GetPossibleClockRatesENS0_3OutIivEERKNS0_8OutArrayIjEESH_ii +0000000000825404 g DO .rodata 0000000000000003 _ZTSDn +00000000000dd8cc g DF .text 0000000000000044 celt_decoder_get_size +00000000002c925c g DF .text 0000000000000014 _ZNK7android10FrameStats16getFlattenedSizeEv +0000000000801590 w DO .rodata 00000000000000b3 _ZTSN2nn2sf4cmif6client6detail9CmifProxyIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000825508 g DO .rodata 0000000000000003 _ZTSDs +00000000003dfd64 g DF .text 000000000000009c .protected __overflow +00000000000a1c40 g DF .text 0000000000000004 nnsocketCancel +00000000000b9b68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE28_nn_sf_sync_GetProfileDigestENS0_3OutINS5_13ProfileDigestEvEERKNS5_3UidE +00000000000bff20 g DF .text 0000000000000024 _ZN2nn7account28NetworkServiceAccountManager26GetNetworkServiceAccountIdEPNS0_23NetworkServiceAccountIdE +000000000021da58 g DF .text 0000000000000098 _ZN2nn3hid6detail37SetShiftAccelerometerCalibrationValueERKNS0_19SixAxisSensorHandleEff +0000000000227404 g DF .text 0000000000000078 _ZN2nn3hid6detail20IsVibrationPermittedEPb +00000000007c8900 w DO .rodata 0000000000000119 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEEE +0000000000348b54 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb1EE16do_decimal_pointEv +0000000000804ad0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi23EE4MaskE +0000000000962cb0 g DO .data 0000000000000018 _ZTIN7android12BnMemoryHeapE +00000000003e1520 g DF .text 0000000000000004 bcmp +0000000000116af0 g DF .text 0000000000000038 opus_multistream_encode_float +00000000001e0100 g DF .text 00000000000000c8 FSS_font_name_with_offset +000000000097b008 g DO .data 0000000000000060 _ZTVNSt3__117__widen_from_utf8ILm16EEE +00000000003e7590 g DF .text 0000000000000018 __nnmusl_MutexDestroy +000000000003bbe4 g DF .text 0000000000000018 _ZN2nn4util15RelocationTable13CalculateSizeEii +000000000016dc1c g DF .text 0000000000000070 _ZN2nn8settings6detail14GetLcdVendorIdEPj +00000000003c3dd0 g DF .text 0000000000000034 freelocale +000000000006ae74 g DF .text 0000000000000024 _ZN2nn2fs30SaveDataTransferSizeCalculator23QuerySaveDataExportSizeERKNS0_12SaveDataInfoE +000000000021909c g DF .text 0000000000000244 _ZN2nn3hid6detail26GetSixAxisSensorLeftStatesEPiPNS0_18SixAxisSensorStateEiRKNS0_9JoyXpadIdE +0000000000045e54 g DF .text 00000000000000dc _ZN2nn4diag6detail17GetModulePathImplEPcmm +0000000000949588 w DO .data 0000000000000020 _ZTVN2nn7account34NetworkServiceAccountAdministratorE +00000000000ca5dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_GetHandleENS0_3OutINS0_12NativeHandleEvEENSK_ImvEE +000000000019ec24 g DF .text 0000000000000114 _ZN2nn5audio6server13CommandBuffer33GenerateCircularBufferSinkCommandEiPKNS1_12SinkInfoBaseEj +000000000006362c g DF .text 0000000000000100 _ZN2nn2fs27GetAndClearMemoryReportInfoEPNS0_16MemoryReportInfoE +0000000000156dfc g DF .text 0000000000000008 _ZN2nn4nifm7RequestC2ERKNS0_17RequestParametersENS_2os14EventClearModeE +0000000000800f20 w DO .rodata 00000000000000b9 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002500d8 g DF .text 0000000000000034 _ZN2nn3ldn11OpenStationEv +0000000000017ef4 g DF .text 0000000000000194 _ZN2nn5image6detail4jpeg21jpeg_start_decompressEPNS2_22jpeg_decompress_structE +0000000000091340 g DF .text 0000000000000004 nnosInitializeSemaphore +00000000000f59d8 g DF .text 000000000000002c silk_PLC_Reset +0000000000953790 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15IGeneralServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +000000000026a55c g DF .text 0000000000000294 NvRmSurfaceComputeSize +0000000000360d4c g DF .text 0000000000000004 _ZNSt3__114__shared_countD1Ev +0000000000361458 g DF .text 0000000000000074 _ZNSt3__111timed_mutex6unlockEv +0000000000078fe8 g DF .text 000000000000012c nnmem_nlib_mq_readonly +00000000000982a0 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEEEEELm16ELm0ELb1EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESL_j +000000000095d708 w DO .data 0000000000000058 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail18HidTemporaryServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000002c4c00 g DF .text 0000000000000090 _ZN7android8Composer11setPositionERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEff +000000000097a910 g DO .data 0000000000000068 _ZTVNSt3__15ctypeIcEE +0000000000118da0 g DF .text 0000000000000030 _ZN2nn5codec6detail18OpusPacketInternal23GetOpusPacketCodingModeEPNS0_14OpusCodingModeEPKhm +0000000000163bfc g DF .text 0000000000000050 _ZN2nn5prepo6detail7msgpack10WriteMap32EPNS2_17OutputStreamParamEj +000000000094fbd0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001529a4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E26_nn_sf_sync_SetSustainableEbh +0000000000159900 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc38SetChangeEnvironmentIdentifierDisabledEb +0000000000133354 g DF .text 0000000000000068 _ZN2nn4htcs5FcntlEiii +0000000000362bf4 w DF .text 0000000000000014 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev +00000000003c28a4 g DF .text 0000000000000064 iswctype +00000000000937a0 g DF .text 0000000000000014 _ZNK2nn2os6detail34MultiWaitHolderOfInterProcessEvent15GetNativeHandleEPj +0000000000230128 g DF .text 0000000000000044 _ZN2nn3hid15VibrationTargetC1ERKNS0_21VibrationDeviceHandleE +0000000000189330 g DF .text 0000000000000020 _ZN2nn5audio14MemoryPoolInfo7PrepareEPNS1_11InParameterE +00000000001a1f08 g DF .text 0000000000000014 _ZN2nn5audio6server18PerformanceManagerC1Ev +0000000000255c14 g DF .text 000000000000000c _ZN2nn3web20SharePageReturnValueC1Ev +000000000097d5b0 g DO .data 0000000000000018 _ZTISt16bad_array_length +00000000001d0c14 w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi21ELm392EEEEEELm8ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSM_23InRawClientArgumentTypeILm8ELm8EvEENSM_24BufferClientArgumentTypeEj +00000000000c91a8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000006b244 g DF .text 000000000000008c _ZN2nn2fs16SaveDataImporterC1EONS_2sf13SharedPointerINS_5fssrv2sf17ISaveDataImporterEEE +00000000002cbc14 g DF .text 0000000000000018 _ZN7android6Region7xorSelfERKNS_4RectE +000000000097b830 g DO .data 0000000000000018 _ZTINSt3__112ctype_bynameIcEE +0000000000167cb4 g DF .text 0000000000000050 _ZN2nn8settings6system44GetHeadphoneVolumeWarningDisplayedEventCountEv +00000000001cd854 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_OpenDefaultDisplayENS0_3OutImvEE +00000000002c49f8 g DF .text 000000000000002c _ZN7android8Composer27setAnimationTransactionImplEv +000000000036ccd8 g DF .text 0000000000000004 _ZNSt3__112system_errorD1Ev +00000000003c2c2c g DF .text 0000000000000084 __iswprint_l +00000000000c9c68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_NeedsToExitProcessENS0_3OutIbvEE +00000000007b2710 w DO .rodata 0000000000000015 _ZTSN2nn5fssrv2sf5IFileE +00000000000665f0 g DF .text 0000000000000130 _ZN2nn2fs18IsSaveDataExistingENS_3ncm13ApplicationIdERKNS0_6UserIdE +000000000008a75c g DF .text 000000000000007c _ZN2nn3mem19NumberLineAllocator8AddRangeEii +000000000008fa04 g DF .text 00000000000000bc _ZN2nn2os24SdkConditionVariableType9TimedWaitERNS0_12SdkMutexTypeENS_8TimeSpanE +0000000000119140 g DF .text 0000000000000010 _ZN2nn5codec6detail21SetComplexityInternalEP11OpusEncoderi +000000000016584c g DF .text 000000000000009c _ZN2nn5prepo16SystemPlayReport10SetEventIdEPKc +00000000007b8760 g DO .rodata 0000000000000034 _ZTSN2nn2os6detail34MultiWaitHolderOfInterProcessEventE +00000000002c1784 g DF .text 0000000000000024 _ZNK7android7Surface25getIGraphicBufferProducerEv +0000000000071b9c g DF .text 0000000000000088 nnmem_nlib_rwlock_trywrlock +0000000000360d18 g DF .text 0000000000000004 _ZNSt3__112bad_weak_ptrD2Ev +00000000001633ac g DF .text 00000000000007b8 _ZN2nn5prepo6detail7msgpack11ReadCurrentEPNS2_7AnyDataEPNS2_16InputStreamParamE +000000000014edcc g DF .text 00000000000000c4 _ZN2nn3ngc6detail9SparseSet4SwapERS2_ +000000000018c2dc g DF .text 00000000000000c0 _ZN2nn5audio16AppendWaveBufferEPNS0_9VoiceTypeEPKNS0_10WaveBufferE +00000000001cdc94 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_AdjustRefcountEiii +0000000000975f70 g DO .data 0000000000000018 _ZTIN7android16SortedVectorImplE +00000000007adca0 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f13ConstantWhiteE +00000000003e053c g DF .text 0000000000000010 imaxdiv +00000000000228c0 g DF .text 00000000000001a8 _ZN2nn5image6detail4jpeg22jinit_merged_upsamplerEPNS2_22jpeg_decompress_structE +000000000003cad0 g DF .text 0000000000000138 _ZN2nn4util6detail16IntrusiveDicImpl10InsertImplEPNS0_16IntrusiveDicNodeE +000000000036c914 g DF .text 00000000000000c0 _ZNSt3__112system_errorC2ENS_10error_codeE +000000000016aa98 g DF .text 0000000000000044 _ZN2nn8settings6system24SetInitialLaunchSettingsERKNS1_21InitialLaunchSettingsE +00000000001c5768 g DF .text 0000000000000038 _ZNK2nn3mii8Database8GetCountEi +000000000014f544 g DF .text 000000000000005c _ZN2nn3ngc6detail15CompressedArray5ResetEv +00000000002507b0 g DF .text 0000000000000024 _ZN2nn3ldn15MakeIpv4AddressERA4_Kh +000000000019cb08 g DF .text 0000000000000004 _ZN2nn5audio6server24AudioRendererManagerImpl5SleepEv +00000000003e7c24 g DF .text 00000000000000e8 __nnmusl_pthread_setaffinity_np +0000000000294f90 g DF .text 0000000000000080 _ZNK7android7BBinder22getInterfaceDescriptorEv +000000000026feb8 g DF .text 0000000000000008 NvRmMemHandleFromIVCId +00000000000d801c w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_4bcat6detail3ipc15IServiceCreatorENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +00000000001a3508 g DF .text 0000000000000018 _ZN2nn5audio6server10PoolMapperC1Ejb +00000000000473cc g DF .text 0000000000000008 _ZN2nn2fs22AllReturnResultHandlerENS_6ResultE +00000000007e38c0 w DO .rodata 0000000000000103 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000001b902c g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw11GetEyebrowXEv +000000000022bed0 g DF .text 0000000000000064 _ZN2nn3hid13GetNpadStatesEPNS0_17NpadHandheldStateEiRKj +0000000000174b7c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_GetBluetoothEnableFlagENS0_3OutIbvEE +0000000000a80c00 w DO .bss 0000000000000010 _ZNSt3__17collateIcE2idE +00000000001ca9e4 g DF .text 000000000000003c _ZN2nn5swkbd6detail18InlineKeyboardImpl17UnsetUserWordInfoEv +00000000000ce958 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_GetDesiredLanguageENS0_3OutINS_8settings12LanguageCodeEvEE +0000000000118eb0 g DF .text 0000000000000038 _ZN2nn5codec6detail21GetOpusFrameSizeValueENS0_13OpusFrameSizeE +00000000000c90e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_GetAppletStateChangedEventENS0_3OutINS0_12NativeHandleEvEE +0000000000136084 g DF .text 0000000000000018 _ZN2nn2lm6detail20LogPacketTransmitter14PushThreadNameEPKcm +00000000001d4f2c g DF .text 0000000000000038 _ZN2nn2vi24GetLayerIdWithValidationEPKNS0_5LayerE +00000000000477fc g DF .text 0000000000000058 _ZN2nn2fs24HierarchicalRomFileTable19CreateRootDirectoryEv +000000000004edfc g DF .text 00000000000000ec _ZN2nn2fs8ReadFileENS0_10FileHandleElPvmRKNS0_10ReadOptionE +000000000017877c g DF .text 0000000000000094 _ZN2nn3ssl10Connection20SetRenegotiationModeENS1_17RenegotiationModeE +0000000000955180 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000001b8a8c g DF .text 0000000000000014 _ZN2nn3mii6detail11CoreDataRaw11SetNicknameERKNS0_8NicknameE +00000000001c66ec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E24_nn_sf_sync_AddOrReplaceERKNS5_9StoreDataE +000000000017a014 g DF .text 0000000000000024 nnsslConnectionGetVerifyOption +00000000000005a8 w DF .text 0000000000000264 _ZN2nn6crypto6detail11CcmModeImplINS0_12AesEncryptorILm16EEEE10InitializeEPKS4_PKvmllm +00000000000454fc g DF .text 0000000000000058 _ZN2nn4diag24RegisterSdkAbortObserverEPNS0_22SdkAbortObserverHolderE +0000000000946130 w DO .data 0000000000000010 _ZTIN2nn2sf4cmif6server17CmifServerMessageE +000000000022e054 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm6EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +000000000097cfa0 g DO .data 0000000000000050 _ZTVNSt3__110ostrstreamE +0000000000122008 g DF .text 0000000000000030 _ZN2nn7friends16DaemonSuspension6AttachEPNS0_6detail3ipc28IDaemonSuspendSessionServiceE +000000000018b5f4 g DF .text 0000000000000028 _ZN2nn5audio23SplitterDestinationData8FinalizeEv +00000000003c59e4 w DF .text 0000000000000004 wcscoll_l +000000000008c5e8 g DF .text 0000000000000124 _ZN2nn3mem19NumberLineAllocator9GetSizeOfEi +0000000000119160 g DF .text 000000000000003c _ZN2nn5codec6detail24SetFrameSizeTypeInternalEP11OpusEncoderNS0_13OpusFrameSizeE +00000000008223a8 g DO .rodata 0000000000000004 _ZNSt3__18ios_base10scientificE +00000000000edb34 g DF .text 0000000000000274 amp2Log2 +0000000000187b7c g DF .text 000000000000001c _ZN2nn5audio32GetReverbHighFrequencyDecayRatioEPKNS0_10ReverbTypeE +00000000002cf708 g DF .text 000000000000006c _ZN7android7String85setToEPKDim +00000000003dc8e8 g DF .text 00000000000001a8 fflush +00000000007dfe60 w DO .rodata 0000000000000167 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000182d54 g DF .text 0000000000000014 _ZN2nn3ntc4shim38CancelEnsuringNetworkClockAvailabilityEv +00000000001b2f78 g DF .text 0000000000000104 _ZN2nn2ec6detail15ShowShopPageArg14SetCallbackUrlEPKc +00000000002c8c2c g DF .text 0000000000000008 _ZN7android11DisplayEDIDC1Ev +00000000000914b4 g DF .text 0000000000000004 nnosLinkMultiWaitHolder +00000000001a7d7c w DF .text 0000000000000004 _ZN2nn2sf6detail37UnmanagedEmplacedImplHolderBaseGetterINS_5audio6server24AudioRendererManagerImplEvE5Impl27ReleaseEv +00000000003e6e58 g DF .text 00000000000000f4 __nnmusl_ExitThread +0000000000221348 g DF .text 00000000000001d0 _ZN2nn3hid6detail20GetSleepButtonStatesEPiPNS0_6system16SleepButtonStateEi +00000000001a5580 g DF .text 0000000000000034 _ZN2nn5audio6server15SplitterContext25ClearAllNewConnectionFlagEv +000000000023c20c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E30_nn_sf_sync_DeactivateIrsensorENS_6applet20AppletResourceUserIdE +0000000000361b84 g DF .text 0000000000000004 _ZNSt19bad_optional_accessD1Ev +000000000019a178 g DF .text 00000000000000f0 _ZN2nn5audio23OpenFinalOutputRecorderEPNS0_19FinalOutputRecorderEPNS_2os11SystemEventERKNS0_28FinalOutputRecorderParameterERKNS_6applet20AppletResourceUserIdE +000000000018cc24 g DF .text 0000000000000128 _ZN2nn5audio16VoiceInfoManager19FlushVoiceDataCacheEPKNS0_9VoiceInfoE +0000000000326908 g DF .text 0000000000000180 _ZNSt3__117__assoc_sub_state13set_exceptionESt13exception_ptr +0000000000233094 w DF .text 000000000000011c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl16EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEEEEELm24ELm0ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSM_ILm4ELm4EvEESO_SO_j +000000000002d78c g DF .text 00000000000000e0 _ZN2nn5image6detail11GetExifInfoEPPKvPtPKhm +00000000000fcc80 g DF .text 000000000000003c silk_inner_prod_aligned_scale +0000000000235060 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E37_nn_sf_sync_IsFirmwareUpdateAvailableENS0_3OutIbvEENS5_6system11UniquePadIdE +000000000004c69c w DF .text 000000000000000c _ZN2nn2fs3fsa11IFileSystem21DoGetFileTimeStampRawEPNS0_16FileTimeStampRawEPKc +00000000003ccce4 g DF .text 0000000000000048 logbf +000000000003bd04 g DF .text 0000000000000074 _ZN2nn4util8BitArray4flipEv +000000000016a0b8 g DF .text 0000000000000044 _ZN2nn8settings6system34SetServiceDiscoveryControlSettingsERKNS1_31ServiceDiscoveryControlSettingsE +00000000001bb3f8 g DF .text 00000000000000a8 _ZN2nn3mii6detail12IsValidCrc16EPKvit +000000000004cc88 g DF .text 0000000000000060 _ZN2nn2fs6detail17DirectoryAccessorD1Ev +0000000000132fe8 g DF .text 0000000000000050 _ZN2nn4htcs6SocketEv +0000000000332d84 w DF .text 0000000000000054 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5tellpEv +00000000003ccd2c g DF .text 0000000000000078 logbl +0000000000230da8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E44_nn_sf_sync_UnsetCaptureButtonAutoPilotStateEv +00000000003c253c g DF .text 0000000000000024 __isalnum_l +0000000000118610 g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder10GetBitRateEv +000000000009c440 g DF .text 0000000000000090 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase16ReceiveAsSessionEPNS_2os19MultiWaitHolderTypeE +00000000000bcfe0 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +00000000001bfd48 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetEyebrowYEv +000000000015c404 g DF .text 0000000000000054 _ZN2nn2oe15EnableRecordingEv +000000000016b7b0 g DF .text 0000000000000078 _ZN2nn8settings6detail18GetAudioOutputModeEPii +000000000016b4d0 g DF .text 0000000000000044 _ZN2nn8settings22ResetXpadGenericPadMapEi +00000000001beab8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetCopyableEv +000000000095a550 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000003197f8 w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm3EE27InitializeShimLibraryHolderINS_3pcv17IImmediateManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS5_EEE_clESH_ +00000000001d035c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_DestroySharedBufferENS_2vi7fbshare18SharedBufferHandleE +0000000000395d88 g DF .text 0000000000000004 _ZNSt20bad_array_new_lengthD2Ev +000000000006c3d0 g DF .text 00000000000000a8 _ZN2nn2fs18IsSdCardAccessibleEv +0000000000080b34 g DF .text 0000000000000018 nnmem_nlib_yield +0000000000362668 g DF .text 000000000000008c _ZNSt13runtime_errorC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE +00000000000a1aac g DF .text 0000000000000004 nnsocketSetSockOpt +00000000000d70f8 g DF .text 0000000000000038 _ZNK2nn4bcat21DeliveryCacheProgress9GetResultEv +0000000000157a38 g DF .text 000000000000001c _ZN2nn4nifm6detail43ConvertInternetConnectionStatusToSfFromNifmEPNS1_2sf24InternetConnectionStatusERKNS0_24InternetConnectionStatusE +0000000000256e00 g DF .text 0000000000000188 _ZN2nn3web15ShowNewsPageArgC2Ev +00000000000d434c g DF .text 0000000000000270 _ZN2nn6applet16MapHandleStorageEPPvPmNS0_13StorageHandleE +00000000001c5918 g DF .text 0000000000000018 _ZN2nn3mii15PrivateDatabaseD1Ev +000000000080b850 w DO .rodata 00000000000000ea _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEEvEE +0000000000945c38 g DO .data 0000000000000098 _ZTVN2nn2sf4cmif6server23CmifServerDomainManager6DomainE +00000000000a57ec g DF .text 000000000000018c _ZN2nn6socket6detail10socketAtonEPKcP7in_addr +00000000003a2ad4 g DF .text 0000000000000044 __lshrti3 +000000000006372c g DF .text 0000000000000164 _ZN2nn2fs15GetMmcSpeedModeEPNS0_12MmcSpeedModeE +00000000007c1700 w DO .rodata 0000000000000150 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +000000000022c2b8 g DF .text 0000000000000044 _ZN2nn3hid24SetNpadCommunicationModeENS0_21NpadCommunicationModeE +00000000002c76c4 g DF .text 0000000000000004 _ZN7android21SurfaceComposerClient15releaseInstanceEv +00000000002329dc w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E17GetCmifBaseObjectEv +00000000002c5b30 g DF .text 0000000000000020 _ZN7android21SurfaceComposerClient21getHotplugEventHandleERjRb +000000000012923c w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm1208EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSI_ILm8ELm1ELl0EEEEEELm24ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENST_ILm8ELm1EvEEj +00000000001b16cc g DF .text 0000000000000014 _ZN2nn2ec23ShowShopSettingsForMenuERKNS_7account3UidENS0_8SourceIdE +00000000003619fc w DF .text 000000000000002c _ZnamRKSt9nothrow_t +0000000000947510 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000239630 g DF .text 00000000000000f4 _ZN2nn8irsensor6detail15IrSensorSessionC1ERKNS_6applet20AppletResourceUserIdE +000000000097ab68 g DO .data 0000000000000050 _ZTVNSt3__115numpunct_bynameIcEE +00000000003c3b60 g DF .text 0000000000000078 strerror +0000000000204374 g DF .text 0000000000000088 setup_outline +00000000008056b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi136EE4MaskE +0000000000270930 g DF .text 000000000000001c NvRmSyncIsSyncpoints +0000000000137b88 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSG_ILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm16ELm0ELb1EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEEST_NS2_24BufferClientArgumentTypeEj +0000000000314d74 g DF .text 0000000000000058 _ZN2nn4gpio8FinalizeEv +0000000000238be4 g DF .text 0000000000000088 _ZN2nn8irsensor6detail13StatusManager23UnregisterIrSensorAruidERKNS_6applet20AppletResourceUserIdE +00000000003e89a8 g DF .text 0000000000000408 __nnmusl_fini_dso +0000000000039418 g DF .text 0000000000000144 nnutilZlib__tr_align +000000000008f9a0 g DF .text 0000000000000018 _ZN2nn2os29IsReaderWriterLockOwnerThreadEPKNS0_20ReaderWriterLockTypeE +00000000002958ec g DF .text 0000000000000078 _ZTv0_n24_N7android9BpRefBaseD1Ev +00000000003bb878 g DF .text 0000000000000190 ctanhf +000000000015b100 g DF .text 0000000000000050 _ZN2nn2oe33EndBlockingHomeButtonShortPressedEv +000000000018d1d4 g DF .text 000000000000004c _ZN2nn5audio6common10EdgeMatrix11RemoveEdgesEi +0000000000348280 g DF .text 00000000000007ec _ZNSt3__117moneypunct_bynameIwLb1EE4initEPKc +00000000001258a4 w DF .text 0000000000000054 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E25_nn_sf_sync_GetFriendListENS0_3OutIivEERKNS0_8OutArrayINS6_10FriendImplEEERKNS_7account3UidEiRKNS7_17SizedFriendFilterEm +000000000022c348 g DF .text 000000000000005c _ZN2nn3hid12GetNpadStateEPNS0_16NpadJoyDualStateERKj +00000000000bd4d4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +000000000014be00 g DF .text 0000000000000014 _ZNK2nn3ngc6detail7SbvRank7MemSizeEj +0000000000220624 g DF .text 0000000000000008 _ZN2nn3hid6detail35GetSixAxisSensorHandleXpadTypeValueERKNS0_19SixAxisSensorHandleE +00000000003bba08 g DF .text 000000000000005c ctanhl +00000000003c54f0 g DF .text 0000000000000004 __strcoll_l +0000000000954560 w DO .data 0000000000000018 _ZTIN2nn4pctl6detail3ipc23IParentalControlServiceE +000000000009bbdc g DF .text 000000000000000c _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor13GetMoveHandleEi +000000000097d150 g DO .data 0000000000000018 _ZTINSt3__110istrstreamE +000000000004567c g DF .text 0000000000000038 _ZN2nn4diag40GetRequiredBufferSizeForGetAllModuleInfoEv +0000000000235cbc w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm6ELm1ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm6ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm6ELm1EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000002ecc0 g DF .text 0000000000000018 _ZN2nn5image11JpegEncoder10SetQualityEi +000000000094fea0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000805070 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi68EE4MaskE +000000000097e070 g DO .data 0000000000000020 _ZTIPKDh +00000000001d3c6c g DF .text 0000000000000090 _ZN2nn2vi18GetDisplayRgbRangeEPNS0_8RgbRangeEPKNS0_7DisplayE +000000000097e340 g DO .data 0000000000000018 _ZTIN10__cxxabiv116__enum_type_infoE +000000000097e250 g DO .data 0000000000000020 _ZTIPKDi +0000000000188f80 g DF .text 0000000000000038 _ZN2nn5audio17ReleaseMemoryPoolEPNS0_19AudioRendererConfigEPNS0_14MemoryPoolTypeE +00000000002168bc g DF .text 0000000000000070 _ZN2nn3hid6system6detail18GetFirmwareVersionEPNS1_15FirmwareVersionENS1_11UniquePadIdE +00000000002648a4 g DF .text 0000000000000018 NvOsAtomicExchangeAdd32 +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__116__narrow_to_utf8ILm32EED2Ev +0000000000263994 g DF .text 0000000000000004 NvOsPhysicalMemUnmap +000000000000156c g DF .text 0000000000000078 _ZN2nn6crypto19GenerateHmacSha1MacEPvmPKvmS3_m +000000000097db70 g DO .data 0000000000000020 _ZTIPKDn +0000000000122208 g DF .text 000000000000000c _ZN2nn7friends15FriendCandidateC1Ev +00000000002c53e0 g DF .text 00000000000000a4 _ZN7android21SurfaceComposerClientC2Ev +000000000094fc28 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000003ddb24 w DF .text 000000000000015c fwrite_unlocked +00000000001cc01c w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_5visrv2sf26IApplicationDisplayServiceEED2Ev +000000000029ad0c g DF .text 0000000000000328 _ZN7android16BnServiceManager10onTransactEjRKNS_6ParcelEPS1_j +00000000000c9430 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000296494 g DF .text 0000000000000008 _ZN7android8BpBinder11linkToDeathERKNS_2spINS_7IBinder14DeathRecipientEEEPvj +00000000001a78a4 g DF .text 0000000000000044 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl34GetAudioDeviceOutputVolumeInternalERKNS_2sf8InBufferENS4_3OutIfvEE +000000000097e200 g DO .data 0000000000000020 _ZTIPKDs +0000000000189b50 g DF .text 0000000000000010 _ZN2nn5audio15PerformanceInfoD2Ev +0000000000825280 g DO .rodata 000000000000000f _ZTSSt10bad_typeid +000000000011a6b8 g DF .text 000000000000005c _ZN2nn3err39ShowUnacceptableApplicationVersionErrorEv +00000000001da5bc g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine8GetErrorEv +0000000000269adc g DF .text 0000000000000070 NvRmSurfaceInitRmPitch +0000000000070fd0 g DF .text 0000000000000030 _ZN2nn4lmem6detail12DumpUnitHeapEPNS1_8HeapHeadE +00000000000cab0c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_AreAnyLibraryAppletsLeftENS0_3OutIbvEE +00000000001742e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_GetColorSetIdENS0_3OutIivEE +00000000001b99d4 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetEyeAspectEi +0000000000154a2c w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi25ELm4EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +00000000007b0f30 w DO .rodata 0000000000000015 _ZTSN2nn2fs10SubStorageE +0000000000315268 g DF .text 0000000000000054 _ZN2nn4gpio18SetInterruptEnableEPNS0_14GpioPadSessionEb +00000000000ca020 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000023c378 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E33_nn_sf_sync_SuspendImageProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleE +0000000000977d98 w DO .data 0000000000000058 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8ISessionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000007c0e00 w DO .rodata 000000000000016d _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +0000000000254814 g DF .text 0000000000000084 _ZNK2nn3web38ShowApplicationLegalInformationPageArg15PushToInChannelENS_6applet19LibraryAppletHandleE +0000000000188980 g DF .text 000000000000004c _ZN2nn5audio21SetI3dl2ReverbEnabledEPNS0_15I3dl2ReverbTypeEb +0000000000190d00 g DF .text 0000000000000058 _ZN2nn5audio27GetAudioRendererSampleCountENS0_19AudioRendererHandleE +000000000025a844 g DF .text 000000000000003c pack_ufixed_20_12_f +00000000003a8ab0 g DF .text 0000000000000400 setlocale +0000000000125850 w DF .text 0000000000000054 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E28_nn_sf_sync_GetFriendListIdsENS0_3OutIivEERKNS0_8OutArrayINS_7account23NetworkServiceAccountIdEEERKNSO_3UidEiRKNS7_17SizedFriendFilterEm +000000000017b484 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E23_nn_sf_sync_GetHostNameERKNS0_9OutBufferENS0_3OutIjvEE +0000000000108540 g DF .text 00000000000001b0 silk_residual_energy_FIX +0000000000329854 w DF .text 0000000000000004 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5imbueERKNS_6localeE +0000000000177ba8 g DF .text 00000000000000b0 _ZN2nn3ssl7Context9GetOptionEPiNS1_13ContextOptionE +0000000000955930 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEvEE +000000000018a7c4 g DF .text 0000000000000008 _ZNK2nn5audio8SinkInfo6IsUsedEv +000000000018ba90 g DF .text 0000000000000008 _ZNK2nn5audio23SplitterDestinationData16GetDestinationIdEv +00000000000fef98 g DF .text 0000000000000954 silk_stereo_LR_to_MS +0000000000126070 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_AcceptFriendRequestERKNS_7account3UidENS5_9RequestIdE +0000000000125c54 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E29_nn_sf_sync_LoadFriendSettingENS0_3OutINS6_17FriendSettingImplEvEERKNS_7account3UidENSO_23NetworkServiceAccountIdE +0000000000187990 g DF .text 000000000000004c _ZN2nn5audio18SetReverbEarlyGainEPNS0_10ReverbTypeEf +0000000000262bd4 g DF .text 0000000000000078 NvOsHeapAllocatorPrintStatistics +00000000002cdc00 g DF .text 0000000000000004 _ZN7android7RefBase11renameRefIdEPS0_PKvS3_ +00000000007caad0 w DO .rodata 000000000000014b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19ILibraryAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000002b36a8 g DF .text 00000000000001a0 _ZN7android12ConsumerBase16onFrameAvailableERKNS_10BufferItemE +00000000001a785c g DF .text 0000000000000048 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl30SetAudioDeviceOutputVolumeAutoERKNS_2sf8InBufferEf +0000000000313fc0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E15_nn_sf_sync_SetEjj +0000000000953a40 w DO .data 0000000000000018 _ZTIN2nn4nifm6detail8IRequestE +00000000003240bc g DF .text 0000000000000018 _ZNSt3__118condition_variableD2Ev +0000000000133f54 g DF .text 000000000000001c _ZN2nn4htcs14GetPeerNameAnyEv +00000000002c3b5c g DF .text 000000000000012c _ZN7android14SurfaceControl20writeSurfaceToParcelERKNS_2spIS0_EEPNS_6ParcelE +00000000000d8678 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_UnblockDeliveryTaskENS_13ApplicationIdE +0000000000135fc8 g DF .text 0000000000000030 _ZN2nn2lm6detail20LogPacketTransmitter17PushLogSessionEndEv +000000000023c1ec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E28_nn_sf_sync_ActivateIrsensorENS_6applet20AppletResourceUserIdE +0000000000354850 g DF .text 0000000000000054 _ZNSt3__114collate_bynameIcED0Ev +0000000000139c54 g DF .text 0000000000000108 _ZN2nn3nfc29AttachAvailabilityChangeEventEPNS_2os15SystemEventTypeE +00000000000ae3f0 g DF .text 000000000000003c _ZN2nn6socket8resolver3tls6Client24GetCurrentGaiErrorStringEv +0000000000158524 g DF .text 0000000000000048 _ZN2nn3nsd14GetSettingNameEPNS0_11SettingNameE +0000000000362398 g DF .text 0000000000000084 _ZNSt3__118shared_timed_mutex11lock_sharedEv +00000000009ef6a8 g DO .bss 0000000000000008 _ZN2nn3ssl6detail16SslMemoryManager6g_HeapE +00000000001179d8 g DF .text 0000000000000028 _ZN2nn5codec30HardwareOpusMultiStreamDecoderC1Ei +00000000000390a0 g DF .text 0000000000000040 nnutilZlib__tr_init +0000000000205998 g DF .text 00000000000000c4 internal_get_outline +000000000081f220 w DO .rodata 000000000000013b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000331070 w DF .text 0000000000000004 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEED2Ev +000000000013ba60 w DF .text 00000000000001c8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm64EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +00000000007c8350 w DO .rodata 0000000000000109 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007bd7a0 w DO .rodata 0000000000000024 _ZTSN2nn7account6detail13IAsyncContextE +00000000003de104 g DF .text 00000000000000cc perror +0000000000151da0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E36_nn_sf_sync_GetCurrentNetworkProfileENS0_3OutINS6_2sf18NetworkProfileDataEvEE +0000000000942f00 g DO .data 0000000000000018 _ZTIN2nn2fs6detail18FileSystemAccessorE +000000000008de74 g DF .text 0000000000000084 _ZN2nn2os22StartOneShotTimerEventEPNS0_14TimerEventTypeENS_8TimeSpanE +000000000021ddb8 g DF .text 0000000000000078 _ZN2nn3hid6detail20GetNpadInterfaceTypeEPhRKj +000000000027072c g DF .text 0000000000000098 NvRmMemIsOwnedByAruid +00000000003e6f4c g DF .text 00000000000001e4 __nnmusl_CreateThread +000000000015850c g DF .text 0000000000000004 _ZNK2nn4nifm6detail12HttpResponse10GetPointerEv +0000000000955e20 w DO .data 0000000000000018 _ZTIN2nn7timesrv6detail7service14IStaticServiceE +0000000000978470 w DO .data 0000000000000018 _ZTIN2nn3i2c8IManagerE +00000000002c8f54 g DF .text 0000000000000008 _ZNK7android5Fence10getFdCountEv +0000000000348278 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb0EE13do_neg_formatEv +0000000000367a10 g DF .text 00000000000001d4 _ZNSt3__14stolERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPmi +000000000019a720 g DF .text 0000000000000108 _ZN2nn5audio36GetReleasedFinalOutputRecorderBufferEPNS0_19FinalOutputRecorderE +00000000001b8c18 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw15GetFacelineTypeEv +00000000000b1774 g DF .text 0000000000000064 _ZN2nn4util20GenerateUuidVersion5EPKv +0000000000167f10 g DF .text 0000000000000044 _ZN2nn8settings6system20SetBacklightSettingsERKNS1_19BacklightSettingsExE +00000000009f7b38 g DO .bss 0000000000000004 _ZN2nn5audio6detail20g_AudioRendererCountE +000000000026cc20 g DF .text 0000000000000008 NvRmSyncCalculateSizeForInplaceFd +000000000016c954 g DF .text 0000000000000070 _ZN2nn8settings6detail22SetBluetoothEnableFlagEb +0000000000084138 g DF .text 0000000000000008 _ZN2nn7nlibsdk4heap14TlsHeapCentralC2Ev +00000000001a8ef0 g DF .text 0000000000000008 _ZNK2nn5audio3dsp20CommandListProcessor14GetBufferCountEv +0000000000140cac g DF .text 00000000000001b8 _ZN2nn3ngc12CountNumbersEPKc +0000000000161004 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E47_nn_sf_sync_FinishGetAccountMiiImageContentTypeENS0_3OutIjvEERKNS0_8OutArrayIcEENS6_9AsyncDataE +00000000003c3c44 w DF .text 0000000000000014 creat64 +0000000000220644 g DF .text 000000000000000c _ZN2nn3hid6detail32GetSixAxisSensorHandleNpadIdTypeERKNS0_19SixAxisSensorHandleE +00000000003a2518 g DF .text 00000000000000a4 __floatundisf +00000000000b21ec g DF .text 0000000000000034 _ZN2nn7account6detail18OAuthProcedureBase13ApplyResponseEPKcm +000000000015b6cc g DF .text 0000000000000060 _ZN2nn2oe37IsUserInactivityDetectionTimeExtendedEv +00000000003e68f0 g DF .text 00000000000002e0 __nnmusl_DirChange +00000000002aa864 g DF .text 00000000000001e8 _ZNK7android10BufferItem7flattenERPvRmRPiS3_ +000000000033338c g DF .text 0000000000000004 _ZNSt3__18ios_base7failureD1Ev +0000000000230e68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E42_nn_sf_sync_DeactivateConsoleSixAxisSensorEv +000000000008d5ac g DF .text 0000000000000030 _ZN2nn2os20InitializeLightEventEPNS0_14LightEventTypeEbNS0_14EventClearModeE +000000000035a84c g DF .text 0000000000000028 _ZNSt3__18numpunctIcEC2Em +0000000000174240 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E26_nn_sf_sync_GetAudioVolumeENS0_3OutINS5_6system11AudioVolumeEvEEi +00000000007d7760 w DO .rodata 0000000000000107 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +000000000018909c g DF .text 0000000000000058 _ZN2nn5audio18GetMemoryPoolStateEPKNS0_14MemoryPoolTypeE +00000000003310b8 w DF .text 0000000000000030 _ZTv0_n24_NSt3__113basic_ostreamIwNS_11char_traitsIwEEED0Ev +0000000000156f94 g DF .text 0000000000000004 _ZN2nn4nifm23TemporaryNetworkProfile9GetHandleEv +000000000009cd24 w DF .text 000000000000007c _ZN2nn2sf4hipc6server24HipcServerSessionManager19CreateServerSessionEONS0_4cmif6server20CmifServerObjectInfoE +0000000000210368 g DF .text 00000000000000b8 ttf_read_buf +0000000000328428 g DF .text 00000000000000e4 _ZNSt3__18ios_base5clearEj +00000000001c09ac g DF .text 0000000000000008 _ZN2nn3mii6detail16Ver3StoreDataRaw9UpdateCrcEv +00000000001c6b28 w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm88ELm4ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm88ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm88ELm4EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000097ae68 g DO .data 0000000000000060 _ZTVNSt3__17codecvtIDic11__mbstate_tEE +0000000000140e64 g DF .text 000000000000015c _ZN2nn3ngc12CountNumbersEPKt +00000000001848c8 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEEEEELm16ELm0ELb1EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSK_ILm8ELm8EvEEj +000000000018d0f8 g DF .text 0000000000000008 _ZN2nn5audio6common13NodeIdManager7GetBaseEj +0000000000264614 g DF .text 0000000000000018 app_Free +00000000003ab0c0 g DF .text 0000000000000004 pthread_cond_signal +00000000001feba8 g DF .text 0000000000000eac make_graymap +0000000000081cb4 g DF .text 0000000000000010 nnmem_nlib_thread_priority_max +00000000001cb8b4 g DF .text 000000000000005c _ZN2nn5swkbd6detail18InlineKeyboardImpl25GetImageMemoryRequirementEPmS3_ +000000000017a330 g DF .text 0000000000000030 _ZN2nn3ssl6detail14ServiceSession8FinalizeEv +00000000001b94f4 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw8GetMoleYEv +0000000000186340 g DF .text 0000000000000030 _ZN2nn5audio21SetBufferMixerEnabledEPNS0_15BufferMixerTypeEb +0000000000824030 g DO .rodata 0000000000000028 _ZTSNSt12experimental19bad_optional_accessE +00000000001ce8b8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_SetDisplayContrastRatioEmf +0000000000954e90 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000007f0ea0 g DO .rodata 0000000000000024 _ZTSN2nn5audio6server15BufferMixerInfoE +0000000000948a80 w DO .data 0000000000000018 _ZTIN2nn7account6detail14ISessionObjectE +00000000003b8dc0 w DF .text 00000000000001e0 __memmove_device +00000000000b1c4c g DF .text 0000000000000058 _ZN2nn7account22ShowUserNicknameEditorERKNS0_3UidE +00000000001769b4 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm12ELm4ELl0EEEEEELm0ELm12ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm12ELm4EEEj +00000000000b10d0 g DF .text 0000000000000008 _ZN2nn6socket8resolver10serializer13DNSSerializer12InternalNtohERKj +00000000002b443c g DF .text 0000000000000034 _ZN7android18GraphicBufferAllocD2Ev +0000000000825530 g DO .rodata 0000000000000022 _ZTSN10__cxxabiv117__array_type_infoE +000000000039db44 g DF .text 000000000000006c __floatunditf +00000000007e9228 g DO .rodata 0000000000000008 _ZN2nn5audio14MemoryPoolType16AddressAlignmentE +0000000000238b78 g DF .text 000000000000006c _ZN2nn8irsensor6detail13StatusManager21RegisterIrSensorAruidERKNS_6applet20AppletResourceUserIdE +000000000039efdc g DF .text 0000000000000058 __addvsi3 +000000000021e594 g DF .text 00000000000000a4 _ZN2nn3hid6detail16GetIrSensorStateEPNS0_6system13IrSensorStateERj +00000000000b10d8 g DF .text 0000000000000008 _ZN2nn6socket8resolver10serializer13DNSSerializer12InternalNtohERKt +00000000000bf33c g DF .text 000000000000002c _ZNK2nn7account33ExternalNetworkServiceAccountInfo26GetNetworkServiceAccountIdEPNS0_23NetworkServiceAccountIdE +0000000000132a98 w DF .text 00000000000001e8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm4ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000007b91c0 w DO .rodata 0000000000000028 _ZTSN2nn2sf4hipc6server17IHipcObjectDomainE +000000000018ae1c g DF .text 0000000000000080 _ZN2nn5audio20SetSplitterMixVolumeEPNS0_12SplitterTypeEiPNS0_12FinalMixTypeEfii +0000000000333b78 g DF .text 0000000000000048 _ZNSt3__18ios_base4InitD2Ev +000000000007e028 g DF .text 00000000000000d8 nnmem_nlib_strto_int32 +0000000000008704 w DF .text 0000000000000034 _ZN2nn6crypto6detail11XtsModeImplINS1_19XtsModeAes128HelperEE8FinalizeEPvm +0000000000179f60 g DF .text 0000000000000024 nnsslConnectionSetServerCertBuffer +0000000000234f78 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E38_nn_sf_sync_EnableUsbFullKeyControllerEb +00000000001364b8 g DF .text 00000000000000a8 _ZN2nn2lm6detail24LogPacketTransmitterBaseC2EPvmPFbPKhmEhhmbb +000000000004d0b4 g DF .text 0000000000000040 _ZN2nn2fs6detail12FileAccessor7GetSizeEPl +00000000009496d0 w DO .data 0000000000000028 _ZTIN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureE +000000000023d158 g DF .text 00000000000001f8 _ZN2nn8irsensor6detail31CreateIrSensorSystemServerProxyEPNS_2sf13SharedPointerINS0_21IIrSensorSystemServerEEE +000000000039cf2c g DF .text 000000000000004c __unordtf2 +00000000001a53d0 g DF .text 000000000000008c _ZN2nn5audio6server12SplitterInfo6UpdateEPKNS0_12SplitterInfo11InParameterE +00000000002279a0 g DF .text 0000000000000090 _ZN2nn3hid6detail30GetActualVibrationGcErmCommandEPNS0_21VibrationGcErmCommandERKNS0_21VibrationDeviceHandleE +00000000000c2200 g DF .text 0000000000000078 _ZN2nn7account13ProfileEditorC1EOS1_ +0000000000236a50 g DF .text 0000000000000174 _ZN2nn8irsensor6detail19CheckInternalStatusERKNS0_14IrCameraHandleE +00000000007e0ee0 w DO .rodata 0000000000000020 _ZTSN2nn4nifm6detail12IScanRequestE +00000000007e3560 w DO .rodata 000000000000014b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5prepo6detail3ipc13IPrepoServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000000c5f84 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_ReleaseSleepLockEv +000000000031e2cc w DF .text 000000000000052c _ZNSt3__16__sortIRNS_6__lessIiiEEPiEEvT0_S5_T_ +00000000003a47d8 g DF .text 0000000000000080 __subvti3 +0000000000046648 g DF .text 000000000000013c _ZN2nn2fs6detail18IsEnabledAccessLogEj +00000000000b1f80 g DF .text 0000000000000018 _ZN2nn7account6detail18OAuthProcedureBaseC1Ev +000000000024fe80 g DF .text 00000000000000b4 _ZN2nn3ldn20CreateNetworkPrivateERKNS0_13NetworkConfigERKNS0_14SecurityConfigERKNS0_17SecurityParameterERKNS0_10UserConfigEiPKNS0_12AddressEntryE +00000000002c7344 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient14setContentTypeERKNS_2spINS_7IBinderEEEi +000000000097e300 g DO .data 0000000000000038 _ZTVN10__cxxabiv116__enum_type_infoE +0000000000048d98 g DF .text 000000000000016c _ZN2nn2fs24HierarchicalRomFileTable17FindNextDirectoryEPcPNS1_12FindPositionEm +00000000009557e8 g DO .data 0000000000000018 _ZTVN2nn3ssl6detail18ISslServiceFactoryE +00000000001d7130 g DF .text 0000000000000098 _ZN2nn2vi6buffer11BufferQueue26GetRequiredMemoryAlignmentERKNS1_10BufferInfoE +00000000001671f8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000001bcdbc g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetGlassTypeEi +000000000022d878 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm1EEEiPNS0_16TouchScreenStateIXT_EEEi +000000000097bd20 w DO .data 0000000000000018 _ZTINSt3__115time_put_bynameIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000001740c0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_SetLockScreenFlagEb +00000000001c7a4c g DF .text 0000000000000018 _ZN2nn3mii11StartAppletEPNS0_12AppletOutputERKNS0_11AppletInputE +0000000000360dc8 g DF .text 0000000000000018 _ZNSt3__119__shared_weak_count10__add_weakEv +0000000000117cec g DF .text 0000000000000008 _ZNK2nn5codec30HardwareOpusMultiStreamDecoder19GetTotalStreamCountEv +0000000000046784 g DF .text 0000000000000008 _ZN2nn2fs6detail18IsEnabledAccessLogEv +000000000023c30c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E34_nn_sf_sync_RunTeraPluginProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleENS5_31PackedTeraPluginProcessorConfigE +0000000000950408 w DO .data 0000000000000010 _ZTIN2nn5codec12IOpusDecoderE +0000000000356974 g DF .text 0000000000000010 _ZNKSt3__112ctype_bynameIwE10do_tolowerEw +00000000007f6750 g DO .rodata 00000000000006c0 _ZN2nn3mii6detail15DefaultMiiTableE +000000000022a88c g DF .text 0000000000000068 _ZN2nn3hid15KeyCodeComposer14RemoveKeyCodesEPti +00000000007adc48 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u813ConstantBlackE +000000000017754c g DF .text 0000000000000104 _ZN2nn8settings6detail20GetXpadGenericPadMapEPNS0_22BasicXpadGenericPadMapEi +000000000023c06c g DF .text 0000000000000138 _ZN2nn8irsensor6detail25CreateIrSensorServerProxyEPNS_2sf13SharedPointerINS0_15IIrSensorServerEEE +000000000097aac8 g DO .data 0000000000000050 _ZTVNSt3__18numpunctIcEE +00000000008236d0 w DO .rodata 0000000000000016 _ZTSNSt3__19__num_putIcEE +00000000002283bc g DF .text 0000000000000044 _ZN2nn3hid6system19GetAnalogStickStateEPNS0_16AnalogStickStateENS1_11UniquePadIdENS1_19AnalogStickPositionE +00000000000ba550 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE17GetCmifBaseObjectEv +00000000001bb524 g DF .text 0000000000000088 _ZN2nn3mii6detail24LoadLittleEndianNicknameEPNS0_8NicknameEPKti +00000000000a05dc g DF .text 0000000000000044 _ZN2nn2sf4hipc31InitializeHipcServiceResolutionEv +00000000000bef1c g DF .text 0000000000000034 _ZNK2nn7account25CachedNintendoAccountInfo11GetBirthdayEPm +00000000001b8b10 g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw9GetGenderEv +00000000003296bc w DF .text 0000000000000054 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEC1ERKS3_ +00000000008223b4 g DO .rodata 0000000000000004 _ZNSt3__18ios_base7showposE +0000000000005fb0 g DF .text 00000000000001e4 _ZN2nn6crypto6detail19CbcModeAes128Helper13DecryptBlocksEPvS3_PKviPKNS0_12AesDecryptorILm16EEE +00000000000c960c w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_ReserveToStartAndWaitAndUnwindThisENS0_13SharedPointerINS6_22ILibraryAppletAccessorEEE +00000000001a3de0 g DF .text 0000000000000010 _ZNK2nn5audio6server10MixContext7GetInfoEi +00000000000b7aa0 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E49_nn_sf_sync_GetBaasAccountManagerForSystemServiceENS0_3OutINS0_13SharedPointerINS5_4baas24IManagerForSystemServiceEEEvEERKNS5_3UidE +00000000007d65f0 w DO .rodata 000000000000001a _ZTSN2nn5codec12IOpusEncoderE +00000000001e0b18 g DF .text 00000000000000cc FSS_font_metrics +0000000000285ecc g DF .text 0000000000000008 nvgr_get_extformat +00000000000160d4 g DF .text 000000000000037c _ZN2nn5image6detail4jpeg23jinit_c_prep_controllerEPNS2_20jpeg_compress_structEb +00000000001c03fc g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw9GetBeardYEv +000000000005fa94 g DF .text 000000000000003c _ZN2nn2fs6detail29DirectoryServiceObjectAdapter6DoReadEPlPNS0_14DirectoryEntryEl +000000000009bd38 g DF .text 000000000000003c _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor10GetReceiveEi +000000000011cf64 g DF .text 0000000000000004 _ZN2nn7friends12SetAllocatorEPFPvmEPFvS1_mE +00000000000055cc w DF .text 00000000000001e8 _ZN2nn6crypto6detail7AesImplILm16EE10InitializeEPKvmb +0000000000008220 w DF .text 0000000000000108 _ZN2nn6crypto6detail11XtsModeImplINS1_19XtsModeAes128HelperEE6UpdateEPvmPKvm +00000000008238f0 w DO .rodata 0000000000000020 _ZTSNSt3__118__time_get_storageIcEE +00000000001c4fb0 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetReserved2Ev +000000000025754c g DF .text 0000000000000088 _ZN2nn3web15ShowNewsPageArg16SetLeftStickModeENS0_16WebLeftStickModeE +00000000001837cc g DF .text 0000000000000004 _ZN2nn3aoc10InitializeEv +0000000000081408 g DF .text 0000000000000098 nnmem_nlib_mutex_trylock +00000000002508a8 g DF .text 000000000000003c _ZN2nn3ldn8MakeSsidEPKc +00000000001c3268 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw9SetHeightEi +00000000002950dc g DF .text 0000000000000008 _ZN7android7BBinder13unlinkToDeathERKNS_2wpINS_7IBinder14DeathRecipientEEEPvjPS4_ +00000000000ed6e4 g DF .text 0000000000000220 unquant_coarse_energy +000000000009136c g DF .text 0000000000000004 nnosStartOneShotTimerEvent +0000000000215cc4 g DF .text 000000000000000c _ZN2nn3hid6detail30MakeConsoleSixAxisSensorHandleEhi +00000000003bd594 g DF .text 0000000000000080 __crypt_md5 +00000000007dc518 g DO .rodata 0000000000000040 _ZN2nn3nfc6client22RequiredMcuVersionDataE +000000000039ef84 g DF .text 0000000000000058 __addvdi3 +00000000001c6834 w DF .text 0000000000000180 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm88ELm4ELl0EEENSC_17InRawArgumentInfoILm88ELm4ELl0EEENSI_ILm4ELm4ELl88EEEEEELm92ELm88ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm88ELm4EEENS2_23InRawClientArgumentTypeILm88ELm4EvEENSU_ILm4ELm4EvEEj +00000000003a26a0 g DF .text 0000000000000160 __floatuntidf +00000000003c61cc g DF .text 0000000000000180 asinf +00000000003e8144 g DF .text 00000000000000a4 __nnmusl_get_tls_dtors_status +00000000003c634c g DF .text 00000000000000fc asinh +00000000000c9cc8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_GetIndirectLayerConsumerHandleENS0_3OutImvEENS_6applet20AppletResourceUserIdE +000000000017f014 g DF .text 0000000000000070 _ZN2nn4time37SetEphemeralNetworkSystemClockContextERKNS0_18SystemClockContextE +00000000001881f0 g DF .text 000000000000000c _ZN2nn5audio24GetI3dl2ReverbReverbGainEPKNS0_15I3dl2ReverbTypeE +00000000001563e4 g DF .text 0000000000000114 _ZN2nn4nifm24EnumerateNetworkProfilesEPNS0_23NetworkProfileBasicInfoEPiih +00000000001fa6e0 g DF .text 00000000000000f8 fsg_RunFontProgram +00000000000cc2b8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000003c6568 g DF .text 00000000000002a4 asinl +00000000001679d0 w DF .text 00000000000000a0 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm1EE27InitializeShimLibraryHolderINS_5prepo6detail3ipc13IPrepoServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENKUlPvE_clESH_ +00000000000cd074 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +00000000003c9158 w DF .text 0000000000000098 pow10 +00000000001a0d6c g DF .text 000000000000003c _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_13ReverbCommandE +0000000000264720 g DF .text 0000000000000020 multimedia_Realloc +0000000000259388 g DF .text 0000000000000008 nvdcEventModeChange +0000000000089cf0 g DF .text 0000000000000024 _ZN2nn3mem17StandardAllocatorC2EPvmb +00000000001339f4 g DF .text 000000000000017c _ZN2nn4htcs6detail4recvENS_2sf13SharedPointerINS_3tma7ISocketEEEPvmiRi +0000000000062c64 g DF .text 000000000000000c _ZN2nn2fs15UnmountHostRootEv +00000000007abade g DO .rodata 000000000000002f nnutilZlib_inflate_copyright +0000000000095928 g DF .text 0000000000000184 _ZN2nn2os6detail26ThreadManagerImplByHorizon12CreateThreadEPNS0_10ThreadTypeEPFvS4_Ei +00000000007bcd60 w DO .rodata 0000000000000158 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +000000000016e2a0 g DF .text 0000000000000070 _ZN2nn8settings6detail23GetNotificationSettingsEPNS0_6system20NotificationSettingsE +000000000021a950 g DF .text 0000000000000098 _ZN2nn3hid6detail24GetNpadCommunicationModeEPNS0_21NpadCommunicationModeE +000000000022dc38 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm11EEEiPNS0_16TouchScreenStateIXT_EEEi +000000000023c24c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E30_nn_sf_sync_StopImageProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleE +00000000003c316c g DF .text 000000000000001c towctrans +000000000032c638 w DF .text 0000000000000030 _ZTv0_n24_NSt3__113basic_istreamIwNS_11char_traitsIwEEED0Ev +00000000007b92d0 w DO .rodata 0000000000000083 _ZTSN2nn2sf22UnmanagedServiceObjectINS0_4hipc6detail12IHipcManagerENS2_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEE +000000000021b0a0 g DF .text 0000000000000084 _ZN2nn3hid6detail23MergeSingleJoyAsDualJoyERKjS3_ +000000000022fd68 g DF .text 0000000000000068 _ZN2nn3hid15VibrationPlayer4StopEv +00000000001cab60 g DF .text 0000000000000030 _ZN2nn5swkbd6detail18InlineKeyboardImpl16SetKeytopBgAlphaEf +00000000001d7278 g DF .text 000000000000021c _ZN2nn2vi6buffer11BufferQueue13SetScanBufferEiPvm +000000000024bda8 g DF .text 0000000000000004 _ZNK2nn3kpr15KeyCodeComposer7GetModeEv +00000000000ab9b4 w DF .text 0000000000000178 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSJ_ILm8ELm8ELl8EEEEEELm16ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESU_NS2_23InRawClientArgumentTypeILm4ELm4EvEENSV_ILm8ELm8EvEEj +000000000013e5c0 g DF .text 0000000000000070 _ZN2nn3nfp8BreakTagERKNS0_12DeviceHandleENS0_9BreakTypeE +00000000001590a8 g DF .text 00000000000000dc _ZN2nn3nsd6detail3ipc20GetNasServiceSettingEPNS0_17NasServiceSettingERKNS0_14NasServiceNameE +00000000002592ac g DF .text 000000000000007c nvdcEventFds +0000000000056cdc w DF .text 00000000000001f8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi70ELm0EEENSI_ILm8ELm8ELl16EEENSI_ILm4ELm4ELl0EEEEEELm24ELm8ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeESY_NSX_ILm4ELm4EvEEj +00000000002cdaa0 g DF .text 000000000000004c _ZN7android7RefBaseC1Ev +0000000000328dfc w DF .text 000000000000004c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE8pubimbueERKNS_6localeE +0000000000181750 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm36ELm1ELl0EEEEEELm0ELm36ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm36ELm1EEEj +0000000000314208 w DF .text 0000000000000008 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm41EE27InitializeShimLibraryHolderINS_3fgm2sf8ISessionEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +0000000000115d30 g DF .text 00000000000000fc opus_multistream_surround_encoder_create +00000000001175c4 g DF .text 0000000000000024 _ZN2nn5codec19HardwareOpusDecoderC1Ei +00000000009531e0 g DO .data 0000000000000018 _ZTIN2nn3ngc15ProfanityFilterE +00000000003c2604 g DF .text 0000000000000010 __isdigit_l +00000000003d350c g DF .text 0000000000000034 srand48 +000000000007e100 g DF .text 00000000000000b4 nnmem_nlib_strto_int64 +000000000025d7e8 g DF .text 0000000000000038 NvUHashClear +00000000003a77a4 g DF .text 0000000000000000 fegetenv +0000000000096f8c g DF .text 000000000000003c _ZN2nn2os6detail36InternalCriticalSectionImplByHorizon5LeaveEv +00000000000d06c0 g DF .text 00000000000000f4 _ZN2nn3apm19InitializeForSystemEv +00000000003df6c4 g DF .text 0000000000000040 vprintf +00000000007c1b30 w DO .rodata 0000000000000167 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEEE +000000000013d4b8 g DF .text 0000000000000054 _ZN2nn3nfp6client20DestroyUserInterfaceEv +00000000001c3478 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetBeardTypeEi +0000000000825448 g DO .rodata 0000000000000003 _ZTSPa +000000000004cd78 g DF .text 000000000000001c _ZN2nn2fs6detail12FileAccessorC1EONSt3__110unique_ptrINS0_3fsa5IFileENS3_14default_deleteIS6_EEEERNS1_18FileSystemAccessorEi +00000000000afef4 g DF .text 0000000000000028 _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfIcEEmPKT_ +0000000000825418 g DO .rodata 0000000000000003 _ZTSPb +000000000095ba98 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_16NpadJoyDualStateELi16ENS1_13AtomicStorageIS3_EEEE +0000000000825430 g DO .rodata 0000000000000003 _ZTSPc +000000000013fca0 g DF .text 0000000000000118 _ZN2nn3nfp14StartDetectionERKNS0_12DeviceHandleE +000000000080d5d0 w DO .rodata 00000000000000ef _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEEvEE +00000000008254e8 g DO .rodata 0000000000000003 _ZTSPd +00000000000ca110 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +0000000000220658 g DF .text 00000000000000a0 _ZN2nn3hid6detail23GetSixAxisSensorHandlesEPNS0_19SixAxisSensorHandleES3_NS0_9JoyXpadIdE +00000000008254f4 g DO .rodata 0000000000000003 _ZTSPe +00000000003c22f0 g DF .text 00000000000000ac setkey +00000000008254dc g DO .rodata 0000000000000003 _ZTSPf +00000000002cd704 g DF .text 0000000000000090 _ZN7android7RefBase12weakref_type7decWeakEPKv +0000000000825500 g DO .rodata 0000000000000003 _ZTSPg +0000000000156ee4 g DF .text 000000000000007c _ZN2nn4nifm17NetworkConnection26HandleNetworkRequestResultEv +000000000082543c g DO .rodata 0000000000000003 _ZTSPh +00000000007bbbc0 w DO .rodata 000000000000002f _ZTSN2nn7account6detail24SimpleOAuthProcedureBaseE +000000000082546c g DO .rodata 0000000000000003 _ZTSPi +0000000000825478 g DO .rodata 0000000000000003 _ZTSPj +00000000001c36c4 g DF .text 0000000000000034 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetAuthorIdERKNS1_12Ver3AuthorIdE +0000000000097a68 g DF .text 0000000000000280 _ZN2nn2ro10LoadModuleEPNS0_6ModuleEPKvPvmi +0000000000825484 g DO .rodata 0000000000000003 _ZTSPl +0000000000184c3c g DF .text 0000000000000010 _ZN2nn5audio35GetAudioOutCountMaxForLibraryAppletEv +0000000000825490 g DO .rodata 0000000000000003 _ZTSPm +00000000008254b4 g DO .rodata 0000000000000003 _ZTSPn +00000000007adc58 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u813ConstantGreenE +00000000000a1984 g DF .text 0000000000000004 _ZN2nn6socket9InetHtonsEt +00000000008254c0 g DO .rodata 0000000000000003 _ZTSPo +0000000000258dc4 g DF .text 00000000000000d4 nvdcQueryDisplays +000000000025d19c g DF .text 00000000000000a0 NvOsGetConfigU32 +0000000000228af0 g DF .text 0000000000000048 _ZN2nn3hid3tmp40GetConsoleSixAxisSensorCalibrationValuesEPNS1_37ConsoleSixAxisSensorCalibrationValuesERKNS0_26ConsoleSixAxisSensorHandleE +00000000000721e0 g DF .text 0000000000000024 nnmem_nlib_error_string +0000000000396764 g DF .text 0000000000000054 _ZNSt14overflow_errorD1Ev +0000000000360244 w DF .text 0000000000000118 _ZNSt3__127__num_get_unsigned_integralIyEET_PKcS3_Rji +00000000003a25bc g DF .text 000000000000002c __floatundixf +00000000000a002c g DF .text 0000000000000040 _ZN2nn2sf4impl6detail22ServiceObjectImplBase211ReleaseImplEv +0000000000091458 g DF .text 0000000000000004 nnosClearInterruptEvent +0000000000825454 g DO .rodata 0000000000000003 _ZTSPs +0000000000825460 g DO .rodata 0000000000000003 _ZTSPt +00000000003959f4 g DF .text 0000000000000040 __cxa_get_globals_fast +00000000000a4038 g DF .text 0000000000000130 _ZN2nn6socket6detail18ShutdownAllSocketsEb +00000000000b13cc g DF .text 0000000000000004 _ZN2nn6socket6detail6CancelEi +00000000008253fc g DO .rodata 0000000000000003 _ZTSPv +0000000000071258 g DF .text 0000000000000008 nnmem_nlib_compiler_version +0000000000825424 g DO .rodata 0000000000000003 _ZTSPw +0000000000160614 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_ConfirmSnsPostPermissionEv +000000000082549c g DO .rodata 0000000000000003 _ZTSPx +00000000003e21b4 g DF .text 0000000000000050 __strdup +0000000000071a74 g DF .text 0000000000000070 nnmem_nlib_rwlock_rdunlock +0000000000144878 g DF .text 0000000000000064 _ZN2nn3ngc7wcsncmpEPKDsS2_m +00000000008254a8 g DO .rodata 0000000000000003 _ZTSPy +000000000036bc7c g DF .text 00000000000000a4 _ZNSt3__110istrstreamD2Ev +00000000000c8110 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_ClearCaptureBufferEibj +0000000000972380 g DO .data 0000000000000098 _ZTCN7android17BnSurfaceComposerE0_NS_10IInterfaceE +0000000000027ca4 g DF .text 00000000000003dc _ZN2nn5image6detail4jpeg14jpeg_idct_14x7EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000003b684 g DF .text 000000000000000c _ZN2nn4util16BinaryFileHeader14SetAddressSizeEv +00000000001688e4 g DF .text 0000000000000044 _ZN2nn8settings6system23GetDataDeletionSettingsEPNS1_20DataDeletionSettingsE +00000000003a7fc8 w DF .text 0000000000000018 atexit +00000000007de4c0 w DO .rodata 000000000000001f _ZTSN2nn3nfp6detail12IUserManagerE +00000000001bc84c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw8GetNoseYEv +000000000024d950 g DF .text 00000000000000cc _ZN2nn5album22SaveAndShareScreenshotEPNS0_7ShareIdEPKvmNS0_9ImageSizeENS0_17AlbumReportOptionERKNS_7account3UidE +00000000000ca2dc w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +000000000095dea0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000006fc5c g DF .text 0000000000000010 _ZN2nn4lmem6detail12InitHeapHeadEPNS1_8HeapHeadEjPvS4_i +00000000000812f8 g DF .text 000000000000003c nnmem_nlib_mutex_recursive_init +00000000001cece4 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEEEEELm16ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEESN_j +000000000035a55c g DF .text 0000000000000018 _ZNKSt3__120__codecvt_utf8_utf16IwE13do_max_lengthEv +000000000015d9fc g DF .text 0000000000000050 _ZN2nn4pctl29LeaveRestrictedSystemSettingsEv +00000000003ac08c g DF .text 0000000000000004 rmdir +00000000001a60e4 g DF .text 000000000000056c _ZN2nn5audio6server9VoiceInfo36UpdateParametersForCommandGenerationEPPNS0_10VoiceStateE +000000000097a128 w DO .data 0000000000000030 _ZTVNSt3__115time_put_bynameIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +0000000000286e40 g DF .text 000000000000000c NvRmGpuRegOpsSessionGetTimeoutMode +0000000000361b40 w DF .text 0000000000000004 _ZdaPvSt11align_val_t +00000000003a7e14 w DF .text 00000000000000ac readdir64_r +00000000007fe6b0 g DO .rodata 0000000000000708 _ZN2nn3mii6detail23RandomMiiHairColorTableE +00000000009486f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000002507e0 g DF .text 0000000000000024 _ZN2nn3ldn14MakeSubnetMaskEhhhh +00000000001cb334 g DF .text 0000000000000088 _ZN2nn5swkbd6detail18InlineKeyboardImpl18CalcChangedString_ENS_6applet13StorageHandleEm +0000000000220474 g DF .text 000000000000002c _ZN2nn3hid6detail18SharedMemoryHolderC2Ev +00000000002cf69c g DF .text 000000000000006c _ZN7android7String85setToEPKDsm +0000000000947ea0 w DO .data 0000000000000018 _ZTIN2nn7account31IAccountServiceForAdministratorE +00000000003a9860 g DF .text 0000000000000008 funlockfile +000000000081ef10 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000000160 g DF .text 0000000000000034 .protected _fini +00000000007d4c44 g DO .rodata 0000000000000028 silk_Transition_LP_A_Q28 +00000000007f0e58 g DO .rodata 0000000000000008 _ZN2nn5audio6server14EffectInfoBase19ParameterBufferSizeE +0000000000236494 g DF .text 00000000000000e8 _ZN2nn8irsensor6detail16FinalizeIrCameraERKNS0_14IrCameraHandleE +0000000000341040 w DF .text 0000000000000194 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm +000000000015263c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E24_nn_sf_sync_IsProcessingENS0_3OutIbvEE +00000000001becc8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetRoomIndexEv +000000000015781c g DF .text 00000000000000f4 _ZN2nn4nifm6detail37ConvertNetworkProfileDataToNifmFromSfEPNS0_18NetworkProfileDataERKNS1_2sf18NetworkProfileDataE +00000000002cb08c g DF .text 0000000000000028 _ZN7android4Rect8offsetToEii +00000000003c27d4 w DF .text 0000000000000048 iswalpha_l +00000000001737c4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_GetAvailableLanguageCodeCount2ENS0_3OutIivEE +00000000001cf564 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm16ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm16ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm16ELm4EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000003de37c w DF .text 000000000000003c _IO_putc_unlocked +0000000000955778 g DO .data 0000000000000020 _ZTVN2nn3ssl6detail10SslApiBaseE +000000000097b7f0 g DO .data 0000000000000038 _ZTINSt3__15ctypeIcEE +00000000001b68c8 g DF .text 000000000000040c _ZNK2nn3mii6detail11CharInfoRaw6VerifyEv +000000000036d358 g DF .text 0000000000000008 _ZNSt3__115__thread_struct27__make_ready_at_thread_exitEPNS_17__assoc_sub_stateE +0000000000959178 g DO .data 0000000000000020 _ZTVN2nn5audio6server22CircularBufferSinkInfoE +0000000000243a68 w DF .text 0000000000000aec _ZN22nerd_gillette_internal5otete11ImageCodec213DecodeInPlaceItNS0_14InputBitStreamEZNS1_13DecodeInPlaceItEEbRKNS_15StaticImageViewIT_EERS3_fEUliiE_EEbS9_RT0_RKT1_f +00000000002d15b0 g DF .text 000000000000001c systemTime +0000000000361d84 g DF .text 00000000000000d8 _ZNSt3__120__get_collation_nameEPKc +00000000001a1720 g DF .text 00000000000001b0 _ZN2nn5audio6server11InfoUpdater11UpdateMixesERNS1_10MixContextEiRKNS1_13EffectContextERKNS1_15SplitterContextE +00000000000360ec g DF .text 0000000000000070 nnutilZlib_inflateResetKeep +00000000003a96b0 g DF .text 0000000000000088 fopen +000000000002d6d0 g DF .text 00000000000000bc _ZN2nn5image6detail13SetJpegHeaderEPNS1_8JpegInfoEttNS0_17JpegSamplingRatioE +0000000000191be0 w DF .text 0000000000000168 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_24OutRawClientArgumentTypeILm4ELm4EEEj +0000000000128430 w DF .text 0000000000000170 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEEST_NS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000953b28 w DO .data 0000000000000068 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15INetworkProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000951580 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001b566c g DF .text 0000000000000084 _ZN2nn2la4auth22ChangeParentalPasscodeEv +000000000031f5c4 w DF .text 0000000000000540 _ZNSt3__16__sortIRNS_6__lessIllEEPlEEvT0_S5_T_ +00000000007bdb20 w DO .rodata 0000000000000156 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +0000000000364ee4 w DF .text 0000000000000110 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEmmRKS5_mm +0000000000044cd4 g DF .text 0000000000000070 nndetailDiagVLogImpl +00000000000a578c w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_6socket2sf7IClientEE19FunctionForBoolTypeEv +00000000001253a8 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_7friends6detail3ipc15IServiceCreatorENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +000000000023b248 g DF .text 00000000000000d8 _ZN22nerd_gillette_internal17OnAssertionFailedEPbPKciS2_S2_z +00000000000870e8 g DF .text 00000000000004cc _ZN2nn7nlibsdk4heap14TlsHeapCentral21CacheSmallMemoryList_EPNS1_12TlsHeapCacheEPhmPPvim +000000000025823c g DF .text 00000000000000a4 nvcecGetConnectionStatus +0000000000189bfc g DF .text 0000000000000014 _ZN2nn5audio15PerformanceInfo10GetDetailsEPi +000000000097a578 w DO .data 0000000000000038 _ZTVNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000015bed8 g DF .text 0000000000000140 _ZN2nn2oe20SetFocusHandlingModeENS0_17FocusHandlingModeE +000000000097adc8 g DO .data 0000000000000060 _ZTVNSt3__17codecvtIDsc11__mbstate_tEE +000000000097be70 w DO .data 0000000000000018 _ZTINSt3__117moneypunct_bynameIcLb1EEE +0000000000823b00 w DO .rodata 000000000000001c _ZTSNSt3__110moneypunctIcLb0EEE +00000000000c26b0 g DF .text 000000000000004c _ZN2nn2am24GetGlobalStateControllerEv +0000000000164df8 g DF .text 00000000000000ec _ZN2nn5prepo12ClearStorageEv +00000000001a3840 g DF .text 0000000000000028 _ZNK2nn5audio6server11AddressInfo8IsMappedEv +00000000002299ac g DF .text 000000000000066c _ZN2nn3hid10GetKeyCodeEPtiNS_4util10BitFlagSetILi32ENS0_16KeyboardModifierEEENS2_7BitPackIjNS0_14KeyboardLayoutEEE +00000000000c9db4 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service8IStorageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000000ea274 g DF .text 000000000000007c opus_fft_c +000000000021b270 g DF .text 00000000000000e4 _ZN2nn3hid6detail22GetNpadControllerColorEPNS0_19NpadControllerColorES3_RKj +0000000000135ec8 g DF .text 0000000000000008 _ZNK2nn2lm6detail15LogPacketHeader11GetThreadIdEv +00000000007d3fa6 g DO .rodata 0000000000000028 silk_Resampler_2_3_COEFS +00000000007dea98 g DO .rodata 0000000000000040 _ZN2nn3nfp6client22RequiredMcuVersionDataE +00000000007be7f0 w DO .rodata 000000000000015c _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +0000000000160f2c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_UnlinkPairingAsyncENS0_3OutINS6_9AsyncDataEvEENSL_INS0_12NativeHandleEvEEb +00000000003142b4 g DF .text 00000000000001b8 _ZN2nn3fgm8Debugger10InitializeEPvmNS_2os14EventClearModeE +00000000002350a0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E31_nn_sf_sync_StartFirmwareUpdateENS0_3OutINS5_6system26FirmwareUpdateDeviceHandleEvEENSL_11UniquePadIdE +00000000001d5cd8 g DF .text 0000000000000080 _ZN2nn2vi6detail18SystemServiceProxyD1Ev +00000000003171b4 w DF .text 00000000000001e4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi34ELm0EEENSB_ILi1ELi9ELm0EEEEEELm0ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESK_j +000000000014b6fc g DF .text 000000000000004c _ZN2nn3ngc6detail11BitVector32D1Ev +00000000003dd610 w DF .text 00000000000000c4 fseeko +0000000000169770 g DF .text 0000000000000078 _ZN2nn8settings7factory21GetAccelerometerScaleEPNS1_18AccelerometerScaleE +0000000000067c40 g DF .text 0000000000000204 _ZN2nn2fs20CreateDeviceSaveDataENS_3ncm13ApplicationIdEmllj +0000000000355620 g DF .text 0000000000000008 _ZNKSt3__15ctypeIwE8do_widenEc +00000000003c31d8 g DF .text 000000000000001c __towctrans_l +0000000000160bc0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_StartPlayTimerEv +00000000001b9d78 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw8SetNoseYEi +0000000000091348 g DF .text 0000000000000004 nnosAcquireSemaphore +000000000014c740 g DF .text 00000000000000f0 _ZNK2nn3ngc6detail9SbvSelect6SelectERKNS1_3SetEj +00000000001ba0d4 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw13SetGlassColorEi +000000000095b938 w DO .data 0000000000000020 _ZTVN2nn3hid6detail12KeyboardLifoE +0000000000031ca4 g DF .text 00000000000000f8 nnutilZlib_deflateParams +00000000001a7b40 g DF .text 0000000000000004 _ZN2nn5audio6server6detail24GetActiveAudioDeviceNameEPNS0_15AudioDeviceNameEj +0000000000041ba4 g DF .text 0000000000000008 _ZN2nn4edid6detail21IsContinuousFrequencyEh +00000000000b6ab8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +000000000017d448 g DF .text 0000000000000008 _ZN2nn4time25AdjustableUserSystemClock9to_time_tERKNSt3__16chrono10time_pointINS0_17SystemClockTraitsENS3_8durationIlNS2_5ratioILl1ELl1EEEEEEE +0000000000804fb0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi62EE4MaskE +00000000007d4ae4 g DO .rodata 0000000000000029 silk_delta_gain_iCDF +00000000000bb034 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E42_nn_sf_sync_SetSystemProgramIdentificationERKNS5_27SystemProgramIdentificationEm +00000000000b2848 w DF .text 00000000000000ac _ZN2nn7account6detail12ObjectHolderD2Ev +00000000000c1dcc g DF .text 0000000000000030 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureC2Ev +00000000000411c0 g DF .text 0000000000000014 _ZN2nn4util6detail37ConvertToExponentStyleStringWithPointEPcmdi +00000000001cbe20 g DF .text 0000000000000024 _ZN2nn2vi10GetServiceEv +00000000000b2334 g DF .text 0000000000000018 _ZN2nn7account6detail24SimpleOAuthProcedureBaseC2Ev +0000000000189508 g DF .text 000000000000003c _ZN2nn5audio17MemoryPoolManager7ReleaseEPNS0_14MemoryPoolInfoE +00000000000ad418 g DF .text 000000000000000c _ZN2nn6socket8resolver13GetHostByAddrEPKvjj +000000000008dfe8 g DF .text 00000000000000b4 _ZN2nn2os16SignalTimerEventEPNS0_14TimerEventTypeE +00000000001bc0f4 g DF .text 000000000000007c _ZNK2nn3mii6detail12StoreDataRaw27IsValidWithoutEmptyNicknameEv +00000000002203d8 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_14BasicXpadStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +000000000024bd28 g DF .text 0000000000000004 _ZN2nn3kpr25IsKeyCodeMapModeSupportedERKNS0_10KeyCodeMapENS0_14KeyCodeMapModeE +00000000003c2594 g DF .text 0000000000000018 isblank +00000000001cbe08 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_5visrv2sf22IManagerDisplayServiceEED2Ev +0000000000272e10 g DF .text 0000000000000088 NvRmStreamSetFenceFd +0000000000823080 w DO .rodata 0000000000000017 _ZTSNSt3__112codecvt_baseE +000000000016a21c g DF .text 0000000000000058 _ZN2nn8settings5fwdbg29CreateSettingsItemKeyIteratorEPKc +000000000012a71c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17_nn_sf_sync_ClearEv +0000000000805870 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi228EE4MaskE +00000000001258f8 w DF .text 0000000000000044 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E28_nn_sf_sync_UpdateFriendInfoERKNS0_8OutArrayINS6_10FriendImplEEERKNS_7account3UidERKNS0_7InArrayINSQ_23NetworkServiceAccountIdEEEm +00000000001c79d4 g DF .text 0000000000000008 _ZNK2nn3mii13AppletManager13IsInitializedEv +000000000016e150 g DF .text 0000000000000070 _ZN2nn8settings6detail31SetConsoleInformationUploadFlagEb +0000000000185ab8 g DF .text 0000000000000068 _ZN2nn5audio27GetAuxI3dl2ReverbParametersEPKNS0_18AuxI3dl2ReverbTypeE +00000000007ae780 g DO .rodata 0000000000000010 _ZN2nn4util8Vector4f12ConstantZeroE +000000000039848c g DF .text 0000000000000048 __cxa_allocate_exception +000000000011b2e4 g DF .text 00000000000001a0 _ZN2nn3err19ApplicationErrorArgC1EjPKcS3_RKNS_8settings12LanguageCodeE +000000000003b7a4 g DF .text 000000000000002c _ZN2nn4util16BinaryFileHeader14FindFirstBlockEi +00000000000c1b40 g DF .text 0000000000000054 _ZN2nn7account31NintendoAccountLinkageProcedureaSEOS1_ +0000000000189108 g DF .text 0000000000000014 _ZN2nn5audio14MemoryPoolInfoD1Ev +00000000001b5550 g DF .text 0000000000000098 _ZN2nn2la4auth26ShowParentalAuthenticationERKNS1_25ParentalAuthenticationArgE +0000000000081ca4 g DF .text 0000000000000010 nnmem_nlib_thread_priority_min +00000000000cd340 w DF .text 00000000000001d0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi69ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSI_ILm4ELm4ELl4EEEEEELm8ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEESU_j +00000000001b6274 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetEyebrowYEv +00000000001d35cc g DF .text 00000000000000b4 _ZN2nn2vi20GetDisplayErrorEventEPNS_2os15SystemEventTypeEPNS0_7DisplayE +000000000032981c w DF .text 0000000000000010 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5gbumpEi +00000000000bb280 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE35_nn_sf_sync_EnsureIdTokenCacheAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +00000000001a7b38 g DF .text 0000000000000008 _ZN2nn5audio6server6detail26GetAudioDeviceOutputVolumeEPKNS0_15AudioDeviceNameERKNS_6applet20AppletResourceUserIdEj +00000000003de25c w DF .text 00000000000000c8 _IO_putc +00000000002540e0 g DF .text 00000000000000a8 _ZN2nn3web36ShowOfflineHtmlPageArgWithPlayReportC2EPKc +00000000002b34d8 g DF .text 0000000000000060 _ZN7android12ConsumerBase15onLastStrongRefEPKv +000000000094ed00 w DO .data 0000000000000018 _ZTIN2nn3apm18IManagerPrivilegedE +0000000000150d98 g DF .text 000000000000002c _ZN2nn4nifm6detail13RequestClient14SetSustainableEb +0000000000160d20 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_ClearUnlinkedEventEv +0000000000044e48 g DF .text 0000000000000094 nndetailDiagLogImplForC +0000000000822420 g DO .rodata 0000000000000012 _ZTSNSt3__18ios_baseE +00000000000a0784 g DF .text 00000000000001c4 _ZN2nn2sm10InitializeEv +000000000094cb20 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000250658 g DF .text 000000000000003c _ZN2nn3ldn16SetOperationModeENS0_13OperationModeE +000000000097b230 g DO .data 0000000000000018 _ZTINSt3__114__codecvt_utf8IDsEE +0000000000158838 g DF .text 0000000000000050 _ZN2nn3nsd19GetNasRequestFqdnExEPNS0_4FqdnE +000000000022d034 g DF .text 0000000000000044 _ZN2nn3hid21GetSixAxisSensorStateEPNS0_18SixAxisSensorStateERKNS0_19SixAxisSensorHandleE +000000000016a924 g DF .text 0000000000000054 _ZN2nn8settings6system17GetLockScreenFlagEv +00000000000eba38 g DF .text 0000000000000664 pitch_search +0000000000122554 g DF .text 0000000000000034 _ZN2nn7friends17NotificationQueueC2Ev +00000000000be914 w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +000000000015d07c g DF .text 000000000000005c _ZN2nn4pctl16GetPinCodeLengthEv +0000000000959fc0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002500a4 g DF .text 0000000000000034 _ZN2nn3ldn17ClearAcceptFilterEv +000000000023033c g DF .text 0000000000000048 _ZNK2nn3hid15VibrationTarget22GetVibrationDeviceInfoEPNS0_19VibrationDeviceInfoE +0000000000096ee0 g DF .text 0000000000000008 _ZN2nn2os6detail36InternalCriticalSectionImplByHorizon10InitializeEv +00000000000cc5d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E54_nn_sf_sync_GetNextReturnDestinationAppletIdentityInfoENS0_3OutINS6_18AppletIdentityInfoEvEE +0000000000174884 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetUsb30EnableFlagENS0_3OutIbvEE +0000000000a85090 g DO .bss 0000000000000300 __nnmusl_fullPathDirName +000000000094d130 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001ca7d0 g DF .text 0000000000000058 _ZN2nn5swkbd6detail18InlineKeyboardImpl6AppearERKNS0_9AppearArgE +0000000000045040 g DF .text 000000000000008c _ZN2nn4diag6detail23ResetDefalutLogObserverEv +00000000001a4ed0 g DF .text 0000000000000018 _ZN2nn5audio6server23CircularBufferSinkState7CleanUpEv +000000000016e794 g DF .text 0000000000000070 _ZN2nn8settings6detail24GetPtmFuelGaugeParameterEPNS0_6system21PtmFuelGaugeParameterE +00000000003cf5c0 g DF .text 000000000000001c tgammaf +0000000000117c9c g DF .text 0000000000000040 _ZN2nn5codec30HardwareOpusMultiStreamDecoder8FinalizeEv +00000000007ac664 g DO .rodata 0000000000000020 _ZN2nn4util6detail16AtanCoefficientsE +000000000006f580 g DF .text 000000000000003c _ZN2nn4lmem15CreateFrameHeapEPvmiPNS0_6detail8HeapHeadE +000000000026dbcc g DF .text 0000000000000160 NvRmSurfaceComputeMD5 +000000000036d820 w DF .text 0000000000000054 _ZNSt3__18valarrayImEC1Em +00000000003b32b0 g DF .text 000000000000001c tgammal +00000000000b5d3c w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm8ELl0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm16ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm8EEENS2_23InRawClientArgumentTypeILm1ELm1EvEEj +00000000007d43e0 g DO .rodata 0000000000000003 silk_LTP_vq_sizes +00000000002867ec g DF .text 000000000000000c NvRmGpuDeviceZbcGetActiveSlotMask +00000000003cd26c g DF .text 0000000000000038 nearbyintf +0000000000163b64 g DF .text 0000000000000044 _ZN2nn5prepo6detail7msgpack11WriteFixMapEPNS2_17OutputStreamParamEh +0000000000959cd0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000298a54 g DF .text 000000000000003c _ZTv0_n24_N7android11IMemoryHeapD1Ev +00000000000c0148 g DF .text 00000000000000a0 _ZN2nn7account28NetworkServiceAccountManager44EnsureNetworkServiceAccountIdTokenCacheAsyncEPNS0_12AsyncContextE +0000000000177b04 g DF .text 00000000000000a4 _ZN2nn3ssl7Context9SetOptionENS1_13ContextOptionEi +0000000000244578 w DF .text 0000000000000958 _ZN22nerd_gillette_internal5otete11ImageCodec213DecodeInPlaceIhNS0_14InputBitStreamEZNS1_13DecodeInPlaceIhEEbRKNS_15StaticImageViewIT_EERS3_fEUliiE_EEbS9_RT0_RKT1_f +00000000003cd2a4 g DF .text 000000000000004c nearbyintl +000000000097beb0 w DO .data 0000000000000018 _ZTINSt3__117moneypunct_bynameIwLb1EEE +0000000000823b60 w DO .rodata 000000000000001c _ZTSNSt3__110moneypunctIwLb0EEE +000000000008e5b0 g DF .text 000000000000003c _ZN2nn2os15WaitSystemEventEPNS0_15SystemEventTypeE +00000000007eb070 w DO .rodata 0000000000000024 _ZTSN2nn5audio6detail15IAudioInManagerE +00000000002c8880 g DF .text 000000000000000c sync_dup +00000000000d6028 g DF .text 0000000000000098 _ZN2nn4bcat22DeliveryCacheDirectoryD1Ev +00000000002cf47c g DF .text 000000000000004c _ZN7android7String85clearEv +0000000000801d30 w DO .rodata 00000000000000c5 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000201e30 g DF .text 0000000000000050 FsLttComponent_init +0000000000098808 g DF .text 00000000000000f8 _ZN2nn2ro6detail4BindEPNS1_8RoModuleEj +000000000009aad8 g DF .text 00000000000000d8 _ZThn8_N2nn2sf4cmif6server23CmifServerDomainManager6Domain9GetObjectENS1_18CmifDomainObjectIdE +0000000000080c14 g DF .text 00000000000000b4 nnmem_nlib_virtual_alloc +00000000003e0084 g DF .text 000000000000004c .protected __uflow +00000000001d0194 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetDisplayErrorEventENS0_3OutINS0_12NativeHandleEvEEm +0000000000124b0c g DF .text 000000000000004c _ZN2nn7friends6detail20AsyncContextInternal11IsCompletedEv +00000000000888dc g DF .text 0000000000000004 _ZN2nn7nlibsdk4heap18NotNMallocPtrErrorEPKv +00000000007bec70 w DO .rodata 0000000000000195 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail9INotifierENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000003470c4 w DF .text 0000000000000008 _ZNKSt3__110moneypunctIwLb1EE16do_decimal_pointEv +00000000000a0118 g DF .text 0000000000000008 _ZN2nn2sf4hipc21GetMessageBufferOnTlsEv +0000000000361be0 g DF .text 000000000000005c _ZNSt3__113random_deviceC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +0000000000823f50 w DO .rodata 000000000000002b _ZTSNSt3__114codecvt_bynameIDic11__mbstate_tEE +0000000000084788 g DF .text 0000000000000650 _ZN2nn7nlibsdk4heap14TlsHeapCentral10AllocPagesEm +000000000008a70c g DF .text 0000000000000050 _ZN2nn3mem19NumberLineAllocator8FinalizeEv +00000000001503a8 g DF .text 0000000000000080 _ZN2nn3ngc6detail12SwapEndian32EPjm +0000000000949670 w DO .data 0000000000000028 _ZTIN2nn7account31NintendoAccountLinkageProcedureE +0000000000151c48 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E12GetProxyInfoEv +00000000003cab90 g DF .text 0000000000000074 frexpf +00000000007d4cdd g DO .rodata 0000000000000004 silk_max_pulses_table +000000000014e1a4 g DF .text 0000000000000628 _ZN2nn3ngc6detail9SparseSet5BuildEv +000000000006d318 g DF .text 0000000000000070 _ZN2nn3htc18GetBridgeIpAddressEPcm +0000000000356c7c g DF .text 000000000000009c _ZNSt3__17codecvtIwc11__mbstate_tEC1Em +00000000002300dc g DF .text 000000000000004c _ZN2nn3hid15VibrationTargetC2Ev +00000000000bb610 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_IsRegisteredENS0_3OutIbvEE +00000000003cac04 g DF .text 00000000000000b8 frexpl +00000000003b98fc g DF .text 0000000000000004 cabs +0000000000183898 g DF .text 0000000000000090 _ZN2nn3aoc16ListAddOnContentEPiiiNS_13ApplicationIdE +0000000000318afc w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000003b32ec g DF .text 0000000000000008 __nnmusl_force_add +000000000024c938 g DF .text 0000000000000258 _ZN2nn3kpr6detail10GetKeyCodeEPNS0_7KeyCodeEiNS_4util10BitFlagSetILi32ENS_3hid16KeyboardModifierEEERKNS1_17KeyCodeMapStorageENS0_14KeyCodeMapModeE +00000000000ca92c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service21ILibraryAppletCreatorEEEvi +000000000014f438 g DF .text 00000000000000b4 _ZNK2nn3ngc6detail15CompressedArrayixEm +00000000000c17e0 g DF .text 0000000000000058 _ZN2nn7account42NintendoAccountAuthorizationRequestContext10GetIdTokenEPmPcm +0000000000954b38 w DO .data 0000000000000108 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000001b6284 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetNoseScaleEv +000000000018d108 g DF .text 0000000000000008 _ZN2nn5audio6common13NodeIdManager16GetInvalidNodeIdEv +00000000001ce854 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetDisplayCmuModeENS0_3OutIjvEEm +000000000012a694 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc20INotificationServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +0000000000182648 w DF .text 0000000000000224 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm208EEENSC_17InRawArgumentInfoILm32ELm8ELl8EEENSI_ILm32ELm8ELl40EEENSI_ILm1ELm1ELl0EEEEEELm72ELm0ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm32ELm8EvEESV_NSU_ILm1ELm1EvEEj +000000000002f610 g DF .text 0000000000000014 _ZN2nn5image11ExifBuilder14SetOrientationENS0_15ExifOrientationE +00000000000d1850 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E31_nn_sf_sync_GetPerformanceEventENS0_3OutINS0_12NativeHandleEvEENS5_11EventTargetE +0000000000230f30 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E41_nn_sf_sync_GetDestinationFirmwareVersionENS0_3OutINS5_6system15FirmwareVersionEvEEjNS_4util10BitFlagSetILi32ENSL_10DeviceTypeEEE +0000000000248870 g DF .text 0000000000000004 _ZN22nerd_gillette_internal5otete7jaimev123DecodeFullSilhouetteROKERNS_30ContiguousStorageContainerBaseINS_15NumericalVectorIfLm2EEELb1EEERNS0_14InputBitStreamERKNS1_23FullSilhouetteCodecDataEPFS4_NS3_IsLm2EEEE +000000000036bffc g DF .text 00000000000000ac _ZNSt3__19strstreamD2Ev +000000000019d2ec g DF .text 0000000000000010 _ZN2nn5audio6server13CommandBufferC2EPvmmRKNS1_14MemoryPoolInfoERNS1_30CommandProcessingTimeEstimatorE +00000000001b5acc g DF .text 0000000000000004 _ZN2nn2la32NifmToWifiWebAuthArgumentsWriterD2Ev +00000000007fc550 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail29RandomMiiFacelineWrinkleTableE +000000000023c410 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E29_nn_sf_sync_RunIrLedProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleENS5_26PackedIrLedProcessorConfigE +000000000094dfc0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IOverlayAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001917c4 g DF .text 00000000000000e4 _ZN2nn5audio37CreateAudioInManagerForDebuggerByHipcEv +00000000003562f0 g DF .text 0000000000000190 _ZNKSt3__112ctype_bynameIwE5do_isEPKwS3_Pt +00000000002923c4 g DF .text 000000000000001c NvWsiGetFormatInfo +00000000000934e4 g DF .text 000000000000005c _ZN2nn2os6detail26MultiWaitHolderOfSemaphore20RemoveFromObjectListEv +000000000011b65c g DF .text 0000000000000014 _ZN2nn3err18ErrorResultVariantC1ERKNS0_9ErrorCodeE +00000000001b5758 g DF .text 0000000000000004 _ZN2nn2la21CommonArgumentsWriterD1Ev +000000000094cd68 w DO .data 00000000000000e8 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22ILibraryAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000002d356c g DF .text 00000000000000a0 _ZNK7android16SortedVectorImpl7orderOfEPKv +00000000000cd02c w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E28_nn_sf_sync_SetThumbnailRgbaERKNS0_8InBufferEii +00000000000dd830 g DF .text 0000000000000064 init_caps +00000000001c8da0 g DF .text 0000000000000004 _ZN2nn2pl9EndVrModeEv +000000000010364c g DF .text 00000000000000c0 silk_fit_LTP +000000000002e59c g DF .text 0000000000000020 _ZN2nn5image11JpegDecoderC1Ev +00000000001b74f0 g DF .text 0000000000000020 _ZN2nn3mii6detail14GetCommonColorENS0_11CommonColorENS0_9GammaTypeE +000000000004ea00 g DF .text 00000000000000b8 _ZN2nn2fs3fsa8RegisterEPKcONSt3__110unique_ptrINS1_11IFileSystemENS4_14default_deleteIS6_EEEE +000000000008cfd8 g DF .text 000000000000002c _ZN2nn2os27InitializeConditionVariableEPNS0_21ConditionVariableTypeE +0000000000187c30 g DF .text 000000000000004c _ZN2nn5audio16SetReverbEnabledEPNS0_10ReverbTypeEb +0000000000359a88 g DF .text 0000000000000100 _ZNKSt3__115__codecvt_utf16IDiLb0EE9do_lengthER11__mbstate_tPKcS5_m +00000000001871f4 g DF .text 0000000000000020 _ZN2nn5audio17ReadAuxSendBufferEPNS0_7AuxTypeEPii +0000000000168548 g DF .text 0000000000000044 _ZN2nn8settings6system30GetExternalSteadyClockSourceIdEPNS_4util4UuidE +000000000019c4b8 g DF .text 000000000000003c _ZN2nn5audio6server24AudioRendererManagerImplD2Ev +00000000001b58e8 g DF .text 0000000000000018 _ZN2nn2la31NifmToNetConnectArgumentsWriterC2ENS_6ResultERKNS_4util4UuidE +0000000000a80d58 g DO .bss 0000000000000010 _ZNSt3__15ctypeIwE2idE +000000000009f9e0 w DF .text 0000000000000170 _ZN2nn2sf4cmif6server6detail34CmifProcessFunctionTableGetterImplINS0_4hipc6detail12IHipcManagerEE29Process_CopyFromCurrentDomainEPPNS1_13CmifOutHeaderEPS7_PNS2_17CmifServerMessageEONS0_6detail14PointerAndSizeE +0000000000952e70 w DO .data 0000000000000018 _ZTIN2nn3nfp6detail12IUserManagerE +000000000094bea0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003ab1d8 g DF .text 0000000000000004 pthread_setspecific +0000000000979870 w DO .data 0000000000000028 _ZTINSt3__113basic_istreamIcNS_11char_traitsIcEEEE +00000000008223a0 g DO .rodata 0000000000000004 _ZNSt3__18ios_base3octE +00000000000fd7a0 g DF .text 000000000000020c silk_resampler_down2_3 +0000000000119e84 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_23InRawClientArgumentTypeILm8ELm4EvEEj +000000000033705c w DF .text 0000000000000464 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIeEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000001bcd70 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw15SetEyebrowColorEi +00000000000937fc g DF .text 0000000000000050 _ZN2nn2os6detail36MultiWaitHolderOfMessageQueueNotFull15AddToObjectListEv +00000000001d3518 g DF .text 00000000000000b4 _ZN2nn2vi28GetDisplayVsyncEventForDebugEPNS_2os15SystemEventTypeEPNS0_7DisplayE +0000000000274588 g DF .text 00000000000000b4 NvRmFenceWait +0000000000047228 g DF .text 0000000000000054 _ZN2nn2fs6detail8IdString8ToStringINS0_11ContentTypeEEEPKcT_ +0000000000049ba0 w DF .text 0000000000000040 _ZN2nn2fs10SubStorageD0Ev +00000000009482e0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas28IFloatingRegistrationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +000000000019a5bc g DF .text 000000000000007c _ZN2nn5audio23StopFinalOutputRecorderEPNS0_19FinalOutputRecorderE +000000000015ebf0 g DF .text 0000000000000008 _ZN2nn4pctl18PairingAccountInfoD1Ev +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__17codecvtIDic11__mbstate_tED2Ev +00000000002a39e0 g DF .text 00000000000000b4 _ZN7android17HOSServiceManager18removeServiceProxyERKNS_7String8E +0000000000358cf4 g DF .text 0000000000000068 _ZNKSt3__114__codecvt_utf8IDiE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_ +000000000006ed6c g DF .text 0000000000000034 nninitInitializeSdkModule +000000000024be9c g DF .text 0000000000000060 _ZN2nn3kpr15KeyCodeComposer7DequeueEPti +00000000002d34a8 g DF .text 0000000000000014 _ZN7android16SortedVectorImplD0Ev +0000000000189408 g DF .text 0000000000000040 _ZN2nn5audio17MemoryPoolManagerC2EPNS0_14MemoryPoolInfoEi +00000000001b8c50 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw16GetFacelineColorEv +00000000001ca2d0 g DF .text 0000000000000004 _ZN2nn5swkbd6detail18InlineKeyboardImplD2Ev +0000000000199680 g DF .text 0000000000000008 _ZN2nn5audio27GetAudioInBufferDataPointerEPKNS0_13AudioInBufferE +0000000000070a54 g DF .text 0000000000000068 _ZN2nn4lmem6detail15CreateFrameHeapEPvmi +000000000008ce3c g DF .text 0000000000000010 _ZN2nn2os11SetHostArgcEi +000000000020eb40 g DF .text 000000000000034c check_scale +0000000000168858 g DF .text 0000000000000048 _ZN2nn8settings6system44SetUserSystemClockAutomaticCorrectionEnabledEb +00000000003a4654 g DF .text 00000000000000c4 __powixf2 +00000000000ba800 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEE15_nn_sf_sync_GetENS0_3OutINS6_11ProfileBaseEvEENSR_INS6_8UserDataEvEE +0000000000175b10 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm4ELl0EEENSB_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm4EvEENSK_ILm4ELm4EvEEj +00000000002a0c3c g DF .text 0000000000000208 _ZNK7android6Parcel24readParcelFileDescriptorERi +00000000003e0568 g DF .text 000000000000000c llabs +00000000000834ec w DF .text 00000000000001ac _ZN2nn7nlibsdk4heap12TlsHeapCache14FreeFunc_Mode0INSt3__117integral_constantIbLb1EEEEEiPS2_Pv +000000000020397c g DF .text 0000000000000728 extract_outline +00000000003281a8 g DF .text 000000000000000c _ZNSt3__120__threads_data_queue12release_nodeEPNS_21__horizon_thread_dataE +00000000000f09f0 g DF .text 0000000000000050 silk_CNG_Reset +00000000001bc7f4 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw16GetFacelineColorEv +0000000000049d24 w DF .text 00000000000000c0 _ZN2nn2fs10SubStorage7SetSizeEl +00000000001561d4 g DF .text 0000000000000090 _ZN2nn4nifm24GetCurrentNetworkProfileEPNS0_18NetworkProfileDataE +00000000002cb8dc g DF .text 0000000000000008 _ZNK7android6Region5beginEv +00000000000baac8 w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm56ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm128EEENSI_ILi1ELi5ELm0EEEEEELm56ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm56ELm8EvEENS2_24BufferClientArgumentTypeESU_j +000000000015eb94 g DF .text 0000000000000050 _ZN2nn4pctl20CancelNetworkRequestEv +0000000000233b7c w DF .text 0000000000000120 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl24EEENSB_ILm4ELm4ELl0EEENSB_ILm16ELm4ELl4EEEEEELm32ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm16ELm4EvEEj +0000000000825108 g DO .rodata 000000000000000d _ZTSSt9bad_alloc +00000000000ce42c w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE29_nn_sf_sync_GetDebugFunctionsENS0_3OutINS0_13SharedPointerINS6_15IDebugFunctionsEEEvEE +000000000032e57c w DF .text 00000000000000fc _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4peekEv +000000000036d40c g DF .text 000000000000001c _ZNSt3__132__libcpp_recursive_mutex_trylockEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +000000000016ec04 g DF .text 0000000000000028 _ZN2nn8settings6detail16CopySettingsNameEPNS0_12SettingsNameEPKc +000000000035a89c g DF .text 0000000000000040 _ZNSt3__115numpunct_bynameIcED1Ev +0000000000165308 g DF .text 00000000000000a0 _ZN2nn5prepo10PlayReportC1EPKc +0000000000188bbc g DF .text 00000000000000bc _ZN2nn5audio13EffectManager6RemoveEPNS0_10EffectInfoEPNS0_7MixInfoE +000000000022e62c g DF .text 000000000000001c _ZN2nn3hid6system35ResetSixAxisSensorCalibrationValuesERKNS1_25UniqueSixAxisSensorHandleE +000000000009138c g DF .text 0000000000000008 nnosInitializeMutex +00000000007d3c5c g DO .rodata 0000000000000019 eMeans +00000000001d0240 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_AddToLayerStackEmj +00000000001afcd4 g DF .text 00000000000000f0 _ZN2nn5audio3dsp16ApplyUniformGainEPiPKiii +00000000002368c0 g DF .text 0000000000000108 _ZN2nn8irsensor6detail28CheckFirmwareUpdateNecessityEPbRKNS0_14IrCameraHandleE +000000000036d674 g DF .text 000000000000001c _ZNSt3__119__libcpp_tls_createEPNSt13__libcxx_shim19__libcxx_shim_ver_111__tls_key_tEPFvmE +00000000000b20c4 g DF .text 0000000000000048 _ZN2nn7account6detail18OAuthProcedureBase4SwapERS2_ +00000000003a4e90 g DF .text 0000000000000038 __udivmodsi4 +00000000007c41c0 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007f0cd0 w DO .rodata 0000000000000050 _ZTSN2nn5audio6server10EffectInfoILNS0_10EffectTypeE1ENS0_20BufferMixerParameterEEE +00000000001c0378 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetBeardScaleEv +00000000002cdbb8 g DF .text 0000000000000018 _ZN7android10HeapObjectdlEPv +00000000001d5a84 g DF .text 0000000000000028 _ZN2nn2vi6detail22ServiceReferenceHolder21GetIndirectLayerTableEPPNS1_18IndirectLayerTableE +000000000039f0b4 g DF .text 000000000000003c __ashldi3 +0000000000805914 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout6GermanE +00000000002b3200 g DF .text 0000000000000200 _ZN7android12ConsumerBaseD2Ev +0000000000074b60 w DF .text 0000000000000080 nnmem_nlib_wcsnlen +0000000000160574 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E22_nn_sf_sync_InitializeEv +000000000022251c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm14EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +000000000024c754 g DF .text 00000000000001a4 _ZN2nn3kpr6detail20FlushKeyCodeComposerEPNS1_22KeyCodeComposerStorageE +00000000000f3274 g DF .text 00000000000000ac silk_NLSF_unpack +000000000080d7c0 w DO .rodata 0000000000000020 _ZTSN2nn8irsensor15IIrSensorServerE +00000000000da748 g DF .text 0000000000000f38 quant_all_bands +0000000000097fcc w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_2ro6detail12IRoInterfaceEED2Ev +00000000007c9cc0 w DO .rodata 0000000000000028 _ZTSN2nn2am7service21ILibraryAppletCreatorE +00000000003dc8e8 w DF .text 00000000000001a8 fflush_unlocked +0000000000091328 g DF .text 0000000000000004 nnosGetCurrentProcessorNumber +00000000007bc080 w DO .rodata 0000000000000161 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_EE +00000000000c6ef8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_IsSystemBufferSharingEnabledEv +00000000003e78b0 w DF .text 0000000000000004 memalign +0000000000229920 g DF .text 0000000000000044 _ZN2nn3hid5debug27UnsetKeyboardAutoPilotStateEv +00000000002d31ec g DF .text 000000000000000c _ZN7android10VectorImpl5clearEv +00000000003db9e8 w DF .text 0000000000000038 hdestroy_r +000000000005d8f4 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client28Hipc2ClientCoreProcessorImpl19GetOutNativeHandlesEPNS1_6detail17HipcMessageReaderEiiPNS0_12NativeHandleEPKi +00000000007c1e90 w DO .rodata 0000000000000178 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000013f9a4 g DF .text 0000000000000108 _ZN2nn3nfp13StartRestorerEPNS0_7TagInfoEPNS0_12DeviceHandleERKNS0_24AmiiboSettingsStartParamE +00000000000ce67c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE17GetCmifBaseObjectEv +00000000001cbb50 g DF .text 0000000000000070 _ZN2nn2vi23GetDisplayContrastRatioEPfPKNS0_7DisplayE +00000000007e2e60 w DO .rodata 0000000000000114 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001a7b70 g DF .text 0000000000000004 _ZN2nn5audio6common30DumpCommandStructSizeAndAlignsEv +000000000023c330 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E33_nn_sf_sync_GetNpadIrCameraHandleENS0_3OutINS5_14IrCameraHandleEvEEj +00000000000a1bc0 g DF .text 0000000000000018 nnsocketFinalize +0000000000823030 w DO .rodata 0000000000000015 _ZTSNSt3__110ctype_baseE +00000000000b3ae8 g DF .text 00000000000000a0 _ZN2nn7account24GetProfileUpdateNotifierEPNS0_8NotifierE +00000000000b037c g DF .text 00000000000000bc _ZN2nn6socket8resolver10serializer19FreeHostentContentsER7hostent +000000000023496c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E44_nn_sf_sync_EnableAssigningSingleOnSlSrPressENS_6applet20AppletResourceUserIdE +00000000001316d0 w DF .text 0000000000000178 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm66ELm2ELl0EEEEEELm66ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEEST_NS2_23InRawClientArgumentTypeILm66ELm2EvEEj +00000000009549f0 w DO .data 0000000000000018 _ZTIN2nn5prepo6detail3ipc13IPrepoServiceE +00000000001a3560 g DF .text 0000000000000010 _ZNK2nn5audio6server10PoolMapper3MapEjNS0_7CpuAddrEm +00000000003ab100 w DF .text 0000000000000004 pthread_once +000000000012a880 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +00000000000fbd64 g DF .text 00000000000003ac silk_encode_indices +00000000001aa480 g DF .text 0000000000000008 _ZN2nn5audio3dsp7MailBox4OpenEib +00000000007c4de0 w DO .rodata 000000000000011b _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEEE +00000000000ffc48 g DF .text 0000000000000030 silk_stereo_decode_mid_only +0000000000155bf4 g DF .text 0000000000000050 _ZN2nn4nifm33StartHandlingNetworkRequestResultERKNS_6applet19LibraryAppletHandleEPv +00000000009522f0 w DO .data 0000000000000018 _ZTIN2nn3nfc6detail7ISystemE +00000000003456b4 g DF .text 00000000000002ac _ZNSt3__118__time_get_storageIwEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +0000000000190444 g DF .text 000000000000005c _ZN2nn5audio30UnregisterAppletResourceUserIdENS_6applet20AppletResourceUserIdE +00000000003d2968 g DF .text 0000000000000178 mbsnrtowcs +000000000018ae9c g DF .text 0000000000000044 _ZN2nn5audio20GetSplitterMixVolumeEPKNS0_12SplitterTypeEiPKNS0_7MixInfoEii +0000000000801f80 w DO .rodata 0000000000000027 _ZTSN2nn5visrv2sf22IManagerDisplayServiceE +0000000000258f2c g DF .text 0000000000000174 nvdcQueryDisplayEdid +0000000000126190 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E61_nn_sf_sync_SendFriendRequestWithExternalApplicationCatalogIdERKNS_7account3UidENSL_23NetworkServiceAccountIdEiRKNS5_28ExternalApplicationCatalogIdERKNS5_15InAppScreenNameESV_ +00000000003e82dc g DF .text 00000000000004b8 __nnmusl_init_dso +00000000001cb444 g DF .text 0000000000000088 _ZN2nn5swkbd6detail18InlineKeyboardImpl13CalcMovedTab_ENS_6applet13StorageHandleEm +0000000000800fe0 w DO .rodata 0000000000000023 _ZTSN2nn5visrv2sf18ISystemRootServiceE +00000000000a5498 g DF .text 0000000000000138 _ZN2nn6socket6detail15DuplicateSocketEim +00000000000c90c0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000d5144 g DF .text 0000000000000120 _ZN2nn4bcat27UnmountDeliveryCacheStorageEv +00000000003a92cc g DF .text 0000000000000004 fstat +00000000000a198c g DF .text 0000000000000004 _ZN2nn6socket9InetNtohsEt +000000000017d4a0 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_7timesrv6detail7service14IStaticServiceEED2Ev +000000000022c228 g DF .text 0000000000000044 _ZN2nn3hid29SetNpadHandheldActivationModeENS0_26NpadHandheldActivationModeE +00000000001c9e30 g DF .text 0000000000000008 _ZN2nn5swkbd14InlineKeyboard25GetRequiredWorkBufferSizeEv +000000000025d040 g DF .text 0000000000000010 NvOsFopen +0000000000364580 w DF .text 000000000000004c _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmPKc +00000000007d4e5b g DO .rodata 0000000000000098 silk_shell_code_table0 +000000000013ec18 g DF .text 00000000000000e0 _ZN2nn3nfp10InitializeEv +000000000036d318 g DF .text 0000000000000038 _ZNSt3__115__thread_structD1Ev +00000000007d4ef3 g DO .rodata 0000000000000098 silk_shell_code_table1 +00000000007e929c g DO .rodata 0000000000000004 _ZN2nn5audio8SinkInfo13InputCountMaxE +00000000007d4f8b g DO .rodata 0000000000000098 silk_shell_code_table2 +000000000023c79c w DF .text 0000000000000170 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm24ELm8ELl16EEENS7_20InHandleArgumentInfoILi0ELi1EEENSB_ILm8ELm8ELl40EEEEEELm48ELm0ELb1EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSO_ILm4ELm4EvEENSO_ILm24ELm8EvEENSN_26InHandleClientArgumentTypeESP_j +00000000007d5023 g DO .rodata 0000000000000098 silk_shell_code_table3 +000000000017b464 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E31_nn_sf_sync_GetSocketDescriptorENS0_3OutIivEE +000000000094e590 w DO .data 0000000000000018 _ZTIN2nn2am7service24IApplicationProxyServiceE +000000000018d9b8 g DF .text 000000000000000c _ZN2nn5audio16DelayLineNextOutEPNS0_11FXDelayLineE +000000000029dd6c g DF .text 000000000000031c _ZN7android6Parcel13continueWriteEm +0000000000955140 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +0000000000048b98 g DF .text 000000000000006c _ZN2nn2fs24HierarchicalRomFileTable8FindOpenEPNS1_12FindPositionERKNS1_8EntryKeyE +00000000003a9824 g DF .text 000000000000003c ftrylockfile +0000000000956160 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +0000000000286e28 g DF .text 000000000000000c NvRmGpuRegOpsSessionSetHwpmContextSwitchMode +000000000035a7bc g DF .text 0000000000000024 _ZNSt3__116__narrow_to_utf8ILm16EED0Ev +00000000003a4c1c g DF .text 0000000000000274 __udivmoddi4 +0000000000238a28 g DF .text 00000000000000a0 _ZN2nn8irsensor6detail13StatusManager22GetIrSensorAruidStatusEPNS_4util10BitFlagSetILi32ENS1_16AppletStatusFlagEEERKNS_6applet20AppletResourceUserIdE +000000000097e358 g DO .data 0000000000000050 _ZTVN10__cxxabiv117__class_type_infoE +0000000000316444 g DF .text 0000000000000038 _ZN2nn3i2c7ReceiveEPvRKNS0_10I2cSessionEmNS0_17TransactionOptionE +0000000000170e7c g DF .text 0000000000000138 _ZN2nn8settings6detail32CreateFactorySettingsServerProxyEPNS_2sf13SharedPointerINS0_22IFactorySettingsServerEEE +00000000000b7f78 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +00000000003195a8 w DF .text 0000000000000204 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi10ELm0EEENSB_ILi1ELi10ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm8ELm4ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESP_NSO_24OutRawClientArgumentTypeILm4ELm4EEENSO_23InRawClientArgumentTypeILm4ELm4EvEEST_j +00000000000c1e6c g DF .text 0000000000000054 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureaSEOS1_ +0000000000096ad8 g DF .text 00000000000001f0 nnosInitialize +00000000000c8d68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE17_nn_sf_sync_StartEv +0000000000979930 w DO .data 0000000000000050 _ZTCNSt3__114basic_iostreamIcNS_11char_traitsIcEEEE0_NS_13basic_istreamIcS2_EE +00000000003ac0ec g DF .text 00000000000010a0 __floatscanl +000000000017a3b4 g DF .text 0000000000000014 _ZN2nn3ssl6detail10SslApiBaseC1Ev +000000000018ab2c g DF .text 0000000000000008 _ZN2nn5audio29GetSplitterSourceChannelCountEPKNS0_12SplitterTypeE +0000000000326e84 g DF .text 00000000000000a0 _ZNSt3__117__assoc_sub_state9__executeEv +00000000003c3b04 w DF .text 000000000000005c strerror_l +00000000001d2774 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +00000000001723ac g DF .text 0000000000000138 _ZN2nn8settings6detail38CreateFirmwareDebugSettingsServerProxyEPNS_2sf13SharedPointerINS0_28IFirmwareDebugSettingsServerEEE +0000000000228d60 g DF .text 000000000000001c _ZN2nn3hid5debug18GetFirmwareVersionEPNS0_6system15FirmwareVersionEjNS_4util10BitFlagSetILi32ENS2_10DeviceTypeEEE +0000000000128efc w DF .text 000000000000016c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm8ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm16ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm8EEENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +00000000001bcf9c g DF .text 0000000000000030 _ZN2nn3mii6detail11UtilityImpl9GetRandomEi +0000000000361b50 g DF .text 0000000000000034 _ZSt17__throw_bad_allocv +00000000000b70e8 w DF .text 0000000000000218 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_20InHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_26InHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000007ccbd0 w DO .rodata 000000000000011a _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEEE +0000000000179d88 g DF .text 0000000000000018 nnsslInitializeWithConcurrencyLimit +00000000001bc868 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetBeardTypeEv +0000000000228efc g DF .text 0000000000000060 _ZN2nn3hid16GetGestureStatesEPNS0_12GestureStateEi +00000000003e2204 g DF .text 000000000000007c strerror_r +000000000020f150 g DF .text 00000000000000d8 modify_scale +00000000007b4a20 w DO .rodata 0000000000000022 _ZTSN2nn5fssrv2sf17ISaveDataImporterE +000000000014484c g DF .text 000000000000002c _ZN2nn3ngc6wcslenEPKDs +0000000000329024 w DF .text 0000000000000038 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5sputcEc +00000000008223cc g DO .rodata 0000000000000004 _ZNSt3__18ios_base10floatfieldE +000000000094fe10 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000008223bc g DO .rodata 0000000000000004 _ZNSt3__18ios_base7unitbufE +00000000001a0e24 g DF .text 000000000000006c _ZN2nn5audio6server11InfoUpdaterC2EmmmmjRNS1_12BehaviorInfoE +0000000000197ed0 g DF .text 0000000000000004 _ZN2nn5audio15StopCpuProfilerEv +000000000036d4d4 g DF .text 0000000000000070 _ZNSt3__126__libcpp_condvar_timedwaitEPNSt13__libcxx_shim19__libcxx_shim_ver_132__libcxx_shim_condition_variableEPNS1_19__libcxx_shim_mutexEP8timespec +00000000002a6510 g DF .text 00000000000000a4 _ZN7android22IGraphicBufferConsumer10BufferItemC1Ev +00000000003c2574 w DF .text 0000000000000014 isalpha_l +00000000000a1be8 g DF .text 000000000000000c nnsocketGetHostByName +000000000025efcc g DF .text 000000000000003c NvUAlloc0 +00000000003654b8 w DF .text 00000000000000d4 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKwm +0000000000089a04 g DF .text 000000000000000c _ZN2nn7nlibsdk4heap10CachedHeap12FreeWithSizeEPvm +0000000000947200 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile8IProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000001a5160 g DF .text 0000000000000140 _ZN2nn5audio6server23SplitterDestinationData6UpdateEPKNS0_23SplitterDestinationData11InParameterE +00000000003e308c g DF .text 0000000000000030 wcpcpy +0000000000142a90 g DF .text 00000000000006a0 _ZN2nn3ngc15ProfanityFilter28MaskProfanityWordsInTextImplEPiPcS3_PaiPmS5_ +00000000001a5514 g DF .text 0000000000000008 _ZNK2nn5audio6server15SplitterContext12GetDataCountEv +00000000007c4490 w DO .rodata 0000000000000156 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service30IAllSystemAppletProxiesServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000013e210 g DF .text 000000000000010c _ZN2nn3nfp13StartRestorerEPNS0_12DeviceHandleERKNS0_24AmiiboSettingsStartParamERKNS0_7TagInfoE +0000000000978c20 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +000000000094e2d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service17IApplicationProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000d3770 g DF .text 00000000000000dc _ZN2nn6applet16UnpopToInChannelENS0_23LibraryAppletSelfHandleENS0_13StorageHandleE +000000000017a3dc g DF .text 0000000000000020 _ZN2nn3ssl6detail10SslApiBase10InitializeEv +0000000000234ad8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E42_nn_sf_sync_UnregisterAppletResourceUserIdENS_6applet20AppletResourceUserIdE +00000000002aa56c g DF .text 00000000000000ac _ZN7android10BufferItemC1Ev +0000000000122478 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest10GetMiiNameEv +00000000003d3450 g DF .text 0000000000000010 srand +00000000000d4bd0 g DF .text 0000000000000080 _ZN2nn6applet35OverrideAutoSleepTimeAndDimmingTimeEiiii +00000000007cb1b0 w DO .rodata 0000000000000152 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service26ILibraryAppletSelfAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000018dfa0 g DF .text 0000000000000048 _ZN2nn5audio18ApplyUniformVolumeEPsPKsfi +000000000004c72c w DF .text 0000000000000070 _ZN2nn2fs13MemoryStorage5WriteElPKvm +00000000001c32a8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetFaceColorEi +000000000003ba48 g DF .text 000000000000016c _ZN2nn4util15RelocationTable10UnrelocateEv +00000000000d8180 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +000000000082238c g DO .rodata 0000000000000004 _ZNSt3__18ios_base3decE +0000000000091438 g DF .text 0000000000000004 nnosSignalEvent +00000000007e0d80 w DO .rodata 000000000000015d _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +00000000007e6390 w DO .rodata 000000000000001d _ZTSN2nn3ssl2sf14ISslConnectionE +000000000004f1a0 g DF .text 00000000000000dc _ZN2nn2fs9FlushFileENS0_10FileHandleE +000000000011c950 g DF .text 0000000000000164 _ZN2nn7friends6detail16PresenceAccessor9SearchKeyEPKcS4_m +00000000000d4e70 g DF .text 0000000000000008 _ZN2nn4bcat6detail25DeliveryCacheProgressImpl20SetWholeDownloadSizeEl +0000000000803900 g DO .rodata 0000000000000019 _ZTSN2nn3hid6detail7SessionE +00000000007b0f20 g DO .rodata 0000000000000004 _ZN2nn2fs24HierarchicalRomFileTable28DirectoryCountSystemReservedE +000000000019c538 g DF .text 00000000000001cc _ZN2nn5audio6server24AudioRendererManagerImpl17OpenAudioRendererENS_2sf3OutINS3_13SharedPointerINS0_6detail14IAudioRendererEEEvEERKNS6_30AudioRendererParameterInternalENS3_12NativeHandleESD_mNS_6applet20AppletResourceUserIdE +000000000028a8e8 g DF .text 0000000000000008 NvRmGpuNvgpuGetGpuCtrlFd +00000000008220e0 g DO .rodata 0000000000000015 _ZTSSt16nested_exception +0000000000339d9c w DF .text 00000000000004ac _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedIyEES4_S4_S4_RNS_8ios_baseERjRT_ +000000000005090c g DF .text 00000000000000f8 _ZN2nn2fs29SetConcatenationFileAttributeEPKc +000000000094e2b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service17IApplicationProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000cef0c w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl8EEENSG_ILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm16ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENSR_ILm4ELm4EvEEST_j +00000000007e5900 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_EE +00000000002a666c g DF .text 0000000000000230 _ZNK7android22IGraphicBufferConsumer10BufferItem7flattenERPvRmRPiS4_ +00000000001712a0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_GetEticketDeviceKeyENS0_3OutINS5_7factory16Rsa2048DeviceKeyEvEE +00000000003cb1f4 w DF .text 000000000000070c lgammaf_r +00000000000bcff0 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +000000000016ef08 g DF .text 00000000000000f8 _ZN2nn8settings6detail29CreateSettingsItemKeyIteratorEPNS0_5fwdbg23SettingsItemKeyIteratorEPKc +00000000001bf79c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetEyeScaleEv +00000000000d6fe8 g DF .text 0000000000000048 _ZNK2nn4bcat21DeliveryCacheProgress18GetCurrentFileNameEv +000000000080c560 w DO .rodata 00000000000000ef _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEEvEE +000000000094b820 w DO .data 0000000000000080 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service30IAllSystemAppletProxiesServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000174a78 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_GetLdnChannelENS0_3OutIivEE +0000000000238d50 g DF .text 000000000000004c _ZN2nn8irsensor6detail13StatusManager22AllocateTeraPluginLifoERKNS0_14IrCameraHandleE +00000000007e6d00 w DO .rodata 00000000000001c4 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISystemClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +00000000003abf28 g DF .text 000000000000004c strftime +0000000000044730 g DF .text 000000000000005c nndetailDiagAbortFormatImpl +0000000000147654 g DF .text 0000000000000074 _ZN2nn3ngc6detail3Bp_C1EPNS1_16WorkBufAllocatorE +00000000007e71e0 w DO .rodata 000000000000017b _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +00000000000b92ac w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSG_ILm8ELm8ELl16EEEEEELm24ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSQ_ILm8ELm8EvEEj +000000000035fefc w DF .text 0000000000000118 _ZNSt3__127__num_get_unsigned_integralItEET_PKcS3_Rji +000000000094e110 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002cdbec g DF .text 0000000000000008 _ZN7android7RefBase20onIncStrongAttemptedEjPKv +0000000000330750 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPKv +00000000001729c0 w DF .text 00000000000001e4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi25ELm72EEENSB_ILi1ELi25ELm72EEEEEELm0ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESK_j +000000000009f190 w DF .text 0000000000000024 _ZNK2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage18GetInNativeHandlesEPNS0_12NativeHandleE +0000000000238d04 g DF .text 000000000000004c _ZN2nn8irsensor6detail13StatusManager20AllocatePointingLifoERKNS0_14IrCameraHandleE +0000000000274a48 g DF .text 0000000000000058 NvRmChannelSetModuleClockRate +00000000000704bc g DF .text 00000000000001a4 _ZN2nn4lmem6detail12CheckExpHeapEPNS1_8HeapHeadEj +00000000001766d8 w DF .text 00000000000000e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm4EvEEj +000000000003cd6c g DF .text 0000000000000038 _ZNK2nn4util6detail16IntrusiveDicImpl8FindIterEv +00000000003a2800 g DF .text 0000000000000130 __floatuntisf +00000000000261e8 g DF .text 0000000000000584 _ZN2nn5image6detail4jpeg15jpeg_idct_13x13EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000804e50 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi51EE4MaskE +00000000003b917c g DF .text 0000000000000054 strndup +00000000000c1ab0 g DF .text 0000000000000030 _ZN2nn7account31NintendoAccountLinkageProcedureC2Ev +000000000036b400 g DF .text 0000000000000094 _ZNSt3__112strstreambufC2EPclS1_ +0000000000223220 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm10EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +00000000001a7c08 w DF .text 0000000000000008 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_ED2Ev +0000000000823e80 w DO .rodata 000000000000001d _ZTSNSt3__115messages_bynameIcEE +000000000022df88 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm3EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +0000000000357684 g DF .text 0000000000000024 _ZNSt3__17codecvtIDsc11__mbstate_tED0Ev +00000000001b6850 g DF .text 0000000000000014 _ZN2nn3mii6detail25CalculateSizeAndAlignment7AddSizeEm +00000000000b13a4 g DF .text 0000000000000004 _ZN2nn6socket6detail13GetHostByAddrEPKvjiPKNS0_14ResolverOptionEm +00000000003ce430 g DF .text 0000000000000020 scalbln +00000000001b9aac g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw7SetEyeYEi +000000000017029c g DF .text 0000000000000070 _ZN2nn8settings6detail29GetDeviceTimeZoneLocationNameEPNS_4time12LocationNameE +000000000016aa10 g DF .text 0000000000000044 _ZN2nn8settings6system13SetColorSetIdEi +00000000001bcdc0 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw13SetGlassColorEi +0000000000a3d450 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_8irsensor6detail20IrSensorSystemServerEE8_globalsE +0000000000239264 g DF .text 0000000000000004 _ZN2nn8irsensor6detail20InternalErrorHandlerD1Ev +0000000000138550 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEENSG_ILi1ELi5ELm0EEEEEELm8ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEESS_j +000000000039dc20 g DF .text 0000000000000188 __floatuntitf +0000000000157910 g DF .text 0000000000000070 _ZN2nn4nifm6detail34ConvertAccessPointDataToSfFromNifmEPNS1_2sf15AccessPointDataERKNS0_15AccessPointDataE +0000000000230c88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E32_nn_sf_sync_DeactivateHomeButtonEv +00000000000457a8 g DF .text 00000000000001c8 _ZN2nn4diag6detail16GetBacktraceImplEPmimm +0000000000156e08 g DF .text 0000000000000004 _ZN2nn4nifm7Request6SubmitEv +0000000000217d88 g DF .text 00000000000000b4 _ZN2nn3hid6detail10GetXpadIdsEPiPNS0_9JoyXpadIdEi +0000000000228870 g DF .text 0000000000000044 _ZN2nn3hid5debug21FinalizeCaptureButtonEv +0000000000090514 g DF .text 0000000000000010 _ZN2nn2os20GetCurrentCoreNumberEv +00000000000c8f74 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_GetApplicationLaunchPropertyERKNS0_9OutBufferE +000000000015b0ac g DF .text 0000000000000054 _ZN2nn2oe35BeginBlockingHomeButtonShortPressedEv +00000000000bc154 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E43_nn_sf_sync_IsNetworkServiceAccountReplacedENS0_3OutIbvEE +00000000001572fc g DF .text 00000000000002ac _ZN2nn4nifm6detail6Base6416FromBase64StringEPmPvmPKcmNS2_4ModeE +0000000000230d28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E42_nn_sf_sync_UnsetSleepButtonAutoPilotStateEv +0000000000396aa0 g DF .text 0000000000000004 _ZNSt9type_infoD1Ev +000000000012fbd4 w DF .text 000000000000025c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_21OutHandleArgumentInfoILi0ELi1EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_27OutHandleClientArgumentTypeENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000946e58 w DO .data 0000000000000020 _ZTVN2nn7account6detail24SimpleOAuthProcedureBaseE +00000000000b6fa0 w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +00000000000ce850 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E53_nn_sf_sync_CreateApplicationAndPushAndRequestToStartENS_3ncm13ApplicationIdENS0_13SharedPointerINS6_8IStorageEEE +000000000015c018 g DF .text 0000000000000050 _ZN2nn2oe22GetNotificationMessageEv +00000000003619f8 w DF .text 0000000000000004 _Znam +0000000000347090 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb0EE13do_neg_formatEv +0000000000042710 g DF .text 0000000000000080 _ZN2nn4edid6detail17VideoBlockVisitorEPKhmNS0_6cea8618BlockTagEPv +0000000000150c24 g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient20SetRequirementPresetENS0_17RequirementPresetE +00000000001bb000 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw12SetGlassTypeEi +00000000002ce438 g DF .text 000000000000002c _ZN7android8String16D2Ev +00000000001cb870 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl26SetMovedCursorCallbackUtf8EPFvPKNS0_18MovedCursorArgUtf8EE +00000000001c8f44 g DF .text 000000000000003c _ZN2nn5swkbd18MakePresetUserNameEPNS0_14KeyboardConfigE +000000000023473c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E40_nn_sf_sync_AcquireHomeButtonEventHandleENS0_3OutINS0_12NativeHandleEvEENS_6applet20AppletResourceUserIdE +0000000000253f8c g DF .text 0000000000000090 _ZN2nn3web22ShowOfflineHtmlPageArg19SetPageCacheEnabledEb +00000000007abe0a g DO .rodata 0000000000000100 nnutilZlib__length_code +000000000003b7d0 g DF .text 0000000000000024 _ZN2nn4util17BinaryBlockHeader13FindNextBlockEi +0000000000269500 g DF .text 0000000000000150 _Z20hosSetupSystemEventsP10EventAsyncPP13NvOsThreadRecPKci +00000000003d011c g DF .text 00000000000000e4 __rem_pio2f +000000000026a7f0 g DF .text 0000000000000824 NvRmSurfaceRead +00000000008223f4 g DO .rodata 0000000000000004 _ZNSt3__18ios_base5truncE +00000000001cbeb0 g DF .text 000000000000016c _ZN2nn2vi21CreateBlockingServiceEv +000000000008e2d8 g DF .text 00000000000000e0 _ZN2nn2os17TryWaitTimerEventEPNS0_14TimerEventTypeE +0000000000358dd0 g DF .text 0000000000000008 _ZNKSt3__114__codecvt_utf8IDiE11do_encodingEv +0000000000282ffc g DF .text 0000000000000074 NvDdkVicConfigureTargetSurface +00000000003d0200 g DF .text 00000000000003d8 __rem_pio2l +00000000003dd194 w DF .text 0000000000000128 fputwc_unlocked +0000000000361b34 w DF .text 0000000000000004 _ZdlPvSt11align_val_tRKSt9nothrow_t +00000000003ab014 g DF .text 0000000000000004 pthread_attr_getscope +00000000000cf61c w DF .text 0000000000000174 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_20InHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_26InHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000001c9750 g DF .text 0000000000000008 _ZN2nn5swkbd25SetRightOptionalSymbolKeyEPNS0_14KeyboardConfigEDs +00000000000bf61c g DF .text 0000000000000040 _ZNK2nn7account38ExternalNetworkServiceAccountRegistrar11GetNicknameEPNS0_8NicknameE +000000000014eb00 g DF .text 0000000000000150 _ZNK2nn3ngc6detail9SparseSet5Rank1Em +0000000000234ed8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E45_nn_sf_sync_StartAnalogStickManualCalibrationENS5_6system11UniquePadIdEl +000000000023abec g DF .text 0000000000000018 _ZN2nn8irsensor24GetMomentProcessorStatesEPNS0_20MomentProcessorStateEPiiRKNS0_14IrCameraHandleE +0000000000099e18 g DF .text 00000000000000b0 _ZN2nn2sf24SetCurrentMemoryResourceEPNS_14MemoryResourceE +00000000003e755c g DF .text 0000000000000034 __nnmusl_MutexInit +00000000003ce518 g DF .text 0000000000000088 scalbnf +0000000000319d7c w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3pwm8IManagerEED2Ev +00000000003c7ebc g DF .text 00000000000000d4 cos +0000000000081780 g DF .text 0000000000000024 nnmem_nlib_semaphore_post +00000000000cf05c w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm1ELl0EEEEEELm0ELm16ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm1EEEj +000000000017a1f4 g DF .text 0000000000000024 nnsslConnectionGetConnectionId +000000000008e628 g DF .text 000000000000003c _ZN2nn2os20TimedWaitSystemEventEPNS0_15SystemEventTypeENS_8TimeSpanE +0000000000959280 w DO .data 0000000000000010 _ZTIN2nn2sf6detail27UnmanagedEmplacedImplHolderINS_5audio6server24AudioRendererManagerImplEEE +00000000003ce5a0 g DF .text 00000000000000d4 scalbnl +0000000000978a50 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007cbb50 w DO .rodata 0000000000000020 _ZTSN2nn6grcsrv17IGameMovieTrimmerE +000000000018dfe8 g DF .text 0000000000000114 _ZN2nn5audio19InitializeResamplerEPNS0_14ResamplerStateEj +00000000001b15f4 g DF .text 000000000000001c _ZN2nn2ec34ShowShopAddOnContentDetailsForMenuENS0_5NsUidERKNS_7account3UidENS0_8SourceIdE +00000000000965ec g DF .text 0000000000000140 _ZN2nn2os6detail30InterProcessEventImplByHorizon9TimedWaitEjbNS_8TimeSpanE +00000000008239f0 w DO .rodata 0000000000000015 _ZTSNSt3__110__time_putE +00000000002d142c g DF .text 0000000000000034 _ZN7android6Thread11requestExitEv +00000000003e7a68 g DF .text 000000000000003c __nnmusl_pthread_barrier_init +00000000007ff294 g DO .rodata 000000000000086c _ZN2nn3mii6detail18Ver3StoreDataTableE +0000000000330da0 w DF .text 00000000000000e4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5seekpENS_4fposI11__mbstate_tEE +00000000003dd6d4 g DF .text 00000000000000c4 fseek +00000000007e48b0 w DO .rodata 0000000000000106 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_EE +00000000002cd800 g DF .text 0000000000000008 _ZNK7android7RefBase12weakref_type7refBaseEv +00000000009590f8 g DO .data 0000000000000028 _ZTVN2nn5audio6server7AuxInfoE +000000000095a850 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000013ddec g DF .text 0000000000000094 _ZN2nn3nfp6detail10CheckErrorERKNS_6ResultE +00000000001bd084 g DF .text 0000000000000064 _ZNK2nn3mii6detail12Ver3CreateId7IsValidEv +000000000006803c g DF .text 000000000000022c _ZN2nn2fs18CreateCacheStorageENS_3ncm13ApplicationIdENS0_15SaveDataSpaceIdEmllj +000000000034cf84 w DF .text 0000000000000480 _ZNSt3__111__money_putIcE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_Ri +0000000000081a64 g DF .text 0000000000000028 nnmem_nlib_thread_getid +0000000000958f60 w DO .data 0000000000000018 _ZTIN2nn5audio6server10EffectInfoILNS0_10EffectTypeE5ENS0_20I3dl2ReverbParameterEEE +00000000007f0fc0 g DO .rodata 0000000000000023 _ZTSN2nn5audio6server14DeviceSinkInfoE +000000000022b838 g DF .text 0000000000000054 _ZN2nn3hid6system20IsSlSrButtonOrientedERKj +0000000000234eb8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E31_nn_sf_sync_DisconnectUniquePadENS5_6system11UniquePadIdE +000000000016464c g DF .text 0000000000000198 _ZN2nn5prepo6detail7msgpack26WriteSignedIntegerAutoSizeEPNS2_17OutputStreamParamEl +00000000007b8650 g DO .rodata 000000000000002c _ZTSN2nn2os6detail26MultiWaitHolderOfSemaphoreE +000000000013951c w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3nfc6detail5IUserEE19FunctionForBoolTypeEv +00000000001658e8 g DF .text 000000000000000c _ZN2nn5prepo16SystemPlayReport9SetBufferEPvm +00000000001b61bc g DF .text 0000000000000010 _ZNK2nn3mii21ParamCharInfoAccessor9IsSpecialEv +00000000003baa44 g DF .text 000000000000005c cpow +00000000001a0bd8 g DF .text 0000000000000028 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_17VolumeRampCommandE +00000000000812c8 g DF .text 0000000000000008 nnmem_nlib_mlock +0000000000181464 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINS_7timesrv6detail7service16ITimeZoneServiceEEEvi +00000000001902a4 g DF .text 0000000000000064 _ZN2nn5audio27RequestResumeAudioRenderersENS_6applet20AppletResourceUserIdENS_8TimeSpanE +00000000002c4d28 g DF .text 0000000000000084 _ZN7android8Composer8setLayerERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEi +00000000007f62a0 g DO .rodata 0000000000000498 _ZN2nn3mii6detail13CoreDataTableE +00000000001c8d40 g DF .text 000000000000005c _ZN2nn2pl22IsIlluminanceAvailableEv +0000000000823e60 w DO .rodata 0000000000000015 _ZTSNSt3__18messagesIwEE +00000000000cfcf0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000007c9cf0 w DO .rodata 000000000000014a _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IHomeMenuFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000009e200 w DF .text 0000000000000218 _ZNK2nn2sf4hipc6server18Hipc2ServerMessage10GetBuffersEPNS0_6detail14PointerAndSizeE +00000000000d7458 g DF .text 00000000000000bc _ZN2nn4bcat6detail17ShimLibraryGlobal25MountDeliveryCacheStorageENS_13ApplicationIdE +000000000015f02c g DF .text 0000000000000010 _ZNK2nn4pctl11PairingInfo15IsInstanceValidEv +0000000000362368 g DF .text 0000000000000030 _ZNSt3__118shared_timed_mutex6unlockEv +00000000007add18 g DO .rodata 0000000000000004 _ZN2nn4util7FloatPiE +0000000000053d90 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_5fssrv2sf16IFileSystemProxyEE19FunctionForBoolTypeEv +000000000016f890 g DF .text 0000000000000070 _ZN2nn8settings6detail16SetSleepSettingsERKNS0_6system13SleepSettingsE +000000000023a724 g DF .text 0000000000000020 _ZN2nn8irsensor6detail15IrSensorSession12DestroyProxyEv +0000000000346530 g DF .text 0000000000000094 _ZNSt3__110__time_putD2Ev +00000000001a28b4 g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase12GetParameterEv +00000000003e79e4 g DF .text 0000000000000010 __nnmusl_pthread_attr_getstacksize +00000000001a305c g DF .text 0000000000000008 _ZNK2nn5audio6server14MemoryPoolInfo13GetDspAddressEv +00000000001d6f94 g DF .text 0000000000000010 _ZN2nn2vi6buffer11BufferQueueC1Ev +0000000000156e68 g DF .text 0000000000000004 _ZN2nn4nifm17NetworkConnectionD1Ev +0000000000801010 w DO .rodata 0000000000000109 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000003e13d0 g DF .text 00000000000000c4 wcstoumax +0000000000088d0c g DF .text 00000000000000fc _ZN2nn7nlibsdk4heap11CentralHeap4FreeEPv +00000000000a0708 g DF .text 0000000000000020 _ZN2nn2sf4hipc23IsHipcServiceRegisteredEPKc +000000000035a77c g DF .text 0000000000000008 _ZNKSt3__120__codecvt_utf8_utf16IDiE16do_always_noconvEv +00000000000c8b98 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_EmulateButtonEventENS6_19EmulatedButtonEventE +000000000019bf54 g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem30GetCommandBufferWorkBufferSizeEv +0000000000823370 g DO .rodata 0000000000000022 _ZTSNSt3__120__codecvt_utf8_utf16IwEE +0000000000359020 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IwLb0EE16do_always_noconvEv +0000000000150acc g DF .text 00000000000000c0 _ZN2nn4nifm6detail13RequestClient9GetResultEv +0000000000254d8c g DF .text 0000000000000060 _ZN2nn3web21ShowSystemDataPageArgC1ERKNS_3ncm12SystemDataIdEPKc +000000000094bcc0 w DO .data 0000000000000018 _ZTIN2nn2am7service18ICommonStateGetterE +00000000000bd1f0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE25_nn_sf_sync_ApplyResponseERKNS0_7InArrayIcEE +0000000000235020 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E30_nn_sf_sync_GetFirmwareVersionENS0_3OutINS5_6system15FirmwareVersionEvEENSL_11UniquePadIdE +0000000000361c40 g DF .text 00000000000000b4 _ZNSt3__113random_deviceclEv +00000000001b6824 g DF .text 0000000000000008 _ZNK2nn3mii6detail15BufferAllocator13GetCurrentPtrEv +0000000000170ffc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E33_nn_sf_sync_GetBluetoothBdAddressENS0_3OutINS5_7factory9BdAddressEvEE +00000000009494f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000094df80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service19IOverlayAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000118cc0 g DF .text 000000000000002c _ZN2nn5codec25GetOpusPacketChannelCountEPiPKhm +0000000000229110 g DF .text 0000000000000044 _ZN2nn3hid5debug18FinalizeHomeButtonEv +0000000000223994 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm3EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +00000000001b6224 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetEyeAspectEv +0000000000231108 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm28ELm4ELl0EEEEEELm28ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm28ELm4EvEEj +0000000000098c8c g DF .text 00000000000001f4 _ZN2nn2ro6detail8RoModule10InitializeEmPKNS1_3Elf5Elf643DynE +000000000004d6e8 g DF .text 0000000000000084 _ZN2nn2fs6detail18FileSystemAccessor26DeleteDirectoryRecursivelyEPKc +00000000000f1f20 g DF .text 00000000000000a8 silk_NLSF_VQ +00000000001187b0 g DF .text 0000000000000030 _ZNK2nn5codec11OpusEncoder25CalculateFrameSampleCountEi +0000000000a1d678 g DO .bss 0000000000000010 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue7g_IdMapE +000000000022d724 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm12EEEvPNS0_16TouchScreenStateIXT_EEE +0000000000235ad4 w DF .text 00000000000001e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi10ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSM_24BufferClientArgumentTypeENSM_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000003e44e0 g DF .text 0000000000000074 timegm +000000000017462c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E24_nn_sf_sync_GetQuestFlagENS0_3OutIbvEE +00000000000633e4 g DF .text 000000000000017c _ZN2nn2fs12SetAllocatorEPFPvmEPFvS1_mE +00000000001854d4 g DF .text 0000000000000008 _ZN2nn5audio36GetRenderingTimeLimitForSystemAppletEv +00000000002c902c g DF .text 00000000000000dc _ZN7android5Fence9unflattenERPKvRmRPKiS4_ +00000000008049b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi14EE4MaskE +0000000000361290 g DF .text 0000000000000094 _ZNSt3__111timed_mutexD2Ev +00000000001cd1f8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E50_nn_sf_sync_GetDisplayServiceWithProxyNameExchangeENS0_3OutINS0_13SharedPointerINS6_26IApplicationDisplayServiceEEEvEEjNS_2vi9ProxyNameE +00000000000899ec g DF .text 000000000000000c _ZN2nn7nlibsdk4heap10CachedHeap12GetAllocSizeEPKv +000000000029e878 g DF .text 0000000000000094 _ZNK7android6Parcel19readString16InplaceEPm +00000000000cbe1c w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE30_nn_sf_sync_GetAudioControllerENS0_3OutINS0_13SharedPointerINS6_16IAudioControllerEEEvEE +0000000000150534 g DF .text 0000000000000018 _ZN2nn4nifm6detail29TemporaryNetworkProfileClientD2Ev +00000000008053f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi96EE4MaskE +00000000000c9d00 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service8IStorageEEEvi +000000000017eab8 g DF .text 000000000000001c _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTaskC2Ev +000000000022b0f8 g DF .text 0000000000000070 _ZN2nn3hid6system13DeactivateNfcEj +00000000007e7bf0 w DO .rodata 0000000000000187 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000327f00 g DF .text 00000000000000c0 _ZNSt3__120__threads_data_queueD2Ev +0000000000361bbc g DF .text 0000000000000024 _ZNSt12experimental19bad_optional_accessD0Ev +00000000000d4ec4 g DF .text 0000000000000060 _ZN2nn4bcat6detail25DeliveryCacheProgressImpl23NotifyStartDownloadFileERKNS0_13DirectoryNameERKNS0_8FileNameEl +00000000001aa41c g DF .text 0000000000000008 _ZN2nn5audio3dsp5StartEv +00000000001e767c g DF .text 00000000000001fc cff_GridFit +0000000000241cdc g DF .text 00000000000004a4 _ZN22nerd_gillette_internal5otete11ImageCodec215OldQuantizationERiim +00000000003a2930 g DF .text 0000000000000154 __floatuntixf +00000000002ab264 g DF .text 0000000000000074 _ZN7android18BufferItemConsumer20setDefaultBufferSizeEjj +00000000003e1fc0 g DF .text 0000000000000034 strcat +000000000016b400 g DF .text 0000000000000048 _ZN2nn8settings6system21SetWirelessLanEnabledEb +00000000002a153c g DF .text 00000000000000ac _ZN7android6Parcel8freeDataEv +00000000000b795c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE43_nn_sf_sync_TrySelectUserWithoutInteractionENS0_3OutINS5_3UidEvEEb +00000000001f16bc g DF .text 0000000000000378 fnt_IUP +000000000025d168 g DF .text 000000000000000c NvOsFstat +0000000000122f24 g DF .text 0000000000000008 _ZNK2nn7friends7Profile7IsValidEv +00000000000b3550 g DF .text 00000000000000a0 _ZN2nn7account36CheckNetworkServiceAvailabilityAsyncEPNS0_12AsyncContextE +00000000000bfe94 g DF .text 0000000000000024 _ZN2nn7account28NetworkServiceAccountManager38CheckNetworkServiceAccountAvailabilityEv +000000000094e9c0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +0000000000184c4c g DF .text 0000000000000078 _ZN2nn5audio6detail24GetConfigInParameterSizeERKNS0_22AudioRendererParameterE +0000000000005e90 g DF .text 0000000000000088 _ZNK2nn6crypto6detail7AesImplILm16EE12DecryptBlockEPvmPKvm +000000000004c428 g DF .text 00000000000000f8 _ZN2nn2fs15RomFsFileSystem14DoGetEntryTypeEPNS0_18DirectoryEntryTypeEPKc +00000000007bf3e0 w DO .rodata 0000000000000169 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000001a8ed8 g DF .text 0000000000000008 _ZNK2nn5audio3dsp20CommandListProcessor14GetSampleCountEv +00000000001d0994 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSD_ILm8ELm8ELl8EEEEEELm16ELm8ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSL_23InRawClientArgumentTypeILm8ELm8EvEESP_j +000000000082513c g DO .rodata 000000000000000d _ZTSSt9exception +0000000000099d6c g DF .text 0000000000000018 _ZN2nn2sf30SetGlobalDefaultMemoryResourceEPNS_14MemoryResourceE +00000000007a41a2 g DO .rodata 0000000000000012 _ZN2nn6crypto12Md5Generator20Asn1ObjectIdentifierE +00000000007d82c0 w DO .rodata 0000000000000154 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc20INotificationServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000000a3628 g DF .text 0000000000000170 _ZN2nn6socket6detail11GetPeerNameEiP8sockaddrPj +00000000001679c8 w DF .text 0000000000000008 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm1EE27InitializeShimLibraryHolderINS_5prepo6detail3ipc13IPrepoServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESH_ +00000000009ef6b8 g DO .bss 0000000000000028 _ZN2nn3ssl6detail16SslMemoryManager13g_SfAllocatorE +0000000000004a9c g DF .text 000000000000004c _ZN2nn6crypto6detail7Md5Impl7GetHashEPvm +000000000006cba4 g DF .text 000000000000002c _ZN2nn2fs19MountSystemSaveDataEPKcm +000000000035a7a4 g DF .text 0000000000000018 _ZNKSt3__120__codecvt_utf8_utf16IDiE13do_max_lengthEv +0000000000943098 w DO .data 0000000000000010 _ZTIN2nn2sf4hipc6client26HipcClientSessionAllocatorE +000000000008f964 g DF .text 0000000000000010 _ZN2nn2os14IsReadLockHeldEPKNS0_20ReaderWriterLockTypeE +000000000025d038 g DF .text 0000000000000008 NvOsInterruptPriorityThreadCreate +00000000001a7b44 g DF .text 000000000000000c _ZN2nn5audio6server6detail27QueryAudioDeviceSystemEventEPjRKNS_6applet20AppletResourceUserIdE +000000000015667c g DF .text 000000000000006c _ZN2nn4nifm18GetSsidListVersionEPNS0_15SsidListVersionE +00000000000c1bb8 g DF .text 0000000000000078 _ZN2nn7account31NintendoAccountLinkageProcedure10GetRequestEPNS0_10RequestUrlEPNS0_11CallbackUriENS0_37NintendoAccountAuthorizationPageThemeE +0000000000201f14 g DF .text 0000000000000010 FsLttComponent_isItalic +00000000008223d8 g DO .rodata 0000000000000004 _ZNSt3__18ios_base7failbitE +0000000000184b78 g DF .text 0000000000000008 _ZNK2nn5audio15AudioBufferListINS0_13AudioInBufferEE4backEv +0000000000073864 g DF .text 00000000000005d8 nnmem_nlib_memspn +0000000000160984 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E38_nn_sf_sync_GetStereoVisionRestrictionENS0_3OutIbvEE +000000000024fde0 g DF .text 00000000000000a0 _ZN2nn3ldn13CreateNetworkERKNS0_13NetworkConfigERKNS0_14SecurityConfigERKNS0_10UserConfigE +0000000000183b74 g DF .text 00000000000000d4 _ZN2nn3aoc6detail17InitializeForHipcEv +0000000000095c04 g DF .text 00000000000000a4 _ZN2nn2os6detail26ThreadManagerImplByHorizon17WaitForExitThreadEPNS0_10ThreadTypeE +000000000036bfcc g DF .text 0000000000000030 _ZTv0_n24_NSt3__110ostrstreamD0Ev +0000000000082318 g DF .text 0000000000000008 nnmem_nlib_readlink +00000000001867b4 g DF .text 000000000000005c _ZN2nn5audio16IsDelayRemovableEPKNS0_9DelayTypeE +000000000006c8dc g DF .text 0000000000000024 _ZN2nn2fs6detail27StorageServiceObjectAdapter7SetSizeEl +0000000000953928 w DO .data 0000000000000118 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000007cfce0 w DO .rodata 000000000000010e _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000001c93d8 g DF .text 0000000000000014 _ZN2nn5swkbd24InitializeKeyboardConfigEPNS0_14KeyboardConfigE +000000000035aea4 g DF .text 0000000000000078 _ZNSt3__115numpunct_bynameIwEC1EPKcm +000000000008f1f0 g DF .text 0000000000000010 _ZN2nn2os7WaitAnyEPNS0_13MultiWaitTypeE +00000000001c9e38 g DF .text 000000000000005c _ZN2nn5swkbd14InlineKeyboard10InitializeEPv +00000000000c6f7c w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_OverrideAutoSleepTimeAndDimmingTimeEiiii +00000000000ae14c g DF .text 00000000000000e0 _ZN2nn6socket8resolver3tls6Client18GetCreateClientTLSERPv +00000000000bfeb8 g DF .text 0000000000000068 _ZN2nn7account28NetworkServiceAccountManager32IsNetworkServiceAccountAvailableEPb +00000000000c8d00 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE12GetProxyInfoEv +00000000001b8a30 g DF .text 0000000000000014 _ZNK2nn3mii6detail11CoreDataRaw11GetNicknameEPNS0_8NicknameE +000000000011d308 g DF .text 000000000000006c _ZN2nn7friends13GetFriendListEPiPNS0_6FriendEiiRKNS0_12FriendFilterE +00000000002cb2bc g DF .text 0000000000000088 _ZN7android6RegionC1Ev +0000000000126160 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E53_nn_sf_sync_GetFacedFriendRequestProfileImageFromPathENS0_3OutIivEERKNS0_7InArrayIcEERKNS0_9OutBufferE +000000000013379c g DF .text 00000000000000d4 _ZN2nn4htcs6detail6acceptENS_2sf13SharedPointerINS_3tma7ISocketEEEPNS0_12SockAddrHtcsERi +00000000001b15d8 g DF .text 000000000000001c _ZN2nn2ec31ShowShopAddOnContentListForMenuENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdE +0000000000313940 w DF .text 0000000000000330 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm41EE27InitializeShimLibraryHolderINS_3fgm2sf8ISessionEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +0000000000355960 g DF .text 00000000000000dc _ZNKSt3__15ctypeIcE10do_tolowerEPcPKc +00000000000313dc g DF .text 000000000000013c nnutilZlib_deflateReset +00000000003651d0 w DF .text 0000000000000030 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC2ERKS5_ +0000000000047b40 g DF .text 0000000000000124 _ZN2nn2fs24HierarchicalRomFileTable20CheckSameEntryExistsERKNS1_8EntryKeyENS_6ResultE +000000000019cb0c g DF .text 0000000000000004 _ZN2nn5audio6server24AudioRendererManagerImpl4WakeEv +0000000000230b98 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E37_nn_sf_sync_SetKeyboardAutoPilotStateERKNS5_5debug22KeyboardAutoPilotStateE +00000000001d1188 w DF .text 000000000000012c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl24EEENSB_ILm8ELm8ELl32EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEENSB_ILm4ELm4ELl12EEENSB_ILm4ELm4ELl16EEEEEELm40ELm0ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESQ_NSP_ILm4ELm4EvEESR_SR_SR_SR_j +00000000001bcdc8 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw9SetGlassYEi +0000000000091434 g DF .text 0000000000000004 nnosTryWaitEvent +00000000000255d4 g DF .text 0000000000000374 _ZN2nn5image6detail4jpeg15jpeg_idct_10x10EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000094bb20 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000035a9bc g DF .text 0000000000000008 _ZNKSt3__18numpunctIcE16do_thousands_sepEv +00000000000c3374 g DF .text 00000000000003d8 _ZN2nn2am32InitializeSystemAppletInterfacesEv +00000000002c58e8 g DF .text 00000000000000c0 _ZN7android21SurfaceComposerClient13createSurfaceERKNS_7String8Ejjij +000000000018bb2c g DF .text 0000000000000030 _ZN2nn5audio13ReleaseSubMixEPNS0_19AudioRendererConfigEPNS0_10SubMixTypeE +00000000003966ac g DF .text 0000000000000054 _ZNSt16invalid_argumentD1Ev +00000000000d6728 g DF .text 0000000000000124 _ZN2nn4bcat17DeliveryCacheFile4OpenEPKc +00000000003966ac g DF .text 0000000000000054 _ZNSt12out_of_rangeD2Ev +000000000027277c g DF .text 0000000000000004 NvRmStreamEnd +00000000001e1968 g DF .text 0000000000000134 FSS_get_vdmx_pair +00000000002336dc w DF .text 0000000000000184 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENS7_21OutHandleArgumentInfoILi0ELi1EEENSB_ILm4ELm4ELl0EEENSB_ILm8ELm8ELl16EEEEEELm24ELm0ELb1EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSM_27OutHandleClientArgumentTypeENSN_ILm4ELm4EvEESO_j +0000000000030a28 g DF .text 00000000000002cc nnutilZlib_crc32 +000000000012d79c g DF .text 0000000000000074 _ZN2nn2fs20CreateSystemSaveDataEmRKNS_7account3UidEllj +000000000024683c w DF .text 00000000000002a0 _ZN22nerd_gillette_internal5otete11ImageCodec26DecodeIhEEvRKNS_15StaticImageViewIT_EE +00000000007adc70 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u813LinearDefaultE +00000000000d2ca0 g DF .text 0000000000000008 _ZN2nn6applet25GetLibraryAppletExitEventENS0_19LibraryAppletHandleE +00000000001bc85c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw14GetMouthAspectEv +00000000001c3198 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetMiiVersionEi +000000000025d794 g DF .text 000000000000001c NvUHashInit +0000000000057470 w DF .text 000000000000017c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm64ELm4ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSI_ILm8ELm8ELl8EEENSI_ILm8ELm8ELl16EEEEEELm24ELm64ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm64ELm4EEENS2_23InRawClientArgumentTypeILm4ELm4EvEENSV_ILm8ELm8EvEESX_j +000000000011aa8c g DF .text 0000000000000050 _ZN2nn3err8ShowEulaENS_8settings6system10RegionCodeE +0000000000087720 g DF .text 00000000000001a8 _ZN2nn7nlibsdk4heap14TlsHeapCentral19UncacheSmallMemory_EPv +00000000002289c4 g DF .text 0000000000000044 _ZN2nn3hid18StartSixAxisSensorERKNS0_26ConsoleSixAxisSensorHandleE +0000000000264b60 g DF .text 0000000000000008 NvOsLibraryGetSymbol +00000000007c5520 w DO .rodata 0000000000000025 _ZTSN2nn2am7service18ICommonStateGetterE +00000000001a2584 g DF .text 000000000000000c _ZNK2nn5audio6server12BehaviorInfo31IsMemoryPoolForceMappingEnabledEv +0000000000326200 g DF .text 0000000000000008 _ZNSt13exception_ptrD1Ev +0000000000959360 w DO .data 0000000000000030 _ZTVN2nn2sf6detail37UnmanagedEmplacedImplHolderBaseGetterINS_5audio6server24AudioRendererManagerImplEvE5Impl2E +0000000000230e44 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E45_nn_sf_sync_GetShiftGyroscopeCalibrationValueENS0_3OutIfvEESL_NS5_19SixAxisSensorHandleENS_6applet20AppletResourceUserIdE +00000000000e74bc g DF .text 00000000000004b4 celt_fir_c +00000000003b9a18 g DF .text 0000000000000010 carg +00000000000015e4 w DF .text 000000000000014c _ZN2nn6crypto6detail8HmacImplINS0_13Sha1GeneratorEE10InitializeEPKvm +00000000001568f8 g DF .text 000000000000001c _ZN2nn4nifm17SetRequestInstantENS0_13RequestHandleEb +00000000007bef70 w DO .rodata 0000000000000145 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000002c57a8 g DF .text 0000000000000024 _ZN7android21SurfaceComposerClientD0Ev +0000000000135f30 g DF .text 0000000000000024 _ZN2nn2lm6detail15LogPacketHeader15SetLittleEndianEb +0000000000174928 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_SetNfcEnableFlagEb +00000000003baca4 g DF .text 0000000000000004 creal +00000000007e3d00 w DO .rodata 00000000000000dd _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +00000000000d6e54 g DF .text 0000000000000050 _ZN2nn4bcat21DeliveryCacheProgressD1Ev +0000000000185fec g DF .text 000000000000000c _ZN2nn5audio21SetAudioDeviceMappingEPKcS2_ +00000000007f0d20 w DO .rodata 000000000000004a _ZTSN2nn5audio6server10EffectInfoILNS0_10EffectTypeE3ENS0_14DelayParameterEEE +00000000003c2ad4 w DF .text 0000000000000010 iswdigit_l +00000000007eea40 w DO .rodata 0000000000000033 _ZTSN2nn5audio6detail30IAudioRendererManagerForAppletE +00000000003c3c44 g DF .text 0000000000000014 creat +0000000000360d4c g DF .text 0000000000000004 _ZNSt3__114__shared_countD2Ev +0000000000358b5c g DF .text 0000000000000008 _ZNKSt3__114__codecvt_utf8IDsE11do_encodingEv +00000000003265e0 g DF .text 0000000000000024 _ZNSt3__112future_errorD0Ev +00000000003c4c2c g DF .text 00000000000000bc __nl_langinfo_l +00000000007c9850 w DO .rodata 000000000000014d _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21ILibraryAppletCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000119b8c w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +0000000000362bf4 w DF .text 0000000000000014 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEED2Ev +00000000001f8674 g DF .text 000000000000002c fnt_RoundDownToGrid +0000000000130a90 w DF .text 00000000000001f4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSL_ILm4ELm4ELl4EEEEEELm8ELm16ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENSV_ILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEES10_j +00000000000c9cf8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE17GetCmifBaseObjectEv +00000000001a1f08 g DF .text 0000000000000014 _ZN2nn5audio6server18PerformanceManagerC2Ev +00000000001b3180 g DF .text 0000000000000088 _ZN2nn2ec6detail15ShowShopPageArg17SetBackgroundKindENS1_18ShopBackgroundKindE +0000000000255c14 g DF .text 000000000000000c _ZN2nn3web20SharePageReturnValueC2Ev +00000000000a199c g DF .text 0000000000000004 _ZN2nn6socket7RecvMsgEiP6msghdri +00000000007be680 w DO .rodata 000000000000016b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000000c6c20 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15ISelfControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000007d8c40 w DO .rodata 0000000000000037 _ZTSN2nn7friends6detail3ipc28IDaemonSuspendSessionServiceE +0000000000943078 w DO .data 0000000000000020 _ZTVN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4ImplE +000000000007f008 g DF .text 00000000000001cc nnmem_nlib_timer_delete +00000000000a4168 g DF .text 0000000000000184 _ZN2nn6socket6detail5WriteEiPKvm +000000000036ccd8 g DF .text 0000000000000004 _ZNSt3__112system_errorD2Ev +0000000000804f50 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi59EE4MaskE +0000000000230f78 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E40_nn_sf_sync_StartFirmwareUpdateForRevertENS5_6system11UniquePadIdE +000000000094c050 w DO .data 0000000000000018 _ZTIN2nn2am7service15ISelfControllerE +00000000003ab0bc g DF .text 0000000000000004 pthread_cond_init +0000000000168f3c g DF .text 0000000000000044 _ZN2nn8settings6system18GetFirmwareVersionEPNS1_15FirmwareVersionE +00000000003dea9c w DF .text 0000000000000c28 __isoc99_vfwscanf +00000000000bade8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE12GetProxyInfoEv +0000000000082310 g DF .text 0000000000000008 nnmem_nlib_fd_fileid +00000000000b3f64 g DF .text 0000000000000034 _ZN2nn7account22CancelUserRegistrationERKNS0_3UidE +00000000007c2ef0 w DO .rodata 000000000000015e _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000001a2444 g DF .text 0000000000000008 _ZN2nn5audio6server18PerformanceManager15SetDetailTargetEj +00000000001b3388 g DF .text 0000000000000060 _ZN2nn2ec6detail13AppIdToStringEPcmNS_13ApplicationIdE +0000000000954a60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000355ae0 g DF .text 0000000000000094 _ZNKSt3__15ctypeIcE9do_narrowEPKcS3_cPc +00000000001bc898 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetNicknameEPNS0_8NicknameE +00000000003dc774 g DF .text 0000000000000020 __freadptr +00000000000c9938 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE38_nn_sf_sync_GetAppletStateChangedEventENS0_3OutINS0_12NativeHandleEvEE +000000000017d8b0 g DF .text 000000000000001c _ZN2nn4time19InitializeForSystemEv +0000000000068508 g DF .text 0000000000000050 _ZN2nn2fs20CreateSystemSaveDataEmNS0_6UserIdEllj +00000000001b59b0 g DF .text 0000000000000048 _ZNK2nn2la31NifmToNetConnectArgumentsWriter6ExportEPcm +00000000001d3bfc g DF .text 0000000000000070 _ZN2nn2vi21SetDisplayContentTypeEPNS0_7DisplayENS0_11ContentTypeE +000000000004c52c g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem12DoDeleteFileEPKc +00000000007f1080 w DO .rodata 0000000000000061 _ZTSN2nn5audio6server8SinkInfoINS0_6common23CircularBufferParameterENS1_23CircularBufferSinkStateEEE +0000000000186a8c g DF .text 000000000000001c _ZN2nn5audio20GetDelayFeedbackGainEPKNS0_9DelayTypeE +0000000000201f64 g DF .text 0000000000000098 FsLttComponent_getAdjustmentAndRange +0000000000188030 g DF .text 0000000000000088 _ZN2nn5audio25GetI3dl2ReverbInputOutputEPKNS0_15I3dl2ReverbTypeEPaS4_Pii +00000000003160dc g DF .text 0000000000000004 _ZN2nn3i2c10InitializeEv +000000000017459c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetAudioOutputModeENS0_3OutIivEEi +0000000000186a10 g DF .text 000000000000007c _ZN2nn5audio12SetDelayTimeEPNS0_9DelayTypeENS_8TimeSpanE +00000000001b9064 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw11GetEyebrowYEv +00000000000d6bac g DF .text 0000000000000078 _ZN2nn4bcat17DeliveryCacheFile7GetSizeEv +0000000000250844 g DF .text 0000000000000008 _ZN2nn3ldn20MakeBroadcastAddressENS0_11Ipv4AddressENS0_10SubnetMaskE +000000000016ff90 g DF .text 0000000000000070 _ZN2nn8settings6detail20GetAppletLaunchFlagsEPNS_4util10BitFlagSetILi32ENS0_6system16AppletLaunchFlagEEE +0000000000296870 g DF .text 0000000000000040 _ZTv0_n32_N7android8BpBinder10onFirstRefEv +000000000010ba58 g DF .text 00000000000001c8 opus_decode_float +0000000000958e08 g DO .data 0000000000000020 _ZTVN2nn5audio6server12DetailAspectE +000000000097d6e0 g DO .data 0000000000000018 _ZTISt11logic_error +0000000000097848 g DF .text 0000000000000030 _ZN2nn2ro13GetBufferSizeEPmPKv +00000000001b7578 g DF .text 0000000000000018 _ZN2nn3mii6detail17GetMouthBlueColorENS0_9GammaTypeE +00000000000cb510 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000003bb4b0 g DF .text 0000000000000168 csqrtf +00000000000899e0 g DF .text 000000000000000c _ZN2nn7nlibsdk4heap10CachedHeap5AllocEmm +00000000001bcd54 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetEyeColorEi +00000000001c8a3c w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSK_24OutRawClientArgumentTypeILm4ELm4EEEj +000000000035a8dc g DF .text 0000000000000048 _ZNSt3__18numpunctIcED0Ev +00000000002c8c2c g DF .text 0000000000000008 _ZN7android11DisplayEDIDC2Ev +00000000007c6ae0 w DO .rodata 0000000000000100 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000000d28cc g DF .text 00000000000001d4 _ZN2nn6applet29StartLibraryAppletImmediatelyENS0_19LibraryAppletHandleEPv +000000000016a030 g DF .text 0000000000000044 _ZN2nn8settings6system15GetSerialNumberEPNS1_12SerialNumberE +0000000000156df0 g DF .text 000000000000000c _ZN2nn4nifm7RequestC2ERKNS0_17RequestParametersE +00000000001b9a1c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetEyeRotateEi +00000000003bb618 g DF .text 000000000000005c csqrtl +000000000094fa10 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000942a50 w DO .data 0000000000000010 _ZTIN2nn2fs8IStorageE +0000000000361b84 g DF .text 0000000000000004 _ZNSt19bad_optional_accessD2Ev +00000000001b58e8 g DF .text 0000000000000018 _ZN2nn2la31NifmToNetConnectArgumentsWriterC1ENS_6ResultERKNS_4util4UuidE +00000000001c9e94 g DF .text 0000000000000038 _ZN2nn5swkbd14InlineKeyboard8FinalizeEv +00000000000558cc w DF .text 0000000000000144 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000000d88d0 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000003673a0 w DF .text 00000000000000b8 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEmmPKw +0000000000046fd4 g DF .text 0000000000000084 _ZN2nn2fs6detail33EnableFileSystemAccessorAccessLogEPKc +0000000000117d04 g DF .text 0000000000000144 _ZN2nn5codec30HardwareOpusMultiStreamDecoder17DecodeInterleavedEPmPiPsmPKvm +000000000021e7e8 g DF .text 000000000000007c _ZN2nn3hid6detail30SetNpadPlayerLedBlinkingDeviceERKjRKNS_4util10BitFlagSetILi32ENS0_6system10DeviceTypeEEE +000000000017abc4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E17GetCmifBaseObjectEv +00000000002c0f88 g DF .text 00000000000002e4 _ZN7android7SurfaceC2ERKNS_2spINS_22IGraphicBufferProducerEEEb +0000000000958998 g DO .data 0000000000000030 _ZTVN2nn5audio6server24AudioRendererManagerImplE +0000000000978b18 w DO .data 0000000000000058 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +00000000003478fc w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb1EE16do_decimal_pointEv +000000000002a458 g DF .text 0000000000000008 _ZN2nn5image6detail4jpeg18jpeg_mem_availableEPNS2_18jpeg_common_structElll +00000000000c95cc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_CancelWindingReservationEv +00000000000d5264 g DF .text 0000000000000170 _ZN2nn4bcat31EnumerateDeliveryCacheDirectoryEPiPNS0_13DirectoryNameEi +000000000004cc88 g DF .text 0000000000000060 _ZN2nn2fs6detail17DirectoryAccessorD2Ev +00000000000c9324 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service25IProcessWindingControllerEEEvi +00000000001b621c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetEyeScaleEv +000000000035b17c g DF .text 0000000000000048 _ZNSt3__115numpunct_bynameIwED0Ev +00000000000b4c84 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E35_nn_sf_sync_CreateGuestLoginRequestENS0_3OutINS0_13SharedPointerINS5_4baas18IGuestLoginRequestEEEvEEONS0_12NativeHandleEj +00000000007d4bf6 g DO .rodata 0000000000000008 silk_uniform8_iCDF +00000000001ce57c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_GetLayerZENS0_3OutIlvEEm +0000000000314c34 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_4gpio8IManagerEED2Ev +00000000001b975c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw16SetFacelineColorEi +0000000000227130 g DF .text 0000000000000070 _ZN2nn3hid6detail14IsUsbConnectedEPbNS0_6system11UniquePadIdE +0000000000234dd4 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E36_nn_sf_sync_ListSixAxisSensorHandlesENS0_3OutIlvEERKNS0_8OutArrayINS5_6system25UniqueSixAxisSensorHandleEEENSN_11UniquePadIdE +00000000001412cc g DF .text 0000000000000008 _ZN2nn3ngc15ProfanityFilter15SkipAtSignCheckENS1_8SkipModeE +00000000000a1a9c g DF .text 0000000000000004 nnsocketGetPeerName +00000000000e9568 g DF .text 0000000000000094 ec_enc_patch_initial_bits +0000000000979180 g DO .data 0000000000000018 _ZTISt12bad_any_cast +00000000001c5cb4 g DF .text 0000000000000010 _ZN2nn3mii15PrivateDatabase6FormatEv +00000000001d3488 g DF .text 0000000000000090 _ZN2nn2vi22GetDisplayHotplugStateEPNS0_12HotplugStateEPKNS0_7DisplayE +00000000007ae5f0 g DO .rodata 0000000000000010 _ZN2nn4util10Quaternion16ConstantIdentityE +0000000000081ab4 g DF .text 000000000000002c nnmem_nlib_thread_setaffinity +00000000000d3580 g DF .text 0000000000000008 _ZN2nn6applet30GetIndirectLayerConsumerHandleENS0_19LibraryAppletHandleE +000000000015dcc0 g DF .text 0000000000000050 _ZN2nn4pctl23DisableFeaturesForResetEv +00000000001cd648 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetSystemDisplayServiceENS0_3OutINS0_13SharedPointerINS6_21ISystemDisplayServiceEEEvEE +00000000003ab0f8 g DF .text 0000000000000004 __pthread_mutex_trylock +00000000000560dc w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi25ELm769EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSI_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENST_ILm4ELm4EvEEj +000000000025d0b4 g DF .text 0000000000000004 NvOsFseek +00000000000bdf68 g DF .text 00000000000000e0 _ZN2nn7account30DeleteBaasChannelResourceAsyncEPNS0_12AsyncContextERKNS0_3UidE +00000000001bceb8 g DF .text 000000000000002c _ZN2nn3mii6detail11UtilityImpl16MakeVer3CreateIdEPNS1_12Ver3CreateIdE +000000000024ffe8 g DF .text 000000000000003c _ZN2nn3ldn6RejectENS0_11Ipv4AddressE +0000000000947460 w DO .data 0000000000000018 _ZTIN2nn7account6detail13IAsyncContextE +0000000000956d48 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags8SplitterE +0000000000258cb8 g DF .text 0000000000000008 nvdcPutCursor +0000000000943830 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf10IDirectoryE +00000000001244a8 w DF .text 00000000000000a0 _ZN2nn7friends6detail17ShimLibraryGlobal18CreateAsyncSessionEPPNS1_3ipc14IFriendServiceE +00000000001c5918 g DF .text 0000000000000018 _ZN2nn3mii15PrivateDatabaseD2Ev +00000000002495c4 g DF .text 00000000000000bc _ZN22nerd_gillette_internal5otete7jaimev230GetSymmetricEquivalentSegmentsERKNS_15NumericalVectorIsLm2EEES5_RS3_S6_ +0000000000003170 g DF .text 0000000000000090 _ZN2nn6crypto6detail21DigitsFromOctetStringEPjmPKvm +00000000002cbc44 g DF .text 0000000000000018 _ZN7android6Region12subtractSelfERKNS_4RectE +000000000018d670 g DF .text 00000000000000c4 _ZN2nn5audio6common10NodeStates8SetStateEiNS2_11SearchStateE +00000000001bc80c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw10GetEyeTypeEv +000000000095bb88 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_6system15NpadSystemStateELi16ENS1_13AtomicStorageIS4_EEEE +0000000000329670 w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5sputnEPKwl +00000000003d2824 g DF .text 0000000000000128 mbrtowc +0000000000156590 g DF .text 0000000000000080 _ZN2nn4nifm17SetNetworkProfileEPNS_4util4UuidERKNS0_18NetworkProfileDataE +00000000001c8538 g DF .text 0000000000000168 _ZN2nn2pl39GetSharedFontInOrderOfPriorityForSystemEPiPNS0_23SharedFontTypeForSystemEPPKvPmiNS_8settings12LanguageCodeE +0000000000187c7c g DF .text 000000000000001c _ZN2nn5audio35GetRequiredBufferSizeForI3dl2ReverbEii +000000000002a530 g DF .text 00000000000000ec _ZN2nn5image6detail4jpeg13jpeg_mem_destEPNS2_20jpeg_compress_structEPPhPm +000000000022db18 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm8EEEiPNS0_16TouchScreenStateIXT_EEEi +00000000003e1ff4 g DF .text 000000000000002c strchr +0000000000117a08 g DF .text 00000000000000cc _ZNK2nn5codec30HardwareOpusMultiStreamDecoder17GetWorkBufferSizeEiiii +00000000001d558c g DF .text 00000000000000ec _ZN2nn2vi6detail17IndirectLayerImpl25RegisterIndirectLayerImplEPPNS0_13IndirectLayerEmPvmPNS1_18IndirectLayerTableE +00000000003c5520 g DF .text 0000000000000070 strfmon_l +00000000001c6384 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +0000000000979698 w DO .data 0000000000000078 _ZTVNSt3__114basic_iostreamIcNS_11char_traitsIcEEEE +000000000016a274 g DF .text 0000000000000044 _ZN2nn8settings5fwdbg30DestroySettingsItemKeyIteratorEPNS1_23SettingsItemKeyIteratorE +00000000002b4e08 g DF .text 000000000000003c _ZN7android19IGraphicBufferAllocC2Ev +0000000000117cfc g DF .text 0000000000000008 _ZN2nn5codec30HardwareOpusMultiStreamDecoder6DecodeEPmPiPPsimPKvm +000000000004a99c g DF .text 0000000000000010 _ZN2nn2fs11RomPathTool10PathParser8FinalizeEv +00000000002203d4 w DF .text 0000000000000004 _ZN2nn3hid6detail13BasicXpadLifoD0Ev +00000000003c58a4 g DF .text 0000000000000054 strxfrm +0000000000166abc g DF .text 000000000000009c _ZN2nn5prepo6detail3ipc8FinalizeEv +0000000000257828 g DF .text 0000000000000088 _ZN2nn3web15ShowNewsPageArg18SetBootDisplayKindENS0_18WebBootDisplayKindE +0000000000118940 g DF .text 0000000000000170 _ZN2nn5codec22OpusMultiStreamDecoder17DecodeInterleavedEPmPiPsmPKvm +00000000001a24b8 g DF .text 000000000000007c _ZN2nn5audio6server12BehaviorInfoC1Ev +0000000000945cf0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif11ICmifDomainE +00000000000c1788 g DF .text 0000000000000058 _ZN2nn7account42NintendoAccountAuthorizationRequestContext20GetAuthorizationCodeEPmPcm +00000000000cc1ac w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service26ILibraryAppletSelfAccessorEEEvi +000000000022f4fc g DF .text 000000000000007c _ZNK2nn3hid13VibrationNode13IsConnectedToEPKS1_ +0000000000150c90 g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient14SetRawPriorityEh +000000000095b9c0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail13BasicXpadLifoE +00000000001a7b84 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_13VolumeCommandE +0000000000085384 g DF .text 0000000000000bac _ZN2nn7nlibsdk4heap14TlsHeapCentral22AllocPagesWithBigAlignEmm +0000000000122208 g DF .text 000000000000000c _ZN2nn7friends15FriendCandidateC2Ev +00000000002ce070 g DF .text 0000000000000018 _ZN7android8String16C1ERKS0_ +00000000002ce3d4 g DF .text 0000000000000038 _ZN7android8String16C2EPKc +00000000003dcf3c w DF .text 000000000000009c fgetws_unlocked +0000000000959020 g DO .data 0000000000000018 _ZTIN2nn5audio6server15BufferMixerInfoE +00000000002867a4 g DF .text 000000000000000c NvRmGpuDeviceSetSmDebugMode +000000000019de98 g DF .text 00000000000000a0 _ZN2nn5audio6server13CommandBuffer33GenerateDepopForMixBuffersCommandEPiiij +00000000003a4988 g DF .text 0000000000000108 __truncdfsf2 +00000000000436bc g DF .text 00000000000000a4 _ZN2nn6crypto36GenerateCryptographicallyRandomBytesEPvm +000000000021d9dc g DF .text 000000000000007c _ZN2nn3hid6detail44IsUnintendedHomeButtonInputProtectionEnabledEPbRKj +0000000000254f88 g DF .text 0000000000000100 _ZN2nn3web6detail24ShowOfflinePageArgDetail15SetDocumentPathEPhmPKc +00000000001b661c g DF .text 0000000000000014 _ZN2nn3mii14GetEyeRedColorENS0_9GammaTypeE +00000000000752dc g DF .text 000000000000023c nnmem_nlib_memutf32_to_utf8 +0000000000181234 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E25_nn_sf_sync_GetTestOffsetENS0_3OutINS_12TimeSpanTypeEvEE +00000000002122a4 g DF .text 00000000000000f0 swap_maxp +0000000000165634 g DF .text 000000000000015c _ZN2nn5prepo10PlayReport4SaveERKNS_7account3UidE +000000000022076c g DF .text 0000000000000178 _ZN2nn3hid6detail22GetSixAxisSensorHandleEPNS0_19SixAxisSensorHandleEPiijNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +000000000024cba8 g DF .text 0000000000000028 _ZN2nn5album13GetImageWidthENS0_9ImageSizeE +00000000002d0190 g DF .text 000000000000001c _ZNK7android7String814getUtf32LengthEv +00000000007cd960 w DO .rodata 00000000000000a2 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000157a14 g DF .text 0000000000000024 _ZN2nn4nifm6detail39ConvertNetworkInterfaceInfoToNifmFromSfEPNS0_20NetworkInterfaceInfoERKNS1_2sf20NetworkInterfaceInfoE +00000000000a4c10 g DF .text 0000000000000194 _ZN2nn6socket6detail4PollEP6pollfdmi +000000000014d168 g DF .text 0000000000000048 _ZNK2nn3ngc6detail3Set3HasEj +00000000000b4a80 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E47_nn_sf_sync_GetBaasAccountManagerForApplicationENS0_3OutINS0_13SharedPointerINS5_4baas22IManagerForApplicationEEEvEERKNS5_3UidE +0000000000172158 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm580EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000001c67fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E20_nn_sf_sync_GetIndexENS0_3OutIivEERKNS5_8CharInfoE +00000000003250b0 g DF .text 0000000000000178 _ZNSt3__111__libcpp_db9__erase_iEPv +0000000000359018 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IwLb0EE11do_encodingEv +0000000000948b30 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail14ISessionObjectENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +000000000017a3fc g DF .text 0000000000000028 _ZN2nn3ssl6detail10SslApiBase8FinalizeEv +000000000016f4a0 g DF .text 0000000000000070 _ZN2nn8settings6detail39GetConsoleSixAxisSensorAccelerationBiasEPNS0_6system36ConsoleSixAxisSensorAccelerationBiasE +00000000001bb910 g DF .text 000000000000067c _ZN2nn3mii6detail15CreateRandomMiiEPNS1_11CoreDataRawEPNS1_11UtilityImplERKNS0_10RandomDescE +00000000002aa814 g DF .text 0000000000000050 _ZNK7android10BufferItem10getFdCountEv +0000000000345460 g DF .text 0000000000000254 _ZNSt3__118__time_get_storageIwEC1EPKc +00000000001d3da4 g DF .text 000000000000009c _ZN2nn2vi33GetIndirectImageMemoryRequirementEPmS1_ii +00000000002263b0 g DF .text 00000000000000e0 _ZN2nn3hid6detail24ListSixAxisSensorHandlesEPiPNS0_6system25UniqueSixAxisSensorHandleENS3_11UniquePadIdEi +0000000000329ba4 w DF .text 0000000000000028 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED0Ev +0000000000040bb0 g DF .text 0000000000000084 _ZN2nn4util37GetLengthOfConvertedStringUtf32ToUtf8EPiPKj +00000000000d0f64 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000165934 g DF .text 0000000000000020 _ZN2nn5prepo16SystemPlayReport3AddEPKcRKNS0_10Any64BitIdE +000000000095c870 w DO .data 0000000000000018 _ZTIN2nn4util21IntrusiveListBaseNodeINS_3hid23VibrationNodeConnectionES3_EE +00000000001d9d4c g DF .text 000000000000002c _ZN2nn6fontll18ScalableFontEngine10GetAdvanceEPsS2_PiS3_jt +0000000000186b5c g DF .text 000000000000001c _ZN2nn5audio14GetDelayInGainEPKNS0_9DelayTypeE +00000000001a3120 g DF .text 0000000000000068 _ZN2nn5audio6server10PoolMapper13ClearUseStateEPNS1_14MemoryPoolInfoEi +00000000001d6aac g DF .text 00000000000000a4 _ZN2nn2vi6detail18SystemServiceProxy45FinalizeIndirectDisplayTransactionServiceImplEv +0000000000000948 w DF .text 0000000000000310 _ZN2nn6crypto6detail10CbcMacImplINS0_12AesEncryptorILm16EEEE6UpdateEPKvm +0000000000354804 g DF .text 000000000000004c _ZNSt3__114collate_bynameIcED1Ev +000000000012e034 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEEEEELm0ELm8ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESL_j +00000000000acb40 g DF .text 0000000000000018 _ZN2nn6socket8resolver23AreResolverCallsEnabledEv +00000000000baf98 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E53_nn_sf_sync_RegisterNetworkServiceAccountWithUidAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEERKNS5_3UidE +00000000003dd924 g DF .text 0000000000000078 fwide +00000000000905ac g DF .text 0000000000000010 _ZN2nn2os26GetThreadAvailableCoreMaskEv +000000000018da2c g DF .text 0000000000000034 _ZN2nn5audio15DelayLineTapOutEPNS0_11FXDelayLineEj +00000000001179d8 g DF .text 0000000000000028 _ZN2nn5codec30HardwareOpusMultiStreamDecoderC2Ei +00000000001b62fc g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor9GetGlassYEv +000000000032b988 w DF .text 00000000000001ac _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6ignoreEli +00000000003cd034 g DF .text 0000000000000078 modff +000000000024eeb0 g DF .text 0000000000000158 _ZN2nn3hid6detail25ShowControllerSupportCoreEPNS0_27ControllerSupportResultInfoERKNS0_20ControllerSupportArgERKNS0_6system27ControllerSupportArgPrivateE +0000000000353d50 g DF .text 0000000000000178 _ZNSt3__16localeC1ERKS0_PKci +0000000000943030 w DO .data 0000000000000010 _ZTIN2nn2fs14IEventNotifierE +00000000007b86e0 g DO .rodata 0000000000000031 _ZTSN2nn2os6detail31MultiWaitHolderOfInterruptEventE +00000000000c6c88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E16_nn_sf_sync_ExitEv +00000000001bafc8 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw16SetFacelineColorEi +0000000000111804 g DF .text 000000000000007c opus_packet_unpad +0000000000955720 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000003cd0ac g DF .text 0000000000000164 modfl +00000000000da478 g DF .text 000000000000023c spreading_decision +00000000000d1774 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object7ReleaseEv +00000000003cae08 g DF .text 00000000000000e8 hypotf +0000000000124074 g DF .text 00000000000000cc _ZN2nn7friends6detail15CheckUserStatusERKNS_7account3UidE +0000000000122d98 g DF .text 0000000000000034 _ZNK2nn7friends16UserPresenceView14GetDescriptionEv +0000000000805330 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi90EE4MaskE +00000000003caef0 g DF .text 00000000000002e0 hypotl +000000000094fd20 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000095c890 g DO .data 0000000000000028 _ZTIN2nn3hid23VibrationNodeConnectionE +0000000000006194 g DF .text 0000000000000214 _ZN2nn6crypto6detail11CtrModeImplINS0_12AesEncryptorILm16EEEE21ProcessBlocksUnrolledEPvPKvm +0000000000977fe0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000007c5e90 w DO .rodata 0000000000000149 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IWindowControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003e7774 g DF .text 0000000000000018 __nnmusl_AcquireSemaphore +0000000000172630 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E24_nn_sf_sync_ReadSettingsENS0_3OutImvEERKNS0_9OutBufferEi +00000000002c66e8 g DF .text 00000000000000c8 _ZN7android21SurfaceComposerClient13setLayerStackERKNS_2spINS_7IBinderEEEj +000000000033338c g DF .text 0000000000000004 _ZNSt3__18ios_base7failureD2Ev +00000000001332f4 g DF .text 0000000000000060 _ZN2nn4htcs8ShutdownEii +000000000021ad20 g DF .text 000000000000006c _ZN2nn3hid6detail15GetNpadStyleSetEPNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEERKj +0000000000321274 w DF .text 0000000000000540 _ZNSt3__16__sortIRNS_6__lessIyyEEPyEEvT0_S5_T_ +0000000000182a58 g DF .text 0000000000000010 _ZN2nn4time6detail20MonotonicSystemClockC1Ev +00000000000447a0 g DF .text 0000000000000064 nndetailDiagOnAssertionFailureFormat +000000000009a814 g DF .text 00000000000000b4 _ZThn8_N2nn2sf4cmif6server23CmifServerDomainManager6Domain14RegisterObjectENS1_18CmifDomainObjectIdEONS2_20CmifServerObjectInfoE +00000000007b9220 w DO .rodata 0000000000000028 _ZTSN2nn2sf4cmif6server17CmifServerMessageE +00000000007d4e49 g DO .rodata 0000000000000012 silk_rate_levels_BITS_Q5 +00000000000ae8f8 w DF .text 0000000000000160 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi5ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000033107c w DF .text 0000000000000014 _ZTv0_n24_NSt3__113basic_ostreamIwNS_11char_traitsIwEEED1Ev +000000000025078c g DF .text 0000000000000024 _ZN2nn3ldn15MakeIpv4AddressEhhhh +0000000000179ff0 g DF .text 0000000000000024 nnsslConnectionGetHostName +00000000001c0168 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw9GetMouthYEv +000000000014d868 g DF .text 000000000000001c _ZN2nn3ngc6detail3Sbv12SetAllocatorEPNS1_16WorkBufAllocatorE +0000000000366ea4 w DF .text 0000000000000058 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE5rfindEwm +000000000095a870 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000000b3478 g DF .text 00000000000000b8 _ZN2nn7account19OpenPreselectedUserEPNS0_10UserHandleE +000000000026b024 g DF .text 0000000000000068 NvRmSurfaceMarkCompressibleWrite +000000000016d6b8 g DF .text 0000000000000098 _ZN2nn8settings6detail17GetKeyboardLayoutEPNS0_14KeyboardLayoutE +000000000019b9a4 g DF .text 0000000000000194 _ZN2nn5audio6server17AudioRenderSystem10DropVoicesERNS1_13CommandBufferEjj +00000000001a2434 g DF .text 0000000000000010 _ZNK2nn5audio6server18PerformanceManager14IsDetailTargetEj +00000000000533b0 g DF .text 00000000000004d8 _ZN2nn2fs6detail40GetFileSystemProxyForLoaderServiceObjectEv +00000000000bd430 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail14ISessionObjectENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +0000000000286adc g DF .text 000000000000000c NvRmGpuMappingGetCompbitsInfo +00000000000ceaa4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E25_nn_sf_sync_NotifyRunningENS0_3OutIbvEE +000000000018bc10 g DF .text 000000000000000c _ZN2nn5audio19GetSubMixSampleRateEPKNS0_10SubMixTypeE +00000000000456e0 g DF .text 0000000000000070 _ZN2nn4diag6detail19InvokeAbortObserverERKNS0_9AbortInfoE +00000000000a1aa0 g DF .text 0000000000000004 nnsocketGetSockName +0000000000264844 g DF .text 0000000000000004 cuda_DebugVprintf +0000000000183f78 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_CountAddOnContentENS0_3OutIivEEm +0000000000070bd8 g DF .text 000000000000002c _ZN2nn4lmem6detail30GetAllocatableSizeForFrameHeapEPNS1_8HeapHeadEi +00000000003db9a8 g DF .text 0000000000000040 hdestroy +00000000000059b0 w DF .text 0000000000000088 _ZNK2nn6crypto6detail7AesImplILm24EE12EncryptBlockEPvmPKvm +0000000000164ee4 g DF .text 0000000000000118 _ZN2nn5prepo16SetOperationModeEl +0000000000805290 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi85EE4MaskE +000000000039f034 g DF .text 0000000000000080 __addvti3 +0000000000169f74 g DF .text 0000000000000044 _ZN2nn8settings6system13SetRegionCodeENS1_10RegionCodeE +00000000001a0c4c g DF .text 0000000000000028 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_14MixRampCommandE +00000000000596f4 w DF .text 0000000000000168 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm1ELm1ELl0EEENSG_ILm64ELm8ELl8EEEEEELm72ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm1ELm1EvEENSQ_ILm64ELm8EvEEj +0000000000138f24 g DF .text 0000000000000028 _ZN2nn3nfc6client22IsCreatedUserInterfaceEv +000000000014df5c g DF .text 00000000000000bc _ZN2nn3ngc6detail9SparseSetaSEOS2_ +000000000015ad84 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi21ELm76784EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000001a241c g DF .text 0000000000000018 _ZN2nn5audio6server18PerformanceManager15ResetEntryCountEv +0000000000103adc g DF .text 0000000000000538 silk_find_pred_coefs_FIX +00000000002ce040 g DF .text 0000000000000030 _ZN7android8String16C2ENS0_13StaticLinkageE +000000000000333c g DF .text 0000000000000068 _ZNK2nn6crypto6detail10EccP256Key20GenerateSharedSecretEPvmRKS2_ +000000000009ecf8 w DF .text 0000000000000004 _ZN2nn2sf22UnmanagedServiceObjectINS0_4hipc6detail12IHipcManagerENS2_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEE7ReleaseEv +00000000001de438 g DF .text 0000000000000010 FSS_get_phased +0000000000285e08 g DF .text 0000000000000058 nvgr_is_valid +0000000000955c70 w DO .data 0000000000000018 _ZTIN2nn3ssl2sf14ISslConnectionE +000000000009c6c0 g DF .text 000000000000010c _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase20ProcessInvokeRequestEPNS_2os19MultiWaitHolderTypeE +0000000000346724 g DF .text 000000000000012c _ZNSt3__110__time_putC1EPKc +0000000000232978 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E41_nn_sf_sync_GetNpadLeftRightInterfaceTypeENS0_3OutIhvEESL_j +0000000000324068 g DF .text 0000000000000024 _ZNSt3__16chrono12system_clock9to_time_tERKNS0_10time_pointIS1_NS0_8durationIxNS_5ratioILl1ELl1000000EEEEEEE +000000000094fdf0 w DO .data 0000000000000018 _ZTIN2nn4bcat6detail3ipc25IDeliveryCacheFileServiceE +0000000000149148 g DF .text 0000000000000024 _ZN2nn3ngc6detail2Bp16ReleaseAllocatorEv +00000000001da3dc g DF .text 00000000000000d0 _ZN2nn6fontll18ScalableFontEngine24AcquireRawOtfKerningLastEPKNS0_15OtfKerningTableEj +0000000000169344 g DF .text 0000000000000050 _ZN2nn8settings29GetAvailableLanguageCodeCountEv +000000000018fcdc g DF .text 0000000000000064 _ZN2nn5audio21RequestResumeAudioInsENS_6applet20AppletResourceUserIdENS_8TimeSpanE +00000000002c3a6c g DF .text 000000000000002c _ZN7android14SurfaceControl24setTransparentRegionHintERKNS_6RegionE +00000000000b1f80 g DF .text 0000000000000018 _ZN2nn7account6detail18OAuthProcedureBaseC2Ev +00000000000c569c w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE32_nn_sf_sync_GetCommonStateGetterENS0_3OutINS0_13SharedPointerINS6_18ICommonStateGetterEEEvEE +0000000000213ffc g DF .text 0000000000000010 nnfontllFsCloseFile +00000000009520f0 w DO .data 0000000000000018 _ZTIN2nn3nfc6detail14ISystemManagerE +00000000000b2220 g DF .text 00000000000000bc _ZN2nn7account6detail18OAuthProcedureBase18ApplyResponseAsyncEPNS0_12AsyncContextEPKcm +00000000001204ec g DF .text 0000000000000140 _ZN2nn7friends15SyncUserSettingEPNS0_12AsyncContextERKNS_7account3UidE +000000000016837c g DF .text 0000000000000050 _ZN2nn8settings6system31GetInitialSystemAppletProgramIdEv +0000000000188b78 g DF .text 0000000000000044 _ZNK2nn5audio13EffectManager13IsInitializedEPKNS0_10EffectInfoE +00000000002c63fc g DF .text 00000000000000cc _ZN7android21SurfaceComposerClient4showERKNS_2spINS_7IBinderEEE +00000000007cd2e0 w DO .rodata 0000000000000150 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24IApplicationProxyServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000008fa8 w DF .text 00000000000002c4 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE13DecryptUpdateEPvmPKvm +0000000000081140 g DF .text 00000000000000d4 nnmem_nlib_physical_alloc +00000000000a1c48 g DF .text 0000000000000004 nnsocketHStrError +00000000000a1ac8 g DF .text 0000000000000004 nnsocketSelect +00000000001fae34 g DF .text 0000000000000a54 apply_transformation +0000000000286ae8 g DF .text 0000000000000054 NvRmGpuMappingRequestCompbitsMapping +00000000003998b0 g DF .text 0000000000000018 __cxa_thread_atexit +0000000000954200 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000016f038 g DF .text 0000000000000070 _ZN2nn8settings6detail30AdvanceSettingsItemKeyIteratorEPNS0_5fwdbg23SettingsItemKeyIteratorE +000000000017fc4c g DF .text 00000000000000b8 _ZN2nn4time14ToCalendarTimeEPNS0_12CalendarTimeEPNS0_22CalendarAdditionalInfoERKNS0_9PosixTimeERKNS0_12TimeZoneRuleE +0000000000090734 g DF .text 0000000000000018 _ZN2nn2os13ConvertToTickENS_8TimeSpanE +00000000001c31f8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw17SetPositionInRoomEi +00000000001f0218 g DF .text 000000000000003c norm +000000000024b03c w DF .text 0000000000000ca8 _ZN22nerd_gillette_internal5otete7jaimev227DecodeFullSilhouetteImplROKINS_15NumericalVectorIfLm2EEEPFS4_NS3_IsLm2EEEEEEbRNS_30ContiguousStorageContainerBaseIT_Lb1EEERNS0_14InputBitStreamERKNS1_23FullSilhouetteCodecDataET0_ +0000000000118434 g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder15GetChannelCountEv +000000000003b2f4 g DF .text 000000000000028c _ZN2nn4util6Base6416FromBase64StringEPmPvmPKcmNS1_4ModeE +0000000000091330 g DF .text 000000000000000c nnosQuickExit +000000000017adbc w DF .text 00000000000000c0 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEESH_E14AllocateObjectINS_3ssl2sf11ISslContextEEEvi +000000000018ad24 g DF .text 0000000000000078 _ZN2nn5audio20SetSplitterMixVolumeEPNS0_12SplitterTypeEiPNS0_7MixInfoEfii +000000000022b1cc g DF .text 0000000000000008 _ZN2nn3hid6system24GetXcdDeviceHandleForNfcEPm +000000000009100c g DF .text 0000000000000008 nnosGetModuleCountMax +000000000094cf20 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22ILibraryAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000009516c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000174ed8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E39_nn_sf_sync_GetBluetoothBoostEnableFlagENS0_3OutIbvEE +00000000001b5f18 g DF .text 000000000000011c _ZN2nn3mii8Nickname3SetEPKt +00000000002c832c g DF .text 000000000000007c sync_get_nvrm_mapping +0000000000800e60 w DO .rodata 00000000000000b2 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +000000000017f698 g DF .text 0000000000000094 _ZN2nn4time18IsRtcResetDetectedEv +000000000003bd78 g DF .text 0000000000000078 _ZNK2nn4util8BitArray5countEv +00000000003270cc g DF .text 00000000000001bc _ZNSt3__17promiseIvED1Ev +00000000003a7900 g DF .text 0000000000000000 strcmp +00000000000c9f74 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service16IStorageAccessorEEEvi +00000000007ffb10 w DO .rodata 00000000000001a7 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000002c6c88 g DF .text 000000000000008c _ZN7android21SurfaceComposerClient15getActiveConfigERKNS_2spINS_7IBinderEEE +0000000000063c88 g DF .text 000000000000015c _ZN2nn2fs17GetMmcPatrolCountEPj +0000000000082014 g DF .text 0000000000000008 nnmem_nlib_fd_sync +0000000000286e88 g DF .text 000000000000004c NvRmGpuTaskSchedulingGroupCreate +00000000003c2ae4 g DF .text 000000000000003c iswgraph +0000000000139b40 g DF .text 0000000000000114 _ZN2nn3nfc21AttachDeactivateEventEPNS_2os15SystemEventTypeERKNS0_12DeviceHandleE +00000000003c3dd0 w DF .text 0000000000000034 __freelocale +000000000022debc g DF .text 0000000000000044 _ZN2nn3hid5debug30UnsetTouchScreenAutoPilotStateEv +0000000000184b70 g DF .text 0000000000000008 _ZNK2nn5audio15AudioBufferListINS0_13AudioInBufferEE5frontEv +0000000000026c3c g DF .text 000000000000053c _ZN2nn5image6detail4jpeg15jpeg_idct_15x15EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000001621a0 w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm8ELl0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm16ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm8EEENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +0000000000348ba4 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb1EE13do_neg_formatEv +00000000000cc5f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_GetDesirableKeyboardLayoutENS0_3OutIjvEE +0000000000168ce4 g DF .text 0000000000000050 _ZN2nn8settings6system19IsAutoUpdateEnabledEv +000000000019a9c8 g DF .text 0000000000000008 _ZN2nn5audio38InitializeFinalOutputRecorderParameterEPNS0_28FinalOutputRecorderParameterE +000000000097bd50 w DO .data 0000000000000038 _ZTINSt3__110moneypunctIcLb0EEE +00000000001ce7ec w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_SetDisplayContentTypeEmj +00000000001606b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_LeaveRestrictedSystemSettingsEv +000000000095a010 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003597a4 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDsLb1EE11do_encodingEv +000000000097c0a0 w DO .data 0000000000000018 _ZTINSt3__115messages_bynameIcEE +00000000003db78c g DF .text 000000000000004c __tre_mem_destroy +000000000009f6f0 w DF .text 00000000000001a0 _ZN2nn2sf4cmif6server6detail38CmifProcessFunctionTableGetterImplBaseINS0_4hipc6detail12IHipcManagerEE20ProcessServerMessageEPNS0_14IServiceObjectEPNS2_17CmifServerMessageERKNS0_6detail14PointerAndSizeE +00000000000b7d30 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E34_nn_sf_sync_ClearSaveDataThumbnailERKNS5_3UidENS_13ApplicationIdE +00000000001bafe0 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw15SetEyebrowColorEi +000000000011f3c0 g DF .text 00000000000000d0 _ZN2nn7friends24CancelFacedFriendRequestERKNS_7account3UidENS1_23NetworkServiceAccountIdE +0000000000822c7c g DO .rodata 0000000000000021 _ZNSt3__114__num_get_base5__srcE +000000000009a420 g DF .text 0000000000000034 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain11DisposeImplEv +000000000080b4a0 g DO .rodata 0000000000000019 _ZTSN2nn3hid13VibrationNodeE +00000000000c2040 w DF .text 0000000000000024 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureD0Ev +00000000001c3568 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding0Ei +00000000000b24c0 w DF .text 0000000000000044 _ZN2nn7account6detail24SimpleOAuthProcedureBaseD0Ev +000000000009e94c w DF .text 00000000000001a8 _ZN2nn2sf4hipc6detail23MakeHipcMessageDataInfoERKNS2_21HipcMessageHeaderInfoE +00000000002cbb0c g DF .text 0000000000000034 _ZN7android6Region16addRectUncheckedEiiii +00000000003a14f0 g DF .text 0000000000000080 __extendsfdf2 +000000000024fcf0 g DF .text 0000000000000044 _ZN2nn3ldn14GetIpv4AddressEPNS0_11Ipv4AddressEPNS0_10SubnetMaskE +0000000000135764 g DF .text 0000000000000334 _ZN2nn4htcs6detail25virtual_socket_collection6AcceptEiPNS0_12SockAddrHtcsERi +000000000008fc94 g DF .text 0000000000000040 _ZN2nn2os12SdkMutexType6UnlockEv +000000000015a7d4 w DF .text 0000000000000170 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm264EEENSB_ILi1ELi21ELm16EEEEEELm0ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESK_j +0000000000165cbc g DF .text 000000000000000c _ZNK2nn5prepo16SystemPlayReport8GetCountEv +00000000003ab09c g DF .text 0000000000000004 pthread_attr_setstack +0000000000096038 g DF .text 0000000000000070 _ZN2nn2os6detail27InterruptEventImplByHorizonC2EiNS0_14EventClearModeE +00000000000d1894 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E34_nn_sf_sync_GetLastThrottlingStateENS0_3OutINS5_15ThrottlingStateEvEE +000000000015d74c g DF .text 0000000000000038 _ZN2nn4pctl42ConfirmStereoVisionRestrictionConfigurableEv +00000000003a1fb0 g DF .text 000000000000004c __floatsidf +000000000015d684 g DF .text 0000000000000058 _ZN2nn4pctl18GetCurrentSettingsEPNS0_19RestrictionSettingsE +000000000022e664 g DF .text 000000000000001c _ZN2nn3hid6system36GetSixAxisSensorUserCalibrationStageEPNS1_33SixAxisSensorUserCalibrationStageERKNS1_25UniqueSixAxisSensorHandleE +0000000000045bf4 g DF .text 0000000000000084 _ZN2nn4diag6detail23GetAbortObserverManagerEv +000000000012f6e8 w DF .text 00000000000001b0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl68EEENS7_21OutObjectArgumentInfoILi0ELi0EEENSB_ILm66ELm2ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm72ELb0EEESI_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSN_27OutObjectClientArgumentTypeENSO_ILm66ELm2EEENSN_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000177a18 g DF .text 00000000000000ec _ZN2nn3ssl7Context7DestroyEv +00000000007c5310 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000080b464 g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId8HandheldE +00000000001a2284 g DF .text 000000000000008c _ZN2nn5audio6server18PerformanceManager12GetNextEntryEPNS1_25PerformanceEntryAddressesENS0_21PerformanceDetailTypeENS0_20PerformanceEntryTypeEj +00000000002222ac g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm11EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +0000000000326618 g DF .text 0000000000000174 _ZNSt3__117__assoc_sub_state9set_valueEv +000000000023e944 g DF .text 000000000000005c _ZN22nerd_gillette_internal5otete7jaimev123DecodeFullFrameShapeROKERNS1_22FullFrameShapeInPacketEPKhmPm +00000000001a2a18 g DF .text 0000000000000018 _ZN2nn5audio6server15BufferMixerInfo26UpdateForCommandGenerationEv +00000000003bb2c8 g DF .text 00000000000001e8 csqrt +0000000000951530 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000001892d0 g DF .text 000000000000002c _ZNK2nn5audio14MemoryPoolInfo10IsAttachedEv +000000000032c5fc w DF .text 0000000000000014 _ZTv0_n24_NSt3__113basic_istreamIwNS_11char_traitsIwEEED1Ev +00000000000b4d3c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE17GetCmifBaseObjectEv +0000000000184bfc g DF .text 000000000000000c _ZN2nn5audio21SetAudioOutBufferInfoEPNS0_14AudioOutBufferEPvm +00000000000be90c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000c6ff4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_GetIdleTimeDetectionExtensionENS0_3OutIjvEE +00000000000a03a0 g DF .text 0000000000000004 _ZN2nn2sf4hipc26AttachWaitHolderForReceiveEPNS_2os19MultiWaitHolderTypeENS_3svc6HandleE +00000000001610a4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000174afc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_GetPtmBatteryLotENS0_3OutINS5_7factory10BatteryLotEvEE +00000000001805e0 w DF .text 0000000000000114 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_7timesrv6detail7service14IStaticServiceENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEEENS_6ResultEPNS0_13SharedPointerIT_EENS_3svc6HandleE +0000000000221f6c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm7EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +000000000095d170 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEEvEE +00000000001b615c g DF .text 0000000000000004 _ZNK2nn3mii21ParamCharInfoAccessor7IsValidEv +000000000095d670 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEEvEE +00000000000b7458 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_GetAccountIdENS0_3OutINS5_23NetworkServiceAccountIdEvEE +0000000000801650 w DO .rodata 00000000000000ba _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000190c5c g DF .text 000000000000004c _ZN2nn5audio17StopAudioRendererENS0_19AudioRendererHandleE +0000000000228644 g DF .text 000000000000005c _ZN2nn3hid6system28IsAnalogStickInCircumferenceENS1_11UniquePadIdENS1_19AnalogStickPositionE +00000000007bdc80 w DO .rodata 000000000000015d _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000001693d8 g DF .text 0000000000000078 _ZN2nn8settings7factory14GetLcdVendorIdEPj +00000000002cdaa0 g DF .text 000000000000004c _ZN7android7RefBaseC2Ev +000000000095cfe0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_EE +000000000097d1c0 g DO .data 0000000000000018 _ZTINSt3__110ostrstreamE +000000000094d1a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001175c4 g DF .text 0000000000000024 _ZN2nn5codec19HardwareOpusDecoderC2Ei +0000000000015028 g DF .text 00000000000001a4 _ZN2nn5image6detail4jpeg20jpeg_add_quant_tableEPNS2_20jpeg_compress_structEiPKjib +0000000000063170 g DF .text 00000000000000c4 _ZN2nn2fs17IsArchivedProgramEPbNS_2os9ProcessIdE +00000000001b76f8 g DF .text 0000000000000010 _ZN2nn3mii6detail20GetHairColorFromVer3ENS1_13Ver3HairColorE +000000000017af40 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E28_nn_sf_sync_CreateConnectionENS0_3OutINS0_13SharedPointerINS6_14ISslConnectionEEEvEE +0000000000a82ae0 w DO .bss 0000000000000008 program_invocation_name +000000000029212c g DF .text 0000000000000024 NvWsiSetGpuMapping +0000000000283560 g DF .text 0000000000000030 NvDdkVicConfigureFilterCoefficients +00000000001cd938 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_CreateStrayLayerENS0_3OutImvEENSG_IlvEERKNS0_9OutBufferEmj +000000000095c900 g DO .data 0000000000000028 _ZTVN2nn3hid15VibrationPlayerE +000000000022041c w DF .text 0000000000000004 _ZN2nn3hid6detail23NfcXcdDeviceHandleStateD0Ev +0000000000073708 g DF .text 000000000000015c nnmem_nlib_memchr_mb_generic +00000000000cb3c4 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_GetHomeButtonWriterLockAccessorENS0_3OutINS0_13SharedPointerINS6_13ILockAccessorEEEvEE +0000000000979830 w DO .data 0000000000000018 _ZTINSt3__19basic_iosIwNS_11char_traitsIwEEEE +000000000021a760 g DF .text 0000000000000064 _ZN2nn3hid6detail20StopLrAssignmentModeEv +0000000000327008 g DF .text 0000000000000010 _ZNSt3__16futureIvED1Ev +000000000006fc04 g DF .text 0000000000000004 _ZN2nn4lmem20GetUnitHeapAlignmentEPNS0_6detail8HeapHeadE +00000000007ffcc0 w DO .rodata 0000000000000166 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000398934 g DF .text 000000000000001c __cxa_increment_exception_refcount +00000000000c2b24 g DF .text 0000000000000050 _ZN2nn2am26IsInitializedAsApplicationEv +0000000000396764 g DF .text 0000000000000054 _ZNSt14overflow_errorD2Ev +00000000003e7d8c g DF .text 0000000000000090 __nnmusl_pthread_setschedparam +00000000001c7948 g DF .text 000000000000008c _ZN2nn3mii13AppletManager8FinalizeEPNS_6applet13StorageHandleE +00000000002b8190 g DF .text 0000000000000060 _ZThn16_N7android18BnProducerListener10onTransactEjRKNS_6ParcelEPS1_j +00000000002a0534 g DF .text 000000000000002c _ZNK7android6Parcel9readFloatEv +0000000000102814 g DF .text 00000000000002ac silk_find_LPC_FIX +000000000029c0c4 g DF .text 0000000000000008 _ZNK7android12MemoryDealer9allocatorEv +000000000031ad2c w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIccEEPcEEjT0_S5_S5_S5_S5_T_ +000000000026b1f4 g DF .text 0000000000000080 NvRmSurfaceGetYuvColorFormat +000000000019a360 g DF .text 0000000000000028 _ZN2nn5audio23OpenFinalOutputRecorderEPNS0_19FinalOutputRecorderERKNS0_28FinalOutputRecorderParameterE +0000000000251dcc w DF .text 0000000000000220 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi25ELm1152EEENS7_17InRawArgumentInfoILm68ELm2ELl0EEENSD_ILm48ELm1ELl68EEENSD_ILm4ELm4ELl116EEENSD_ILm4ELm4ELl120EEEEEELm124ELm0ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSN_23InRawClientArgumentTypeILm68ELm2EvEENSP_ILm48ELm1EvEENSP_ILm4ELm4EvEESS_j +00000000002631a0 g DF .text 0000000000000058 NvOsThreadJoin +000000000097bdd0 w DO .data 0000000000000038 _ZTINSt3__110moneypunctIwLb0EEE +000000000011bad0 g DF .text 0000000000000008 _ZNK2nn3err14SystemErrorArg15GetErrorContextEv +00000000001b46ac g DF .text 000000000000006c _ZN2nn7friends24ShowMyProfileForHomeMenuERKNS_7account3UidE +0000000000804df0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi48EE4MaskE +0000000000822dd0 g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5cntrlE +00000000003560a0 g DF .text 00000000000000ac _ZNSt3__112ctype_bynameIwEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +0000000000803b60 w DO .rodata 000000000000004f _ZTSN2nn3hid6detail8RingLifoINS0_14BasicXpadStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000007e6050 w DO .rodata 0000000000000115 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectE +00000000002cf8fc g DF .text 0000000000000034 _ZN7android7String86appendEPKc +00000000003e20d8 g DF .text 0000000000000024 strcpy +00000000001b5374 g DF .text 00000000000000e8 _ZN2nn2la27AppletToNifmArgumentsReader15ReadFromStorageENS_6applet13StorageHandleE +00000000000d050c g DF .text 0000000000000118 _ZN2nn3apm27GetPerformanceConfigurationENS0_15PerformanceModeE +000000000024ff34 g DF .text 0000000000000034 _ZN2nn3ldn14DestroyNetworkEv +0000000000342190 w DF .text 000000000000005c _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_secondERiRS4_S4_RjRKNS_5ctypeIcEE +00000000001aa5bc g DF .text 00000000000000d4 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue4OpenEib +000000000008de6c g DF .text 0000000000000008 _ZN2nn2os18FinalizeTimerEventEPNS0_14TimerEventTypeE +0000000000953318 g DO .data 0000000000000010 _ZTIN2nn3ngc6detail11InputStreamE +000000000094e4c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000914f0 g DF .text 0000000000000008 nnosGetTlsValue +000000000012a284 w DF .text 0000000000000204 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm1024EEENSC_17InRawArgumentInfoILm16ELm8ELl32EEENSI_ILm32ELm1ELl0EEEEEELm48ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENST_ILm32ELm1EvEEj +00000000001baee4 g DF .text 000000000000009c _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw7IsValidEv +0000000000223138 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm9EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +0000000000091674 g DF .text 0000000000000014 _ZN2nn2os6detail39DetachReadableHandleOfInterProcessEventEPNS1_21InterProcessEventTypeE +00000000000a1b78 g DF .text 0000000000000008 nnsocketInetNtoa +00000000000b791c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE28_nn_sf_sync_GetProfileDigestENS0_3OutINS5_13ProfileDigestEvEERKNS5_3UidE +000000000018d83c g DF .text 000000000000006c _ZN2nn5audio6common21CheckFeatureSupportedEPFjvEj +000000000019cc78 w DF .text 000000000000002c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E25_nn_sf_sync_GetSampleRateENS0_3OutIivEE +0000000000182d24 g DF .text 0000000000000004 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTask12IsProcessingEv +00000000001b4640 g DF .text 000000000000006c _ZN2nn7friends13ShowMyProfileERKNS_7account3UidE +0000000000230170 g DF .text 0000000000000024 _ZN2nn3hid15VibrationTargetD0Ev +000000000024bf78 g DF .text 0000000000000040 _ZN2nn3kpr6detail22SetKeyCodeComposerModeEPNS1_22KeyCodeComposerStorageENS0_19KeyCodeComposerModeE +00000000003de87c g DF .text 0000000000000114 ungetwc +00000000007b0e10 w DO .rodata 000000000000001f _ZTSN2nn2sf6detail13CmifProxyInfoE +0000000000169d08 g DF .text 0000000000000050 _ZN2nn8settings6system15GetProductModelEv +000000000094c220 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000094d440 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000ca028 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000008eb18 g DF .text 00000000000000b0 _ZN2nn2os18TryJamMessageQueueEPNS0_16MessageQueueTypeEm +00000000001a3808 g DF .text 000000000000000c _ZN2nn5audio6server11AddressInfoC1ENS0_7CpuAddrEm +0000000000041bac g DF .text 0000000000000038 _ZN2nn4edid6detail22PhysicalAddressVisitorEPKhmPv +00000000001c8d9c g DF .text 0000000000000004 _ZN2nn2pl11BeginVrModeEv +0000000000298e6c g DF .text 0000000000000008 _ZThn8_N7android12BnMemoryHeap10onTransactEjRKNS_6ParcelEPS1_j +000000000018c39c g DF .text 0000000000000070 _ZN2nn5audio21GetReleasedWaveBufferEPNS0_9VoiceTypeE +0000000000287020 g DF .text 000000000000000c NvRmGpuSwizzlerInitChannel +0000000000979be8 w DO .data 0000000000000080 _ZTVNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000008fc0c g DF .text 0000000000000004 _ZNK2nn2os12SdkMutexType23IsLockedByCurrentThreadEv +00000000000a1b70 g DF .text 0000000000000004 nnsocketInetNtop +00000000001b630c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetMoleScaleEv +00000000000bae78 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE27_nn_sf_sync_GetProfileImageENS0_3OutIjvEERKNS0_9OutBufferE +00000000000c6d48 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_SetScreenShotPermissionEi +0000000000157668 g DF .text 00000000000000c0 _ZN2nn4nifm6detail42ConvertNetworkProfileBasicInfoToNifmFromSfEPNS0_23NetworkProfileBasicInfoERKNS1_2sf23NetworkProfileBasicInfoE +000000000008228c g DF .text 0000000000000070 nnmem_nlib_exist_path +000000000005292c g DF .text 0000000000000120 _ZN2nn2fs19MountDeviceSaveDataEPKcNS_3ncm13ApplicationIdE +0000000000950558 g DO .data 00000000000000b8 _ZTVN2nn5codec11OpusEncoderE +0000000000132fd0 g DF .text 0000000000000018 _ZN2nn4htcs20GetWorkingMemorySizeEi +000000000032ec60 w DF .text 00000000000000cc _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5tellgEv +000000000034a290 g DF .text 0000000000000050 _ZNSt3__121__throw_runtime_errorEPKc +00000000003b9a94 g DF .text 0000000000000058 casinf +0000000000136a2c w DF .text 0000000000000010 _ZN2nn2lm6detail17ShimLibraryGlobalD2Ev +00000000003b9aec g DF .text 0000000000000030 casinh +00000000000ce554 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE35_nn_sf_sync_GetLibraryAppletCreatorENS0_3OutINS0_13SharedPointerINS6_21ILibraryAppletCreatorEEEvEE +00000000001d6d30 g DF .text 0000000000000054 _ZN2nn2vi6native18NativeWindowHolder5ResetEv +00000000003998c8 g DF .text 0000000000000074 unw_init_local +0000000000167fcc g DF .text 0000000000000044 _ZN2nn8settings6system13GetBatteryLotEPNS1_10BatteryLotE +000000000025161c w DF .text 00000000000001e0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi26ELm1152EEENSB_ILi1ELi10ELm0EEEEEELm0ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESK_j +000000000035a534 g DF .text 0000000000000008 _ZNKSt3__120__codecvt_utf8_utf16IwE16do_always_noconvEv +00000000003b9b9c g DF .text 00000000000000a0 casinl +00000000000c6e6c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E55_nn_sf_sync_SetRequiresCaptureButtonShortPressedMessageEb +000000000015da9c g DF .text 0000000000000058 _ZN2nn4pctl14SetSafetyLevelENS0_11SafetyLevelE +00000000001746d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetOverlayDispProgramIdENS0_3OutINS_3ncm9ProgramIdEvEE +00000000009571b0 w DO .data 0000000000000018 _ZTIN2nn5audio6detail15IAudioInManagerE +00000000001bd1f0 g DF .text 0000000000000004 _ZN2nn3mii6detail20GetGlassTypeFromVer3ENS1_13Ver3GlassTypeE +00000000003ab0a4 g DF .text 0000000000000004 pthread_barrier_destroy +00000000003a4430 g DF .text 0000000000000034 __negvsi2 +00000000003dba4c g DF .text 0000000000000164 __hsearch_r +00000000001bb5d0 g DF .text 00000000000000ac _ZN2nn3mii6detail26UpdateNicknameIfInvalidUgcEPNS0_8NicknameE +0000000000286380 g DF .text 0000000000000040 nvgr_put_write_nvfence +0000000000052c94 g DF .text 0000000000000030 _ZN2nn2fs6detail26EventNotifierObjectAdapterC1EONS_2sf13SharedPointerINS_5fssrv2sf14IEventNotifierEEE +00000000002963c4 g DF .text 0000000000000070 _ZN7android8BpBinder8transactEjRKNS_6ParcelEPS1_j +0000000000095900 g DF .text 0000000000000028 _ZNK2nn2os6detail26ThreadManagerImplByHorizon15UnmapAliasStackEPKvS4_m +00000000000d7130 g DF .text 00000000000000e4 _ZN2nn4bcat21DeliveryCacheProgress6AttachEPNS0_6detail3ipc29IDeliveryCacheProgressServiceE +0000000000189e38 g DF .text 000000000000005c _ZN2nn5audio24PerformanceBufferManager15UpdateOutStatusEPKv +000000000029f3c8 g DF .text 00000000000001b8 _ZN7android6Parcel13writeString16EPKDsm +00000000000b2600 g DF .text 0000000000000034 _ZN2nn7account6detail15StartPselAppletERKNS0_10UiSettingsE +000000000016f0a8 g DF .text 0000000000000080 _ZN2nn8settings6detail22GetSettingsItemKeySizeEPmRKNS0_5fwdbg23SettingsItemKeyIteratorE +00000000001d5cd8 g DF .text 0000000000000080 _ZN2nn2vi6detail18SystemServiceProxyD2Ev +00000000002328e8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E43_nn_sf_sync_IsUsbFullKeyControllerConnectedENS0_3OutIbvEEj +000000000014b6fc g DF .text 000000000000004c _ZN2nn3ngc6detail11BitVector32D2Ev +0000000000052e08 g DF .text 0000000000000004 _ZN2nn2fs6detail37InitializeFileSystemCreatorInterfacesEv +0000000000091510 g DF .text 0000000000000004 nnosConvertNanoSecondsToTick +00000000000c8d28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE38_nn_sf_sync_GetAppletStateChangedEventENS0_3OutINS0_12NativeHandleEvEE +000000000016afa8 g DF .text 0000000000000044 _ZN2nn8settings6system7SetEdidERKNS1_4EdidE +00000000001d6df8 g DF .text 0000000000000118 _ZN2nn2vi6native8ParcelIo11WriteParcelEPmPvmPKN7android6ParcelE +000000000033b9c8 w DF .text 0000000000000204 _ZNSt3__19__num_getIcE19__stage2_float_prepERNS_8ios_baseEPcRcS5_ +000000000017c000 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm4ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeEj +00000000001726d4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_SetHostFsMountPointERKNS5_6system16HostFsMountPointE +00000000001aff30 g DF .text 0000000000000010 _ZN2nn5audio3dsp20DspExceptionNotifierC1Ev +00000000003ddcf8 g DF .text 0000000000000090 getc +000000000029e6e4 g DF .text 0000000000000020 _ZN7android6Parcel13writeString16ERKNS_8String16E +000000000016ad6c g DF .text 0000000000000060 _ZN2nn8settings6system28GetWirelessCertificationFileEPvm +00000000001a2894 g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase10ShouldSkipEv +00000000002533d4 g DF .text 0000000000000008 _ZNK2nn3web20LobbyPageReturnValue14GetLastUrlSizeEv +0000000000121e78 g DF .text 000000000000000c _ZN2nn7friends11BlockedUserC1Ev +0000000000184018 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_PrepareAddOnContentByApplicationIdEiNS_3ncm13ApplicationIdE +000000000018a4e4 g DF .text 00000000000000dc _ZN2nn5audio21AddCircularBufferSinkEPNS0_19AudioRendererConfigEPNS0_22CircularBufferSinkTypeEPNS0_12FinalMixTypeEPKaiPvmNS0_12SampleFormatE +00000000000b4824 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account29IAccountServiceForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +000000000012d854 g DF .text 000000000000000c _ZN2nn2fs27ConvertAccountUidToFsUserIdERKNS_7account3UidE +000000000095bd30 w DO .data 0000000000000018 _ZTIN2nn3hid6detail15SleepButtonLifoE +000000000035853c g DF .text 000000000000000c _ZNKSt3__17codecvtIDic11__mbstate_tE10do_unshiftERS1_PcS4_RS4_ +00000000001b6f5c g DF .text 0000000000000210 _ZN2nn3mii6detail11CharInfoRaw13SetDefaultMiiEiNS0_8CreateIdENS0_13FavoriteColorENS0_8NicknameE +000000000095d810 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail18HidTemporaryServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000000485bc g DF .text 0000000000000158 _ZN2nn2fs24HierarchicalRomFileTable17GetDirectoryEntryEPNS1_17DirectoryRomEntryEi +0000000000091178 g DF .text 0000000000000024 nnosBreak +00000000007dc500 w DO .rodata 0000000000000017 _ZTSN2nn3nfc6detail5IUserE +00000000007f2838 g DO .rodata 0000000000000004 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue12MailBoxCountE +00000000003de01c g DF .text 0000000000000058 gets +0000000000942d80 w DO .data 0000000000000038 _ZTIN2nn2fs13MemoryStorageE +000000000094c138 w DO .data 0000000000000078 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IWindowControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001b511c g DF .text 00000000000000d8 _ZN2nn2la11SendRequestEPKvmPFvvE +000000000097b248 g DO .data 0000000000000060 _ZTVNSt3__114__codecvt_utf8IDiEE +00000000003a7764 g DF .text 0000000000000000 fetestexcept +00000000003de074 g DF .text 000000000000003c getw +0000000000189108 g DF .text 0000000000000014 _ZN2nn5audio14MemoryPoolInfoD2Ev +0000000000189cb8 g DF .text 0000000000000008 _ZN2nn5audio24PerformanceBufferManager32GetCurrentPerformanceFrameBufferEv +0000000000354b28 g DF .text 0000000000000228 _ZNKSt3__114collate_bynameIcE12do_transformEPKcS3_ +0000000000095190 g DF .text 00000000000000d4 _ZN2nn2os6detail25SharedMemoryImplByHorizon6CreateEPjmNS0_16MemoryPermissionES4_ +000000000021ef34 g DF .text 0000000000000034 _ZN2nn3hid6detail29AttachSharedMemoryForRingLifoEPNS_2os16SharedMemoryTypeEmjb +0000000000081d14 g DF .text 0000000000000008 nnmem_nlib_debug_break +000000000080bd60 w DO .rodata 00000000000000e6 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_EE +0000000000053ed0 w DF .text 0000000000000110 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl19SetSessionCountImplEi +0000000000167d98 g DF .text 0000000000000048 _ZN2nn8settings6system28SetHeadphoneVolumeUpdateFlagEb +0000000000080a74 g DF .text 000000000000005c nnmem_nlib_epochtime +00000000001110fc g DF .text 0000000000000008 opus_repacketizer_get_size +000000000097d620 g DO .data 0000000000000028 _ZTVSt13bad_exception +00000000002a620c g DF .text 000000000000002c android_atomic_release_cas +00000000003ab0f8 w DF .text 0000000000000004 pthread_mutex_trylock +0000000000257c10 g D .text 0000000000000000 __nnDetailNintendoSdkNsoFile +00000000002633a4 g DF .text 000000000000008c NvOsSystemEventCreate +00000000002c7fdc g DF .text 0000000000000148 __android_log_assert +00000000001d69fc g DF .text 0000000000000020 _ZN2nn2vi6detail18SystemServiceProxy32FinalizeSystemDisplayServiceImplEv +00000000003e6cc4 g DF .text 000000000000001c __nnmusl_TryLockRecursiveLock +00000000002a0498 g DF .text 0000000000000038 _ZNK7android6Parcel11readPointerEPm +0000000000199f34 g DF .text 000000000000005c _ZN2nn5audio41RequestResumeFinalOutputRecordersForDebugENS_6applet20AppletResourceUserIdE +0000000000395e00 g DF .text 0000000000000014 _ZNSt16bad_array_lengthC1Ev +0000000000361968 w DF .text 0000000000000064 _Znwm +000000000023abd4 g DF .text 0000000000000018 _ZN2nn8irsensor23GetMomentProcessorStateEPNS0_20MomentProcessorStateERKNS0_14IrCameraHandleE +00000000007adaa8 g DO .rodata 0000000000000004 _ZN2nn4util6detail8FloatUlpE +00000000000a18bc g DF .text 0000000000000004 _ZN2nn6socket12SocketExemptEiii +00000000003a8eb0 g DF .text 0000000000000054 __uselocale +0000000000188a30 g DF .text 0000000000000148 _ZN2nn5audio13EffectManager3AddEPPNS0_10EffectInfoENS0_10EffectTypeEPvmPNS0_7MixInfoE +0000000000071000 g DF .text 000000000000020c nnmem_nlib_spinlock_lock_ +0000000000158dd4 g DF .text 0000000000000104 _ZN2nn3nsd6detail3ipc14ImportSettingsEPKvmPvmNS0_10ImportModeE +0000000000182130 w DF .text 00000000000001dc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_17InRawArgumentInfoILm8ELm2ELl0EEEEEELm8ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm2EvEEj +0000000000258cc8 g DF .text 0000000000000008 nvdcSetCursor +0000000000942b48 g DO .data 0000000000000050 _ZTVN2nn2fs17FileHandleStorageE +0000000000184be8 g DF .text 0000000000000008 _ZNK2nn5audio15AudioBufferListINS0_14AudioOutBufferEE4backEv +0000000000227070 g DF .text 0000000000000060 _ZN2nn3hid6detail29IsUsbFullKeyControllerEnabledEPb +000000000022b580 g DF .text 0000000000000080 _ZN2nn3hid22GetNpadControllerColorEPNS0_19NpadControllerColorES2_RKj +00000000002a61f4 g DF .text 000000000000000c android_atomic_acquire_load +0000000000348250 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb0EE16do_positive_signEv +0000000000232bdc w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +00000000002575d4 g DF .text 000000000000013c _ZN2nn3web15ShowNewsPageArg6SetUidERKNS_7account3UidE +000000000006d144 g DF .text 000000000000009c _ZN2nn3htc26BindHostDisconnectionEventEPNS_2os11SystemEventE +000000000018ad9c g DF .text 0000000000000080 _ZN2nn5audio20SetSplitterMixVolumeEPNS0_12SplitterTypeEiPNS0_10SubMixTypeEfii +000000000036d820 w DF .text 0000000000000054 _ZNSt3__18valarrayImEC2Em +000000000006b2d0 g DF .text 000000000000008c _ZN2nn2fs16SaveDataImporter8FinalizeEv +000000000015059c g DF .text 0000000000000058 _ZN2nn4nifm6detail29TemporaryNetworkProfileClient7PersistEv +00000000003a43fc g DF .text 0000000000000034 __negvdi2 +0000000000071868 g DF .text 0000000000000078 nnmem_nlib_rwlock_rdlock +00000000000bf988 g DF .text 0000000000000068 _ZN2nn7account32IsNetworkServiceAccountAvailableEPbRKNS0_10UserHandleE +00000000001875ac g DF .text 0000000000000088 _ZN2nn5audio20GetReverbInputOutputEPKNS0_10ReverbTypeEPaS4_Pii +00000000001aa468 g DF .text 0000000000000004 _ZN2nn5audio3dsp9SetVolumeENS0_19AppletVolumeManager11SessionTypeEifj +00000000003669ec w DF .text 0000000000000144 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmmw +00000000001cb814 g DF .text 0000000000000034 _ZN2nn5swkbd6detail18InlineKeyboardImpl33SetDirectionalButtonAssignEnabledEb +00000000002834fc g DF .text 0000000000000064 NvDdkVicConfigureSourceFilter +00000000007d3f6c g DO .rodata 000000000000003a silk_Resampler_3_4_COEFS +00000000000d6028 g DF .text 0000000000000098 _ZN2nn4bcat22DeliveryCacheDirectoryD2Ev +00000000000a1a10 g DF .text 0000000000000024 _ZN2nn6socket11GetNameInfoEPK8sockaddrjPcjS4_ji +00000000001ce9f8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_DisconnectSharedLayerENS_2vi7fbshare17SharedLayerHandleE +00000000001d6b6c g DF .text 000000000000001c _ZN2nn2vi6detail18SystemServiceProxy23GetSystemDisplayServiceEv +0000000000109578 g DF .text 00000000000002c4 silk_warped_autocorrelation_FIX +00000000001ce718 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_ListDisplayContentTypesENS0_3OutIlvEERKNS0_8OutArrayIjEEm +000000000020d630 g DF .text 0000000000000260 get_EBLC_partial +0000000000364d24 w DF .text 0000000000000098 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE17find_first_not_ofEPKcmm +00000000003e0c84 w DF .text 0000000000000094 __strtoull_internal +0000000000273e50 g DF .text 0000000000000060 NvRmChannelGetModuleSyncPoint +0000000000220470 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_18SixAxisSensorStateELi32ENS1_13AtomicStorageIS3_EEED2Ev +00000000003e78fc g DF .text 0000000000000010 __nnmusl_sched_get_priority_max +00000000000938f0 g DF .text 0000000000000050 _ZN2nn2os6detail37MultiWaitHolderOfMessageQueueNotEmpty15AddToObjectListEv +000000000009ccb4 w DF .text 0000000000000064 _ZN2nn2sf4hipc6server24HipcServerSessionManager20DestroyServerSessionEPNS2_21HipcServerSessionBaseE +00000000001afdfc g DF .text 000000000000007c _ZN2nn5audio3dsp24ApplyLinearEnvelopeGain2EPiPKiiii +00000000000c79d8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service7IWindowENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000000d8120 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +00000000001a54a0 g DF .text 0000000000000054 _ZNK2nn5audio6server15SplitterContext18GetDestinationDataEii +00000000001bfe50 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetNoseScaleEv +000000000032b0ec w DF .text 0000000000000108 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getEv +00000000003ab0ac g DF .text 0000000000000004 pthread_barrier_wait +000000000014c280 g DF .text 0000000000000030 _ZN2nn3ngc6detail9SbvSelect12SetAllocatorEPNS1_16WorkBufAllocatorE +0000000000181274 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E23_nn_sf_sync_GetRtcValueENS0_3OutIlvEE +00000000001a7a54 g DF .text 0000000000000054 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl26QueryAudioDeviceInputEventENS_2sf3OutINS4_12NativeHandleEvEE +00000000003a30ac g DF .text 000000000000009c __mulosi4 +000000000009150c g DF .text 0000000000000004 nnosConvertTickToNanoSeconds +0000000000354d50 g DF .text 000000000000015c _ZNSt3__114collate_bynameIwEC2EPKcm +00000000000c1c30 g DF .text 0000000000000060 _ZN2nn7account31NintendoAccountLinkageProcedure31IsNetworkServiceAccountReplacedEPb +0000000000150b8c g DF .text 0000000000000008 _ZN2nn4nifm6detail13RequestClient14GetSystemEventEv +00000000003e78f8 w DF .text 0000000000000004 __nnmusl_random_lock_init +00000000000956a0 g DF .text 0000000000000048 _ZN2nn2os6detail22MultiWaitImplByHorizon10CancelWaitEv +00000000000be384 w DF .text 0000000000000008 _ZN2nn2sf22UnitHeapMemoryResource13do_deallocateEPvmm +00000000001b5310 g DF .text 000000000000000c _ZN2nn2la27AppletToNifmArgumentsReaderC1Ev +0000000000045440 g DF .text 000000000000009c _ZN2nn4diag23UnregisterAbortObserverEPNS0_19AbortObserverHolderE +000000000006bac4 g DF .text 0000000000000168 _ZN2nn2fs12GetSdCardCidEPvm +000000000008d3dc g DF .text 0000000000000084 _ZN2nn2os9WaitEventEPNS0_9EventTypeE +00000000001d321c g DF .text 0000000000000070 _ZN2nn2vi15SetDisplayAlphaEPNS0_7DisplayEf +0000000000071438 g DF .text 0000000000000114 nnmem_nlib_thread_attr_setint +0000000000158820 g DF .text 0000000000000018 _ZN2nn3nsd17GetNasRequestFqdnEPNS0_4FqdnE +0000000000192b40 w DF .text 0000000000000218 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEEEEELm8ELm0ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSM_23InRawClientArgumentTypeILm8ELm8EvEENSM_26InHandleClientArgumentTypeEj +00000000003a92c8 g DF .text 0000000000000004 sched_yield +00000000003a7c64 g DF .text 0000000000000000 longjmp +0000000000152298 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E23_nn_sf_sync_GetScanDataERKNS0_8OutArrayINS6_2sf15AccessPointDataEEENS0_3OutIivEE +0000000000318ba0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E20_nn_sf_sync_GetStateENS0_3OutINS5_11ModuleStateEvEEi +000000000006f760 g DF .text 0000000000000064 _ZN2nn4lmem20ResizeFrameHeapBlockEPNS0_6detail8HeapHeadEPvm +0000000000946e38 g DO .data 0000000000000020 _ZTVN2nn7account6detail18OAuthProcedureBaseE +0000000000356c7c g DF .text 000000000000009c _ZNSt3__17codecvtIwc11__mbstate_tEC2Em +00000000001793e4 g DF .text 00000000000000a4 _ZN2nn3ssl10Connection7PendingEPi +000000000009f3a4 w DF .text 0000000000000074 _ZN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage27BeginPreparingForErrorReplyEPNS0_6detail14PointerAndSizeEm +00000000001ca1b4 g DF .text 000000000000000c _ZN2nn5swkbd14InlineKeyboard25GetImageMemoryRequirementEPmS2_ +0000000000230d08 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E40_nn_sf_sync_SetSleepButtonAutoPilotStateENS5_5debug25SleepButtonAutoPilotStateE +0000000000197eb4 g DF .text 0000000000000004 _ZN2nn5audio15StopDspProfilerEv +00000000000c7b94 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E45_nn_sf_sync_GetMainAppletExpectedMasterVolumeENS0_3OutIfvEE +000000000017cff4 w DF .text 00000000000000b0 _ZN2nn4time6detail25AdjustableSystemClockBaseINS0_26StandardNetworkSystemClockEE6AdjustEv +000000000097b870 g DO .data 0000000000000018 _ZTINSt3__18numpunctIcEE +00000000007cdac0 w DO .rodata 0000000000000013 _ZTSN2nn3apm8IManagerE +00000000000939a8 g DF .text 0000000000000010 _ZNK2nn2os6detail29MultiWaitHolderOfNativeHandle15GetNativeHandleEPj +000000000016dddc g DF .text 0000000000000070 _ZN2nn8settings6detail22GetAccelerometerOffsetEPNS0_7factory19AccelerometerOffsetE +0000000000286c74 g DF .text 000000000000000c NvRmGpuChannelGetInfo +00000000000a967c w DF .text 00000000000001c8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl32EEENSC_20InHandleArgumentInfoILi0ELi1EEENSI_ILm8ELm8ELl40EEENSI_ILm32ELm4ELl0EEEEEELm48ELm4ELb1EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_26InHandleClientArgumentTypeESY_NSX_ILm32ELm4EvEEj +00000000001b90d4 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetNoseScaleEv +00000000000913fc g DF .text 0000000000000004 nnosDestroySystemEvent +0000000000091508 g DF .text 0000000000000004 nnosGetSystemTickFrequency +00000000007f6e6c g DO .rodata 0000000000000084 _ZN2nn3mii6detail13HairFlipTableE +0000000000029bf8 g DF .text 00000000000002e0 _ZN2nn5image6detail4jpeg13jpeg_idct_4x8EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000094fe80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003c3098 g DF .text 0000000000000008 towlower +000000000026452c g DF .text 0000000000000004 NvOsStrlen +00000000002a63c0 g DF .text 0000000000000014 native_handle_close +000000000039f0f0 g DF .text 0000000000000044 __ashlti3 +000000000008cf98 g DF .text 000000000000003c _ZN2nn2os14FlushDataCacheEPKvm +00000000000c4f34 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000332918 w DF .text 000000000000022c _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPNS_15basic_streambufIwS2_EE +00000000001c78dc g DF .text 0000000000000004 _ZN2nn3mii13AppletManagerD1Ev +00000000001689f4 g DF .text 0000000000000044 _ZN2nn8settings26ResetDebugPadGenericPadMapEv +00000000001b5758 g DF .text 0000000000000004 _ZN2nn2la21CommonArgumentsWriterD2Ev +00000000000913a8 g DF .text 0000000000000004 nnosFinalizeConditionVariable +00000000007e44b0 w DO .rodata 000000000000002d _ZTSN2nn8settings28IFirmwareDebugSettingsServerE +000000000039675c g DF .text 0000000000000008 _ZNKSt11logic_error4whatEv +00000000003abc74 w DF .text 00000000000002b4 strftime_l +000000000002e59c g DF .text 0000000000000020 _ZN2nn5image11JpegDecoderC2Ev +0000000000236d18 g DF .text 000000000000008c _ZN2nn8irsensor6detail23GetMomentProcessorStateEPNS0_20MomentProcessorStateERKNS0_14IrCameraHandleE +0000000000959450 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +000000000008f210 g DF .text 0000000000000014 _ZN2nn2os12TimedWaitAnyEPNS0_13MultiWaitTypeENS_8TimeSpanE +0000000000a80c10 w DO .bss 0000000000000010 _ZNSt3__17collateIwE2idE +00000000003c5eb4 g DF .text 00000000000000d0 acoshf +0000000000090830 g DF .text 0000000000000004 _ZN2nn2os18SetMemoryAttributeEmmNS0_15MemoryAttributeE +0000000000174750 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_GetWirelessCertificationFileENS0_3OutImvEERKNS0_9OutBufferE +00000000001a38e4 g DF .text 00000000000000bc _ZN2nn5audio6server7MixInfoC2EPiiRKNS1_12BehaviorInfoE +0000000000318f10 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_GetPowerDomainStateTableERKNS0_8OutArrayINS5_16PowerDomainStateEEENS0_3OutIivEEi +00000000003de0c4 g DF .text 0000000000000040 __ofl_add +00000000003c5f84 g DF .text 000000000000001c acoshl +00000000000607a4 g DF .text 00000000000000c4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter21DoGetFileTimeStampRawEPNS0_16FileTimeStampRawEPKc +00000000000a3bc0 g DF .text 00000000000001d0 _ZN2nn6socket6detail5FcntlEiiz +00000000000cc79c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_ReportVisibleErrorWithErrorContextENS_3err9ErrorCodeERKNSK_12ErrorContextE +0000000000168b7c g DF .text 0000000000000078 _ZN2nn8settings7factory27GetEticketDeviceCertificateEPNS1_24Rsa2048DeviceCertificateE +000000000016db3c g DF .text 0000000000000070 _ZN2nn8settings6detail15SetLanguageCodeERKNS0_12LanguageCodeE +00000000001cfce8 w DF .text 000000000000011c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl16EEENSB_ILm8ELm8ELl24EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEENSB_ILm4ELm4ELl12EEEEEELm32ELm0ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESP_NSO_ILm4ELm4EvEESQ_SQ_SQ_j +0000000000358874 g DF .text 0000000000000020 _ZNKSt3__114__codecvt_utf8IwE9do_lengthER11__mbstate_tPKcS5_m +0000000000239330 g DF .text 0000000000000048 _ZN2nn8irsensor6detail20InternalErrorHandler17SetInternalStatusERKNS0_22IrCameraInternalStatusERKNS0_14IrCameraHandleE +00000000000b44c8 g DF .text 0000000000000060 _ZN2nn7account25DebugInvalidateTokenCacheERKNS0_3UidE +0000000000957610 w DO .data 0000000000000018 _ZTIN2nn5audio6detail26IAudioInManagerForDebuggerE +00000000001a35f0 g DF .text 000000000000006c _ZNK2nn5audio6server10PoolMapper5UnmapEPNS1_14MemoryPoolInfoE +000000000094fa80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000015ebf0 g DF .text 0000000000000008 _ZN2nn4pctl18PairingAccountInfoD2Ev +000000000080b4c0 w DO .rodata 000000000000003e _ZTSN2nn4util21IntrusiveListBaseNodeINS_3hid13VibrationNodeES3_EE +0000000000194798 w DF .text 000000000000021c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm52ELm4ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEENSF_ILi1ELi1EEENSD_ILm8ELm8ELl56EEENSD_ILm8ELm8ELl64EEEEEELm72ELm0ELb1EEESK_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSP_23InRawClientArgumentTypeILm52ELm4EvEENSP_26InHandleClientArgumentTypeEST_NSR_ILm8ELm8EvEESU_jPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000003ce6c4 g DF .text 00000000000000e0 sin +000000000019a670 g DF .text 0000000000000008 _ZN2nn5audio36GetFinalOutputRecorderBufferDataSizeEPKNS0_25FinalOutputRecorderBufferE +00000000002d1f54 g DF .text 0000000000000014 _ZN7android16SortedVectorImplD1Ev +00000000003de4a8 g DF .text 0000000000000004 putwc +00000000000924c8 g DF .text 0000000000000090 _ZN2nn2os6detail10TlsManager11FreeTlsSlotENS0_7TlsSlotE +00000000000b6aa8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +00000000000d0128 g DF .text 0000000000000068 _ZN2nn3apm18FinalizePrivilegedEv +0000000000942708 w DO .data 0000000000000010 _ZTIN2nn2sf6detail13CmifProxyInfoE +00000000002286e4 g DF .text 0000000000000060 _ZN2nn3hid6system21GetAudioControlStatesEPNS1_17AudioControlStateEi +00000000003a3010 g DF .text 000000000000009c __mulodi4 +0000000000170b2c g DF .text 0000000000000070 _ZN2nn8settings6detail24SetWirelessLanEnableFlagEb +00000000007f0f10 g DO .rodata 0000000000000024 _ZTSN2nn5audio6server15I3dl2ReverbInfoE +0000000000174c80 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_SetAutoUpdateEnableFlagEb +00000000003138e0 g DF .text 0000000000000014 _ZN2nn3fgm7RequestC1Ev +00000000000bb3e4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE47_nn_sf_sync_GetNintendoAccountUserResourceCacheENS0_3OutINS5_17NintendoAccountIdEvEENSR_INS5_3nas11NasUserBaseEvEERKNS0_9OutBufferE +000000000026b508 g DF .text 0000000000000008 NvRmSurfaceSetup +0000000000093a04 g DF .text 0000000000000060 _ZN2nn2os6detail21AddressSpaceAllocator30GetNextNonOverlappedNodeUnsafeEmm +00000000001e2c90 g DF .text 00000000000002a0 FSS_get_available_fonts +00000000001a5094 g DF .text 0000000000000008 _ZNK2nn5audio6server11SinkContext8GetCountEv +0000000000234cc4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E48_nn_sf_sync_AcquireConnectionTriggerTimeoutEventENS0_3OutINS0_12NativeHandleEvEE +00000000003614fc g DF .text 0000000000000094 _ZNSt3__121recursive_timed_mutexD1Ev +0000000000942438 g DO .data 0000000000000020 _ZTVN2nn5image11JpegEncoderE +0000000000050a64 g DF .text 0000000000000018 _ZN2nn2fs6detail10UnregisterEPKc +000000000003b5e0 g DF .text 0000000000000010 _ZNK2nn4util16BinaryFileHeader16IsSignatureValidEl +000000000014e018 g DF .text 0000000000000088 _ZN2nn3ngc6detail9SparseSet4InitEm +00000000001333bc g DF .text 0000000000000078 _ZN2nn4htcs6detail6socketERi +000000000018a918 g DF .text 00000000000000f4 _ZN2nn5audio11SinkManager21UpdateSinkInParameterEPNS0_6common15SinkInParameterE +0000000000953c20 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000133870 g DF .text 0000000000000184 _ZN2nn4htcs6detail9recvLargeENS_2sf13SharedPointerINS_3tma7ISocketEEEPvmiRi +0000000000152acc w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E29_nn_sf_sync_GetAdditionalInfoENS0_3OutINS5_14AdditionalInfoEvEENSP_IjvEE +00000000002aa7c4 g DF .text 0000000000000050 _ZNK7android10BufferItem16getFlattenedSizeEv +0000000000229528 g DF .text 000000000000005c _ZN2nn3hid10GetXpadIdsEPNS0_9JoyXpadIdEi +000000000032b2c8 w DF .text 00000000000001d0 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getEPclc +0000000000329388 w DF .text 00000000000000c4 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsputnEPKcl +000000000035a89c g DF .text 0000000000000040 _ZNSt3__115numpunct_bynameIcED2Ev +0000000000945e20 w DO .data 0000000000000018 _ZTIN2nn2sf4hipc6detail12IHipcManagerE +000000000019a8f0 g DF .text 00000000000000d8 _ZN2nn5audio19RegisterBufferEventEPNS0_19FinalOutputRecorderEPNS_2os11SystemEventE +000000000016ba60 g DF .text 0000000000000070 _ZN2nn8settings6detail28GetHeadphoneVolumeUpdateFlagEPb +00000000000b1f98 g DF .text 0000000000000028 _ZN2nn7account6detail18OAuthProcedureBaseC2ERKNS0_3UidEPNS0_4http15IOAuthProcedureE +0000000000346f70 w DF .text 0000000000000008 _ZNKSt3__110moneypunctIcLb1EE16do_decimal_pointEv +0000000000253efc g DF .text 0000000000000090 _ZN2nn3web22ShowOfflineHtmlPageArg30SetMediaPlayerAutoCloseEnabledEb +00000000003a4ec8 g DF .text 000000000000027c __udivmodti4 +000000000039c8e4 g DF .text 000000000000002c _Unwind_GetRegionStart +0000000000958de8 g DO .data 0000000000000020 _ZTVN2nn5audio6server11EntryAspectE +00000000008230d0 g DO .rodata 0000000000000023 _ZTSNSt3__17codecvtIDic11__mbstate_tEE +0000000000074ca8 g DF .text 0000000000000078 nnmem_nlib_strcat +0000000000113c20 g DF .text 0000000000000178 opus_multistream_decoder_init +0000000000234b40 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E42_nn_sf_sync_EnableAppletToGetSixAxisSensorENS_6applet20AppletResourceUserIdEb +0000000000274290 g DF .text 00000000000000b4 NvRmChannelSyncPointWaitTimeout +00000000002c5f8c g DF .text 0000000000000034 _ZN7android21SurfaceComposerClient21openGlobalTransactionEv +000000000004d7f0 g DF .text 00000000000000c4 _ZN2nn2fs6detail18FileSystemAccessor10RenameFileEPKcS4_ +000000000014b908 g DF .text 0000000000000018 _ZNK2nn3ngc6detail11BitVector327MemSizeEv +000000000031a024 g DF .text 0000000000000050 _ZN2nn3pwm9SetPeriodEPNS0_14ChannelSessionENS_8TimeSpanE +0000000000053fe0 w DF .text 00000000000000d0 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl16RemoveHandleImplEv +000000000094d5d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000ba864 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEE21_nn_sf_sync_LoadImageENS0_3OutIjvEERKNS0_9OutBufferE +00000000000c1ff8 w DF .text 0000000000000024 _ZN2nn7account31NintendoAccountLinkageProcedureD0Ev +000000000015cd88 g DF .text 0000000000000054 _ZN2nn2oe21SwitchLcdBacklightOffEv +0000000000001f74 g DF .text 000000000000010c _ZN2nn6crypto6detail11bigint_multEPjPKjS4_i +0000000000220564 g DF .text 0000000000000060 _ZN2nn3hid6detail18SharedMemoryHolder6AttachEj +0000000000341418 w DF .text 00000000000000b0 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIcEE +000000000006877c g DF .text 0000000000000148 _ZN2nn2fs22QuerySaveDataTotalSizeEPlll +0000000000091138 g DF .text 0000000000000018 nnosExitProcess +000000000017eb4c g DF .text 0000000000000014 _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTask14GetFinishEventEv +000000000019d7d8 g DF .text 000000000000019c _ZN2nn5audio6server13CommandBuffer27GenerateBiquadFilterCommandEPKNS1_9VoiceInfoEPNS0_10VoiceStateEij +000000000022cc88 g DF .text 0000000000000048 _ZN2nn3hid25EnableSixAxisSensorFusionERKNS0_19SixAxisSensorHandleEb +0000000000333314 g DF .text 000000000000003c _ZNSt3__18ios_base7failureC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_10error_codeE +00000000001c5a30 g DF .text 0000000000000020 _ZN2nn3mii15PrivateDatabase8FinalizeEv +000000000023ced8 w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm32ELm8ELl16EEENS7_20InHandleArgumentInfoILi0ELi1EEENSB_ILm8ELm8ELl48EEEEEELm56ELm0ELb1EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSO_ILm4ELm4EvEENSO_ILm32ELm8EvEENSN_26InHandleClientArgumentTypeESP_j +00000000003e0ed4 w DF .text 0000000000000094 __strtoimax_internal +00000000001ce78c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_GetDisplayUnderscanENS0_3OutIlvEEm +000000000006b6fc g DF .text 0000000000000018 _ZN2nn2fs19MountSdCardForDebugEPKc +000000000097d498 g DO .data 0000000000000028 _ZTVSt18bad_variant_access +000000000006f70c g DF .text 0000000000000054 _ZN2nn4lmem15FreeToFrameHeapEPNS0_6detail8HeapHeadENS0_8FreeModeE +000000000014be80 g DF .text 00000000000001fc _ZN2nn3ngc6detail7SbvRank6ImportEPNS1_12BinaryReaderEj +00000000000503bc g DF .text 000000000000012c _ZN2nn2fs14CommitSaveDataEPKc +000000000004b0e4 g DF .text 0000000000000020 _ZN2nn2fs26FileStorageBasedFileSystemC1Ev +00000000000b5444 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile8IProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +0000000000264b6c g DF .text 0000000000000004 NvOsFlushWriteCombineBuffer +000000000017b564 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E17_nn_sf_sync_WriteENS0_3OutIjvEERKNS0_8InBufferE +00000000002a0628 g DF .text 000000000000006c _ZNK7android6Parcel11readCStringEv +00000000001d3710 g DF .text 00000000000000b8 _ZN2nn2vi16ListDisplayModesEPNS0_15DisplayModeInfoEiPKNS0_7DisplayE +00000000008055b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi110EE4MaskE +00000000007c4370 g DO .rodata 0000000000000017 _ZTSN2nn7account8NotifierE +00000000001863cc g DF .text 0000000000000078 _ZN2nn5audio29GetRequiredBufferSizeForDelayENS_8TimeSpanEii +0000000000114584 g DF .text 00000000000003e0 opus_multistream_decoder_ctl +0000000000230bb8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E39_nn_sf_sync_UnsetKeyboardAutoPilotStateEv +000000000025d178 g DF .text 000000000000000c NvOsClosedir +00000000003e0300 g DF .text 0000000000000014 div +0000000000008848 w DF .text 0000000000000008 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE8Block1284ZeroEv +0000000000223fc4 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm14EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +000000000007041c g DF .text 0000000000000008 _ZN2nn4lmem6detail25GetExpHeapMemoryBlockSizeEPKv +00000000000e938c g DF .text 0000000000000134 ec_enc_uint +00000000001aa458 g DF .text 0000000000000004 _ZN2nn5audio3dsp23ClearRemainCommandCountEi +0000000000804d30 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi42EE4MaskE +00000000000914c4 g DF .text 0000000000000004 nnosSetMultiWaitHolderUserData +00000000007c8240 w DO .rodata 0000000000000102 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000d12a8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000956d28 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags41AudioRendererProcessingTimeLimit75PercentE +0000000000264b98 g DF .text 0000000000000050 NvOsRegisterExitHandler +000000000036d318 g DF .text 0000000000000038 _ZNSt3__115__thread_structD2Ev +00000000000bb100 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE17GetCmifBaseObjectEv +00000000001221cc g DF .text 0000000000000008 _ZNK2nn7friends6Friend10IsFavoriteEv +000000000003e2a4 g DF .text 000000000000005c _ZN2nn4util13VFormatStringEPFvmPKciEmS2_St9__va_list +00000000007c0780 w DO .rodata 0000000000000153 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +0000000000122d70 g DF .text 000000000000000c _ZN2nn7friends16UserPresenceViewC1Ev +0000000000088414 g DF .text 00000000000001e0 _ZN2nn7nlibsdk4heap14TlsHeapCentral14CheckSpanList_Ev +00000000000081e4 w DF .text 0000000000000034 _ZN2nn6crypto6detail11XtsModeImplINS1_20XtsModeGenericHelperEE8FinalizeEPvm +00000000000bb6c0 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E27_nn_sf_sync_UnregisterAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +00000000001689b0 g DF .text 0000000000000044 _ZN2nn8settings24SetDebugPadGenericPadMapERKNS0_21DebugPadGenericPadMapE +00000000001c983c g DF .text 00000000000000a4 _ZN2nn5swkbd17SetHeaderTextUtf8EPNS0_14KeyboardConfigEPKc +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__116__narrow_to_utf8ILm16EED1Ev +000000000009fdf4 w DF .text 0000000000000170 _ZN2nn2sf4cmif6server6detail34CmifProcessFunctionTableGetterImplINS0_4hipc6detail12IHipcManagerEE28Process_CloneCurrentObjectExEPPNS1_13CmifOutHeaderEPS7_PNS2_17CmifServerMessageEONS0_6detail14PointerAndSizeE +0000000000091444 g DF .text 0000000000000004 nnosInitializeInterruptEvent +00000000000d73a4 g DF .text 00000000000000b4 _ZN2nn4bcat6detail17ShimLibraryGlobal25MountDeliveryCacheStorageEv +0000000000360d40 g DF .text 000000000000000c _ZNKSt3__112bad_weak_ptr4whatEv +0000000000228214 g DF .text 0000000000000044 _ZN2nn3hid6system23SetAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +0000000000946ee0 w DO .data 00000000000000d0 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account29IAccountServiceForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +000000000023a798 g DF .text 0000000000000028 _ZN2nn8irsensor6detail15IrSensorSession17DeactivateServiceEv +000000000019c9f4 g DF .text 00000000000000cc _ZN2nn5audio6server24AudioRendererManagerImpl37GetAudioDeviceServiceWithRevisionInfoENS_2sf3OutINS3_13SharedPointerINS0_6detail12IAudioDeviceEEEvEERNS_6applet20AppletResourceUserIdEj +000000000005f0bc w DF .text 0000000000000264 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000009cdac w DF .text 0000000000000004 _ZN2nn2sf4hipc6server24HipcServerSessionManager31DeallocatePointerTransferBufferEPNS2_17HipcServerSessionEPvm +000000000017a3b4 g DF .text 0000000000000014 _ZN2nn3ssl6detail10SslApiBaseC2Ev +00000000001d9d34 g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine13SetBoldWeightEi +000000000031536c g DF .text 0000000000000050 _ZN2nn4gpio20ClearInterruptStatusEPNS0_14GpioPadSessionE +00000000001a257c g DF .text 0000000000000008 _ZN2nn5audio6server12BehaviorInfo18SetUserLibRevisionEj +00000000003baa0c g DF .text 0000000000000008 conjf +000000000023299c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_SetNpadCommunicationModeENS_6applet20AppletResourceUserIdEl +00000000007e2d00 w DO .rodata 0000000000000154 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc23IParentalControlServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000003552f4 g DF .text 0000000000000044 _ZNKSt3__15ctypeIwE11do_scan_notEtPKwS3_ +000000000094e4e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001736e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_GetLanguageCodeENS0_3OutINS5_12LanguageCodeEvEE +00000000003baa14 g DF .text 0000000000000030 conjl +00000000007ba180 w DO .rodata 0000000000000023 _ZTSN2nn2sm6detail17IManagerInterfaceE +0000000000160924 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E35_nn_sf_sync_DisableFeaturesForResetEv +00000000001ec8d8 g DF .text 0000000000000250 soft_outline_graymap +000000000097bbd0 w DO .data 0000000000000038 _ZTINSt3__115time_get_bynameIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000009141c g DF .text 0000000000000004 nnosInitializeMultiWaitHolderForSystemEvent +00000000003e92d0 g DF .text 000000000000000c __set_tp +0000000000089e60 g DF .text 00000000000000f4 _ZN2nn3mem17StandardAllocator8AllocateEmm +00000000002c9e58 g DF .text 0000000000000178 _ZNK7android13GraphicBuffer7flattenERPvRmRPiS3_ +00000000002a6510 g DF .text 00000000000000a4 _ZN7android22IGraphicBufferConsumer10BufferItemC2Ev +0000000000052b9c g DF .text 00000000000000f8 _ZN2nn2fs35GetAndClearFileSystemProxyErrorInfoEPNS0_24FileSystemProxyErrorInfoE +00000000007bd800 w DO .rodata 00000000000001a6 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas21IAuthorizationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000000c77ec w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E24_nn_sf_sync_CreateWindowENS0_3OutINS0_13SharedPointerINS6_7IWindowEEEvEENS6_20WindowCreationOptionE +0000000000955950 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectE +0000000000366234 w DF .text 0000000000000114 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmmw +000000000031802c g DF .text 000000000000006c _ZN2nn3pcv14SetTemperatureEi +00000000007c59d0 w DO .rodata 0000000000000147 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15ISelfControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000018088 g DF .text 00000000000000f0 _ZN2nn5image6detail4jpeg19jpeg_read_scanlinesEPNS2_22jpeg_decompress_structEPPhi +00000000007f48e0 g DO .rodata 0000000000000c80 _ZN2nn3mii6detail16CommonColorTableE +000000000002f5c0 g DF .text 0000000000000048 _ZN2nn5image11ExifBuilderC1EPvm +000000000015f338 g DF .text 00000000000002f4 _ZN2nn4pctl6detail16ConvertNpnsErrorENS_6ResultE +000000000017b6e4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_SetOptionENS6_10OptionTypeEb +000000000017ae7c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6Object12AddReferenceEv +000000000029f028 g DF .text 0000000000000094 _ZN7android6Parcel10writeFloatEf +00000000002aa56c g DF .text 00000000000000ac _ZN7android10BufferItemC2Ev +00000000000922ec g DF .text 0000000000000038 _ZN2nn2os6detail10TlsManagerC1Ev +0000000000189040 g DF .text 0000000000000008 _ZN2nn5audio17GetMemoryPoolSizeEPKNS0_14MemoryPoolTypeE +00000000001cfff8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_DestroyManagedLayerEm +000000000015c194 g DF .text 000000000000000c _ZN2nn2oe30SetExpectedThemeColorForSystemENS0_14ThemeColorTypeE +000000000017bae8 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeEj +0000000000180c3c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +00000000001c01ec g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw15GetMustacheTypeEv +00000000003dc708 g DF .text 0000000000000010 __fwritable +00000000007b62c0 g DO .rodata 0000000000000030 _ZTSN2nn2fs6detail30FileSystemServiceObjectAdapterE +00000000000b39a8 g DF .text 00000000000000a0 _ZN2nn7account27GetUserRegistrationNotifierEPNS0_8NotifierE +00000000000cc434 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_PushInteractiveOutDataENS0_13SharedPointerINS6_8IStorageEEE +0000000000167ab4 g DF .text 0000000000000044 _ZN2nn8settings6system18SetAccountSettingsERKNS1_15AccountSettingsE +0000000000187554 g DF .text 000000000000004c _ZN2nn5audio17IsReverbRemovableEPKNS0_10ReverbTypeE +00000000002203ec w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_16NpadJoyDualStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +00000000002165f0 g DF .text 0000000000000078 _ZN2nn3hid5debug6detail29GetDestinationFirmwareVersionEPNS0_6system15FirmwareVersionEjNS_4util10BitFlagSetILi32ENS3_10DeviceTypeEEE +00000000001b41e0 g DF .text 0000000000000064 _ZN2nn7friends14ShowFriendListERKNS_7account3UidE +00000000002ab9d8 g DF .text 00000000000000e0 _ZN7android11BufferQueue21ProxyConsumerListener16onFrameAvailableERKNS_10BufferItemE +00000000000f64d4 g DF .text 00000000000001e0 silk_PLC_glue_frames +0000000000273464 g DF .text 00000000000000a0 NvRmStreamFlushFenceFd +000000000097d690 g DO .data 0000000000000028 _ZTVSt13runtime_error +000000000022c110 g DF .text 0000000000000044 _ZN2nn3hid18SetNpadJoyHoldTypeENS0_15NpadJoyHoldTypeE +00000000000427c0 g DF .text 0000000000000010 _ZN2nn4edid6detail9SerializeItEET_PKh +00000000001b7670 g DF .text 0000000000000020 _ZN2nn3mii6detail11GetHatColorENS0_13FavoriteColorENS0_9GammaTypeE +000000000025d194 g DF .text 0000000000000004 NvOsReaddir +000000000024e4b0 g DF .text 00000000000000ec _ZN2nn6capsrv28SaveScreenShotForApplicationEPNS0_21ApplicationAlbumEntryEPKvmRKNS0_19ScreenShotAttributeEj +0000000000177d50 g DF .text 00000000000000fc _ZN2nn3ssl7Context15ImportClientPkiEPmPKcS4_jj +00000000002b5b68 g DF .text 0000000000000c28 _ZN7android23BnGraphicBufferProducer10onTransactEjRKNS_6ParcelEPS1_j +00000000003dcda8 w DF .text 000000000000014c getwc_unlocked +00000000001229a4 g DF .text 0000000000000048 _ZN2nn7friends12UserPresence10InitializeERKNS_7account3UidE +0000000000951060 w DO .data 0000000000000018 _ZTIN2nn7friends6detail3ipc15IServiceCreatorE +0000000000230f58 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E45_nn_sf_sync_DiscardFirmwareInfoCacheForRevertEv +00000000000d6ee8 g DF .text 0000000000000088 _ZN2nn4bcat21DeliveryCacheProgress6UpdateEv +00000000002c9a18 g DF .text 0000000000000004 _ZN7android13GraphicBuffer26dumpAllocationsToSystemLogEv +0000000000356910 g DF .text 0000000000000010 _ZNKSt3__112ctype_bynameIwE10do_toupperEw +00000000000c4f3c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_OpenSystemAppletProxyENS0_3OutINS0_13SharedPointerINS6_18ISystemAppletProxyEEEvEEmONS0_12NativeHandleE +00000000001942e0 g DF .text 00000000000000e4 _ZN2nn5audio43CreateAudioRendererManagerForDebuggerByHipcEv +00000000001a8ee8 g DF .text 0000000000000008 _ZNK2nn5audio3dsp20CommandListProcessor13GetMixBuffersEv +0000000000364c18 w DF .text 0000000000000080 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE13find_first_ofEPKcmm +00000000003e790c g DF .text 0000000000000010 __nnmusl_sched_get_priority_min +00000000002176cc g DF .text 0000000000000044 _ZN2nn3hid6detail23InitializeInputDetectorEv +0000000000314800 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_8DebuggerEEEEES7_E17GetCmifBaseObjectEv +00000000000b5898 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeEj +00000000001bcd3c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw18SetFacelineWrinkleEi +0000000000958070 w DO .data 0000000000000018 _ZTIN2nn5audio6detail12IAudioDeviceE +00000000000b3ec8 g DF .text 0000000000000034 _ZN2nn7account21BeginUserRegistrationEPNS0_3UidE +00000000001a50e4 g DF .text 0000000000000008 _ZNK2nn5audio6server23SplitterDestinationData5GetIdEv +0000000000823660 w DO .rodata 0000000000000016 _ZTSNSt3__19__num_getIwEE +000000000009c0a8 g DF .text 000000000000003c _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase14InitializePortEiNS_3svc6HandleE +0000000000228b38 g DF .text 0000000000000044 _ZN2nn3hid18InitializeDebugPadEv +00000000001875a0 g DF .text 000000000000000c _ZN2nn5audio15IsReverbEnabledEPKNS0_10ReverbTypeE +00000000008251f4 g DO .rodata 0000000000000010 _ZTSSt11range_error +000000000039c488 g DF .text 00000000000000e0 _Unwind_RaiseException +00000000007e7360 w DO .rodata 000000000000002b _ZTSN2nn7timesrv6detail7service12ISystemClockE +00000000001a3044 g DF .text 0000000000000010 _ZN2nn5audio6server14MemoryPoolInfoC1ENS2_8LocationE +00000000001d3064 g DF .text 0000000000000080 _ZN2nn2vi27GetDisplayLogicalResolutionEPiS1_PKNS0_7DisplayE +000000000025bd1c g DF .text 000000000000000c NvMemoryProfilerBeginAlloc +00000000003ab0e8 g DF .text 0000000000000004 pthread_mutexattr_settype +0000000000041448 g DF .text 0000000000000054 _ZN2nn4edid24GetSourcePhysicalAddressEPtPKNS0_4EdidE +00000000007c0610 w DO .rodata 0000000000000162 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000000c61d0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_SetLcdBacklighOffEnabledEb +00000000001b61ec g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor15GetFacelineMakeEv +000000000013d280 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3nfp6detail5IUserEED2Ev +00000000001ca348 g DF .text 0000000000000030 _ZN2nn5swkbd6detail18InlineKeyboardImpl16SetFooterBgAlphaEf +000000000009b760 g DF .text 0000000000000030 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor6GetTagEPvm +000000000015d95c g DF .text 0000000000000050 _ZN2nn4pctl34RevertRestrictionTemporaryUnlockedEv +000000000017417c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_GetExternalSteadyClockSourceIdENS0_3OutINS_4util4UuidEvEE +0000000000181254 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E25_nn_sf_sync_SetTestOffsetENS_12TimeSpanTypeE +00000000000b35f0 g DF .text 00000000000001a0 _ZN2nn7account38IntroduceExternalNetworkServiceAccountEPNS0_33ExternalNetworkServiceAccountInfoEPvm +0000000000178d90 g DF .text 0000000000000180 _ZN2nn3ssl10Connection11DoHandshakeEPjS2_Pcj +00000000002131cc g DF .text 0000000000000010 FSS_free +00000000003c57bc g DF .text 0000000000000098 strfmon +00000000003dddb8 g DF .text 0000000000000254 getdelim +00000000003a1ffc g DF .text 0000000000000088 __floatsisf +000000000009acb8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain12AddReferenceEv +000000000011dae0 g DF .text 0000000000000124 _ZN2nn7friends14AddPlayHistoryERKNS_7account3UidERKNS0_26PlayHistoryRegistrationKeyERKNS0_15InAppScreenNameESA_ +0000000000325a60 g DF .text 0000000000000134 _ZNKSt3__111__libcpp_db15__decrementableEPKv +000000000097a5e8 w DO .data 0000000000000040 _ZTVNSt3__18messagesIcEE +0000000000091364 g DF .text 0000000000000004 nnosInitializeTimerEvent +0000000000180808 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E41_nn_sf_sync_GetStandardNetworkSystemClockENS0_3OutINS0_13SharedPointerINS7_12ISystemClockEEEvEE +000000000019c8d4 g DF .text 0000000000000050 _ZN2nn5audio6server24AudioRendererManagerImpl16ReleaseSessionIdEi +00000000003468d4 w DF .text 000000000000032c _ZNKSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE3putES4_RNS_8ios_baseEwPK2tmPKwSC_ +00000000000c5694 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE12GetProxyInfoEv +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__17codecvtIDsc11__mbstate_tED1Ev +00000000003cf894 g DF .text 00000000000001a8 __cosl +0000000000297e84 g DF .text 0000000000000008 _ZThn8_N7android8BnMemory10onTransactEjRKNS_6ParcelEPS1_j +000000000011a5b0 g DF .text 000000000000005c _ZN2nn3err9ShowErrorENS0_9ErrorCodeE +00000000001a3808 g DF .text 000000000000000c _ZN2nn5audio6server11AddressInfoC2ENS0_7CpuAddrEm +00000000000c70e8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000002203f4 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_16NpadJoyLeftStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +00000000001b7590 g DF .text 0000000000000018 _ZN2nn3mii6detail14GetEyeRedColorENS0_9GammaTypeE +00000000000a2174 g DF .text 0000000000000064 _ZN2nn6socket6detail10InitializeEPvmmi +00000000001cc7c4 g DF .text 00000000000001a8 _ZN2nn2vi17InitializeMinimumEv +00000000003ddd98 g DF .text 0000000000000020 getc_unlocked +00000000000909b8 g DF .text 000000000000018c _ZN2nn2os15MapSharedMemoryEPNS0_16SharedMemoryTypeENS0_16MemoryPermissionE +0000000000239264 g DF .text 0000000000000004 _ZN2nn8irsensor6detail20InternalErrorHandlerD2Ev +00000000003160b0 g DF .text 0000000000000004 nngpioGetInterruptStatus +000000000008e424 g DF .text 0000000000000008 _ZN2nn2os18WaitInterruptEventEPNS0_18InterruptEventTypeE +0000000000147a0c g DF .text 00000000000005c4 _ZN2nn3ngc6detail3Bp_5BuildEm +0000000000272c48 g DF .text 00000000000001c8 NvRmStreamPushWaits +00000000002c878c g DF .text 0000000000000008 sync_fence_info +0000000000332764 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPKv +00000000007b6200 w DO .rodata 0000000000000021 _ZTSN2nn5fssrv2sf16IProgramRegistryE +0000000000947828 w DO .data 0000000000000100 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000104158 g DF .text 0000000000000130 silk_k2a_Q16 +0000000000214064 g DF .text 0000000000000070 _ZN2nn3hid6detail23SetAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +00000000002242ac w DF .text 000000000000017c _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm3EEEEEiPT_i +0000000000160d60 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_PostEnableAllFeaturesENS0_3OutIbvEE +00000000007f0580 g DO .rodata 000000000000002d _ZTSN2nn5audio6server24AudioRendererManagerImplE +000000000024cb9c g DF .text 000000000000000c _ZN2nn5album8FinalizeEv +000000000097ad90 g DO .data 0000000000000038 _ZTINSt3__17codecvtIcc11__mbstate_tEE +00000000003abff4 g DF .text 0000000000000004 chdir +000000000007459c g DF .text 00000000000000c4 nnmem_nlib_skipws_generic +0000000000089ca4 g DF .text 0000000000000020 _ZN2nn3mem17StandardAllocatorC1Ev +00000000001bcd78 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw16SetEyebrowAspectEi +0000000000194e88 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi34ELm0EEENSB_ILi1ELi34ELm0EEENSB_ILi2ELi33ELm0EEEEEELm0ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESL_SL_j +000000000036d810 w DF .text 0000000000000010 _ZNSt3__117__call_once_proxyINS_5tupleIJRPFvvEEEEEEvPv +000000000036e0cc g DF .text 0000000000000028 _ZSt14set_unexpectedPFvvE +00000000007b0f90 g DO .rodata 0000000000000016 _ZTSN2nn2fs11FileStorageE +000000000039d924 g DF .text 000000000000007c __floatsitf +0000000000954fc0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectE +00000000003ac07c w DF .text 0000000000000004 lseek64 +00000000001f05d0 g DF .text 0000000000000094 vardiv_64 +0000000000396aa0 g DF .text 0000000000000004 _ZNSt9type_infoD2Ev +00000000000cbaa0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_PopFloatingApplicationForDevelopmentENS0_3OutINS0_13SharedPointerINS6_20IApplicationAccessorEEEvEE +00000000001b61b0 g DF .text 000000000000000c _ZNK2nn3mii21ParamCharInfoAccessor11GetCreateIdEv +00000000001cabf0 g DF .text 0000000000000024 _ZN2nn5swkbd6detail18InlineKeyboardImpl19SetKeytopAsFloatingEb +0000000000358d5c g DF .text 0000000000000068 _ZNKSt3__114__codecvt_utf8IDiE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_ +000000000009a1e0 g DF .text 0000000000000094 _ZN2nn2sf4cmif6server23CmifServerDomainManager14EntryAllocatorC2EPNSt3__115aligned_storageILm48ELm8EE4typeEi +000000000022d0dc g DF .text 0000000000000054 _ZN2nn3hid21IsSixAxisSensorAtRestERKNS0_19SixAxisSensorHandleE +000000000094d8a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003295ac w DF .text 0000000000000020 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5sgetcEv +000000000015e978 g DF .text 0000000000000114 _ZN2nn4pctl36GetPlayTimerEventToRequestSuspensionEv +00000000001e27e8 g DF .text 0000000000000038 make_outline +000000000039f230 g DF .text 0000000000000088 __clzsi2 +00000000007d8b20 w DO .rodata 0000000000000114 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000001a2cd8 g DF .text 0000000000000070 _ZNK2nn5audio6server10ReverbInfo13GetWorkBufferENS1_14EffectInfoBase5IndexE +0000000000070404 g DF .text 0000000000000010 _ZN2nn4lmem6detail17SetExpHeapGroupIdEPNS1_8HeapHeadEt +000000000013d494 g DF .text 0000000000000024 _ZN2nn3nfp6client16GetUserInterfaceEv +000000000080c290 w DO .rodata 000000000000001b _ZTSN2nn3hid15IAppletResourceE +0000000000188ee0 g DF .text 0000000000000034 _ZN2nn5audio15AudioBufferListINS0_25FinalOutputRecorderBufferEE9push_backEPS2_ +000000000094ed20 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000009536e0 w DO .data 0000000000000018 _ZTIN2nn4nifm6detail15IGeneralServiceE +00000000007f6240 g DO .rodata 0000000000000018 _ZN2nn3mii6detail16PantsNormalColorE +000000000019bf3c g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem12GetSessionIdEv +000000000024ccd8 g DF .text 0000000000000058 _ZN2nn5album12LibraryState20EnsureAlbumAvailableEv +0000000000074858 g DF .text 0000000000000188 nnmem_nlib_strchr +00000000001b9e08 g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw13SetMouthColorEi +00000000001bcdb4 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw16SetMustacheScaleEi +0000000000959038 g DO .data 0000000000000028 _ZTVN2nn5audio6server9DelayInfoE +00000000001e3588 g DF .text 00000000000000e0 fs__free +00000000003544a8 g DF .text 000000000000015c _ZNSt3__114collate_bynameIcEC2EPKcm +0000000000956e00 g DO .data 00000000000000dc _ZN2nn5audio8__ErTapsE +000000000008f41c g DF .text 0000000000000080 _ZN2nn2os12TryLockMutexEPNS0_9MutexTypeE +00000000001199f8 w DF .text 0000000000000194 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENSE_ILi1ELi5ELm0EEEEEELm0ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_NSM_24BufferClientArgumentTypeESP_j +0000000000955b10 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +00000000001ce898 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetDisplayContrastRatioENS0_3OutIfvEEm +0000000000205d2c g DF .text 0000000000000140 make_outline_ttf +0000000000286034 g DF .text 000000000000002c nvgr_get_extsurfaces +000000000025b4d0 g DF .text 0000000000000044 hdcp_init_asyncevents +00000000003aac54 g DF .text 00000000000000e4 __stdio_read +00000000001c5c00 g DF .text 0000000000000024 _ZN2nn3mii15PrivateDatabase4MoveEiRKNS0_8CreateIdE +000000000019d120 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E33_nn_sf_sync_GetActiveChannelCountENS0_3OutIivEE +0000000000156df0 g DF .text 000000000000000c _ZN2nn4nifm7RequestC1ERKNS0_17RequestParametersE +000000000097d650 g DO .data 0000000000000018 _ZTISt13bad_exception +00000000000baea0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE28_nn_sf_sync_LoadIdTokenCacheENS0_3OutIjvEERKNS0_9OutBufferE +0000000000357518 g DF .text 0000000000000008 _ZNKSt3__17codecvtIwc11__mbstate_tE16do_always_noconvEv +00000000003d05d8 g DF .text 0000000000000968 __rem_pio2_large +0000000000061c58 g DF .text 0000000000000148 _ZN2nn2fs20GetGameCardImageHashEPvmj +00000000007d8a10 w DO .rodata 000000000000010d _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000017f3e8 g DF .text 000000000000006c _ZN2nn4time26StandardNetworkSystemClock3nowEv +00000000002325c8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E30_nn_sf_sync_SwapNpadAssignmentENS_6applet20AppletResourceUserIdEjj +0000000000953480 w DO .data 0000000000000018 _ZTIN2nn4nifm6detail14IStaticServiceE +000000000004b400 g DF .text 000000000000001c _ZN2nn2fs17FileHandleStorage5FlushEv +0000000000174554 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E19_nn_sf_sync_GetEdidENS0_3OutINS5_6system4EdidEvEE +000000000005fb4c g DF .text 0000000000000048 _ZN2nn2fs6detail30FileSystemServiceObjectAdapterD0Ev +00000000001b4734 g DF .text 0000000000000018 _ZN2nn2la29InvokeLibraryAppletCreateHookERKNS0_26LibraryAppletCreateHookArgE +0000000000804580 w DO .rodata 000000000000005c _ZTSN2nn3hid6detail8RingLifoINS0_3tmp23SixAxisSensorCountStateELi32ENS1_13AtomicStorageIS4_EEEE +00000000000c91c0 w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_20InObjectArgumentInfoILi0ELi0EEEEEELm4ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_26InObjectClientArgumentTypeEj +00000000000c7924 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000cc710 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_UnpopExtraStorageENS0_13SharedPointerINS6_8IStorageEEE +00000000002c5f4c g DF .text 0000000000000020 _ZNK7android21SurfaceComposerClient20clearLayerFrameStatsERKNS_2spINS_7IBinderEEE +00000000001b1550 g DF .text 0000000000000020 _ZN2nn2ec37ShowShopApplicationInformationForMenuENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdE +0000000000177918 g DF .text 0000000000000008 _ZN2nn3ssl7ContextC1Ev +000000000026f398 g DF .text 0000000000000030 NvRmModuleGetCapabilities +00000000000ea2f0 g DF .text 00000000000000b8 opus_ifft_c +00000000001d01fc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_SetDisplayPowerStateEmj +0000000000174370 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E47_nn_sf_sync_GetAutomaticApplicationDownloadFlagENS0_3OutIbvEE +000000000017ee38 g DF .text 0000000000000024 _ZNK2nn4time13ClockSnapshot36GetStandardNetworkSystemClockContextEv +000000000008201c g DF .text 0000000000000010 nnmem_nlib_fd_native_handle +000000000011bf6c g DF .text 00000000000000a4 _ZN2nn3err6detail28MakeErrorInfoMessageFilePathEPcmNS0_9ErrorCodeENS_8settings12LanguageCodeENS1_11MessageKindE +00000000000b556c w DF .text 00000000000001dc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm56ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi26ELm128EEEEEELm0ELm56ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm56ELm8EEENS2_24BufferClientArgumentTypeEj +00000000001da6bc g DF .text 000000000000001c IDIV +000000000025e7e0 g DF .text 0000000000000118 NvUStrtoull +000000000016ad1c g DF .text 0000000000000050 _ZN2nn8settings6system32GetWirelessCertificationFileSizeEv +0000000000958d58 w DO .data 0000000000000090 _ZTVN2nn5audio6detail12IAudioDeviceE +00000000001bf820 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetEyeAspectEv +00000000009594a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +0000000000343c14 w DF .text 000000000000005c _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIwEE +00000000007c31c0 w DO .rodata 000000000000017d _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEEE +000000000097b9f0 w DO .data 0000000000000028 _ZTINSt3__19__num_putIcEE +000000000015ef7c g DF .text 0000000000000010 _ZNK2nn4pctl18PairingAccountInfo15IsInstanceValidEv +000000000006f2cc g DF .text 000000000000004c _ZN2nn4lmem30GetExpHeapUseMarginOfAlignmentEPNS0_6detail8HeapHeadE +000000000011aecc g DF .text 0000000000000004 _ZN2nn3err11ExecuteJumpENS0_26ErrorViewerJumpDestinationE +000000000019ce50 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E41_nn_sf_sync_ExecuteAudioRendererRenderingEv +00000000003b91d0 w DF .text 0000000000000084 __strtok_r +00000000001d6f94 g DF .text 0000000000000010 _ZN2nn2vi6buffer11BufferQueueC2Ev +000000000007d84c g DF .text 0000000000000100 nnmem_nlib_strto_int64_fallback +00000000007be950 w DO .rodata 0000000000000163 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_EE +0000000000156e68 g DF .text 0000000000000004 _ZN2nn4nifm17NetworkConnectionD2Ev +0000000000219f0c g DF .text 0000000000000208 _ZN2nn3hid6detail14GetMouseStatesEPiPNS0_10MouseStateEi +00000000002324d8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E42_nn_sf_sync_SetNpadJoyAssignmentModeSingleENS_6applet20AppletResourceUserIdEjl +00000000002346d8 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail15HidSystemServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000016a69c g DF .text 0000000000000044 _ZN2nn8settings6system42GetConsoleSixAxisSensorAngularVelocityGainEPNS1_39ConsoleSixAxisSensorAngularVelocityGainE +00000000001493b4 g DF .text 0000000000000094 _ZNK2nn3ngc6detail2Bp10FirstChildEj +00000000001c56b8 g DF .text 0000000000000020 _ZN2nn3mii8Database8FinalizeEv +0000000000362aa0 w DF .text 0000000000000088 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEmc +0000000000018290 g DF .text 00000000000000f4 _ZN2nn5image6detail4jpeg17jpeg_start_outputEPNS2_22jpeg_decompress_structEi +0000000000096dd0 w DF .text 0000000000000084 _ZN2nn2os6detail29AslrSpaceManagerImplByHorizon22GetAslrSpaceEndAddressEv +000000000017eb64 g DF .text 00000000000000b0 _ZN2nn4time38CalibrateSystemClockWithInternalOffsetEv +00000000001b910c g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw8GetNoseYEv +00000000001816c4 w DF .text 0000000000000040 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E23_nn_sf_sync_ToPosixTimeENS0_3OutIivEERKNS0_8OutArrayINSL_9PosixTimeEEENSL_12CalendarTimeERKNSL_12TimeZoneRuleE +000000000039f210 g DF .text 0000000000000020 __clzdi2 +000000000005c674 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSG_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENSQ_ILm8ELm8EvEEj +0000000000286568 g DF .text 0000000000000008 nvgr_alloc_ext +000000000082401f g DO .rodata 0000000000000001 _ZNSt3__111try_to_lockE +00000000000c2c64 g DF .text 00000000000004c4 _ZN2nn2am26InitializeCommonInterfacesEPNS0_7service21IStackableAppletProxyE +0000000000313f34 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000003c3f0 g DF .text 0000000000000034 _ZN2nn4util12CompressZlibEPmPvmPKvmS2_m +00000000001657ac g DF .text 00000000000000a0 _ZN2nn5prepo16SystemPlayReportC1EPKc +0000000000230df4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E49_nn_sf_sync_GetShiftAccelerometerCalibrationValueENS0_3OutIfvEESL_NS5_19SixAxisSensorHandleENS_6applet20AppletResourceUserIdE +0000000000221294 g DF .text 00000000000000b4 _ZN2nn3hid6detail19FinalizeSleepButtonEv +0000000000283198 g DF .text 00000000000000b8 NvDdkVicConfigureBlending +0000000000979ce8 w DO .data 0000000000000068 _ZTVNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000007e1b4 g DF .text 00000000000000dc nnmem_nlib_strto_uint32 +00000000001c3438 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetMouthScaleEi +0000000000050824 g DF .text 00000000000000e8 _ZN2nn2fs17GetTotalSpaceSizeEPlPKc +00000000000bfd28 g DF .text 0000000000000018 _ZN2nn7account28NetworkServiceAccountManagerC1Ev +0000000000a20724 g DO .bss 0000000000000014 _ZN2nn2la13g_CommonParamE +0000000000a258b0 g DO .bss 0000000000000020 _ZN2nn2vi13ObjectManager13m_DisplayLockE +00000000001b8e38 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetEyeAspectEv +00000000000d0bdc g DF .text 000000000000008c _ZN2nn3apm24ClearLastThrottlingStateEv +00000000003e6ce4 g DF .text 0000000000000008 __nnmusl_ConsoleRead +0000000000347150 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb1EE13do_neg_formatEv +0000000000823e00 w DO .rodata 0000000000000019 _ZTSNSt3__111__money_putIwEE +00000000003e0034 g DF .text 000000000000004c __towrite +00000000000b48c8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE28_nn_sf_sync_GetUserExistenceENS0_3OutIbvEERKNS5_3UidE +000000000016d82c g DF .text 000000000000001c _ZN2nn8settings6detail31SetApplicationOwnKeyboardLayoutENS0_14KeyboardLayoutE +00000000000697fc g DF .text 00000000000000c4 _ZN2nn2fs23CorruptSaveDataForDebugENS0_15SaveDataSpaceIdEm +00000000000950c4 g DF .text 000000000000001c _ZN2nn2os6detail18FiberImplByHorizon13MapAliasStackEPKvS4_m +0000000000165444 g DF .text 000000000000000c _ZN2nn5prepo10PlayReport9SetBufferEPvm +00000000002204f4 g DF .text 0000000000000008 _ZNK2nn3hid6detail18SharedMemoryHolder8IsMappedEv +000000000024bdd4 g DF .text 0000000000000004 _ZNK2nn3kpr15KeyCodeComposer19GetCompositionCountEv +00000000003db9e8 g DF .text 0000000000000038 __hdestroy_r +00000000001de144 g DF .text 000000000000002c FS_set_outline_width +000000000024e59c w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm2EE27InitializeShimLibraryHolderINS_6capsrv2sf29IScreenShotApplicationServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +00000000002b3bb4 g DF .text 0000000000000088 _ZN7android12ConsumerBase26setBuffersReleasedListenerERKNS_2wpINS0_23BuffersReleasedListenerEEE +0000000000317b9c g DF .text 000000000000007c _ZN2nn3pcv8GetStateEPNS0_11ModuleStateENS0_6ModuleE +000000000005ff30 g DF .text 00000000000000b4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter27DoCleanDirectoryRecursivelyEPKc +000000000009144c g DF .text 0000000000000004 nnosWaitInterruptEvent +0000000000361bb8 g DF .text 0000000000000004 _ZNSt12experimental19bad_optional_accessD1Ev +0000000000138ed0 g DF .text 0000000000000054 _ZN2nn3nfc6client20DestroyUserInterfaceEv +00000000001a5084 g DF .text 0000000000000010 _ZNK2nn5audio6server11SinkContext7GetInfoEi +00000000002868bc g DF .text 000000000000004c NvRmGpuDeviceAllocateMemory +000000000036d808 g DF .text 0000000000000008 _ZNSt3__115__libcpp_tl_setEN2nn2os7TlsSlotEPv +000000000022ee50 g DF .text 0000000000000038 _ZN2nn3hid14VibrationMixerC1Ev +0000000000a80d20 w DO .bss 0000000000000010 _ZNSt3__18messagesIcE2idE +000000000022e464 g DF .text 0000000000000020 _ZN2nn3hid6system24GetUniquePadSerialNumberEPNS1_21UniquePadSerialNumberENS1_11UniquePadIdE +0000000000313f94 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000007bc5a0 w DO .rodata 000000000000015b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000022ada0 g DF .text 0000000000000044 _ZN2nn3hid5debug22SetMouseAutoPilotStateERKNS1_19MouseAutoPilotStateE +000000000023fa60 w DF .text 00000000000004d0 _ZN22nerd_gillette_internal5otete7jaimev29SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_22FullFrameShapeInPacketERT_ +00000000001efc84 g DF .text 0000000000000354 pixelbold_embedded_graymap +00000000003c3580 g DF .text 0000000000000018 clearenv +00000000007d95e0 w DO .rodata 0000000000000012 _ZTSN2nn3tma7ISocketE +000000000008ac54 g DF .text 000000000000007c _ZN2nn3mem19NumberLineAllocator11RemoveRangeEii +00000000007f1260 w DO .rodata 00000000000000ac _ZTSN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_EE +00000000003de764 g DF .text 0000000000000078 swscanf +00000000001bc7fc g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw15GetFacelineMakeEv +00000000000913ac g DF .text 0000000000000004 nnosSignalConditionVariable +000000000019bf8c g DF .text 0000000000000044 _ZN2nn5audio6server17AudioRenderSystem16QuerySystemEventEPj +00000000003dc750 w DF .text 0000000000000018 fpurge +00000000000cd064 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000956db0 g DO .data 0000000000000050 _ZN2nn5audio17__AllPassDelayLenE +0000000000319a28 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +000000000016f580 g DF .text 0000000000000070 _ZN2nn8settings6detail42GetConsoleSixAxisSensorAngularVelocityBiasEPNS0_6system39ConsoleSixAxisSensorAngularVelocityBiasE +000000000009061c g DF .text 0000000000000020 _ZN2nn2os16GetThreadContextEPNS0_24ThreadContextInfoAarch64EPKNS0_10ThreadTypeE +00000000003cc110 g DF .text 0000000000000008 llroundf +0000000000001d3c g DF .text 0000000000000054 _ZNK2nn6crypto6detail6BigNum7GetSizeEv +000000000023d6c8 g DF .text 0000000000000048 _ZN22nerd_gillette_internal5otete7jaimev118DecodeHandCountROKERmPKhmPm +00000000001256f4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000152b1c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E36_nn_sf_sync_RegisterSocketDescriptorEi +0000000000958610 w DO .data 0000000000000018 _ZTIN2nn5audio6detail20IFinalOutputRecorderE +000000000019b730 g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem21GetRenderingTimeLimitEv +000000000023aed4 g DF .text 000000000000005c _ZN2nn8irsensor15RunHandAnalysisERKNS0_14IrCameraHandleERKNS0_18HandAnalysisConfigE +00000000003cc118 g DF .text 0000000000000018 llroundl +00000000000a5978 g DF .text 00000000000000e4 _ZN2nn6socket6detail25CreateClientMonitorByHipcEPKc +0000000000122d68 g DF .text 0000000000000008 _ZNK2nn7friends14FriendPresence30IsSamePresenceGroupApplicationEv +0000000000262db8 g DF .text 000000000000003c NvOsHeapAllocatorFree +0000000000008218 w DF .text 0000000000000008 _ZN2nn6crypto6detail11XtsModeImplINS1_19XtsModeAes128HelperEEC1Ev +000000000011ba90 g DF .text 0000000000000008 _ZNK2nn3err14SystemErrorArg12GetErrorCodeEv +0000000000074660 w DF .text 0000000000000134 nnmem_nlib_strnlen +00000000002562bc g DF .text 00000000000000a8 _ZN2nn3web14ShowWebPageArgC1EPKc +0000000000286c94 g DF .text 000000000000001c NvRmGpuChannelKickoffPbWithAttr +00000000000a4a00 g DF .text 0000000000000210 _ZN2nn6socket6detail6SelectEiP6fd_setS3_S3_P7timeval +00000000000b87d8 w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi26ELm591EEENSI_ILi1ELi6ELm0EEEEEELm0ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeESU_j +000000000035fdf0 w DF .text 000000000000010c _ZNSt3__125__num_get_signed_integralIxEET_PKcS3_Rji +00000000009479c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000cfe8c g DF .text 00000000000000d4 _ZN2nn3apm10InitializeEv +00000000001b32ec g DF .text 0000000000000008 _ZNK2nn2ec6detail19ShopPageReturnValue17GetShopExitReasonEv +000000000029e980 g DF .text 0000000000000008 _ZN7android6Parcel8setErrorEi +000000000014abf8 g DF .text 0000000000000070 _ZN2nn3ngc6detail11InputStream13GetWorkBufferEv +000000000095a7e0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000979fe8 w DO .data 00000000000000e0 _ZTVNSt3__115time_get_bynameIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000172ed0 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectESI_E6Object7ReleaseEv +000000000017e5f8 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_7timesrv6detail7service14IStaticServiceEE19FunctionForBoolTypeEv +000000000012fe30 w DF .text 00000000000002b4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_21OutHandleArgumentInfoILi0ELi1EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSF_ILi1ELi33ELm0EEENS7_20InHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSK_ILm4ELm4ELl0EEEEEELm16ELm4ELb0EEESN_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSS_27OutHandleClientArgumentTypeENSS_24BufferClientArgumentTypeESW_NSS_26InHandleClientArgumentTypeENSS_23InRawClientArgumentTypeILm8ELm8EvEENSY_ILm4ELm4EvEEj +00000000001d5040 g DF .text 0000000000000010 _ZN2nn2vi13ObjectManager25GetValidDisplayHolderListEv +000000000036bf98 g DF .text 0000000000000010 _ZTv0_n24_NSt3__110ostrstreamD1Ev +000000000004a144 w DF .text 000000000000027c _ZN2nn2fs26KeyValueRomStorageTemplateINS0_24HierarchicalRomFileTable11RomEntryKeyENS2_17DirectoryRomEntryELi768EE12FindInternalEPjS6_PNS5_14StorageElementERKS3_jPKvm +00000000001d04dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_GetSharedLayerDetachReadyEventENS0_3OutINS0_12NativeHandleEvEENS_2vi7fbshare17SharedLayerHandleE +000000000080b5a0 g DO .rodata 000000000000001b _ZTSN2nn3hid15VibrationPlayerE +00000000002419f4 g DF .text 000000000000001c _ZN22nerd_gillette_internal5otete12Downscale2x2ERKNS_15StaticImageViewIhEERKNS1_IKhEE +00000000002d0d20 g DF .text 0000000000000008 androidGetThreadId +0000000000341c9c w DF .text 0000000000000060 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIcEE +00000000000d684c g DF .text 00000000000000b4 _ZN2nn4bcat17DeliveryCacheFile4OpenERKNS0_13DirectoryNameERKNS0_8FileNameE +000000000025083c g DF .text 0000000000000008 _ZN2nn3ldn18MakeNetworkAddressENS0_11Ipv4AddressENS0_10SubnetMaskE +000000000005203c g DF .text 000000000000015c _ZN2nn2fs6detail23QueryMountDataCacheSizeEPmNS_3ncm6DataIdENS3_9StorageIdE +00000000001a3188 g DF .text 000000000000004c _ZNK2nn5audio6server10PoolMapper14FindMemoryPoolEPNS1_14MemoryPoolInfoEiNS0_7CpuAddrEm +0000000000031518 g DF .text 00000000000001c8 nnutilZlib_deflateSetDictionary +00000000000d0de8 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object7ReleaseEv +00000000001d7974 g DF .text 000000000000003c _ZN2nn6fontll6detail27AddXValuesToOtfKerningTableEPiPNS0_15OtfKerningTableEtttt +000000000097bf68 w DO .data 0000000000000010 _ZTINSt3__111__money_putIcEE +00000000003e26e0 g DF .text 000000000000004c strsep +00000000000c6274 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E49_nn_sf_sync_GetHdcpAuthenticationStateChangeEventENS0_3OutINS0_12NativeHandleEvEE +00000000003c3b04 g DF .text 000000000000005c __strerror_l +0000000000187aac g DF .text 000000000000001c _ZN2nn5audio16GetReverbOutGainEPKNS0_10ReverbTypeE +00000000003c5b04 g DF .text 0000000000000030 __lctrans_cur +000000000015432c w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15INetworkProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +000000000019d35c g DF .text 00000000000001f0 _ZN2nn5audio6server13CommandBuffer33GeneratePcmInt16DataSourceCommandEPKNS1_9VoiceInfoEPNS0_10VoiceStateEiij +00000000000915f4 g DF .text 0000000000000050 _ZN2nn2os6detail24DestroyInterProcessEventEPNS1_21InterProcessEventTypeE +00000000002cb2bc g DF .text 0000000000000088 _ZN7android6RegionC2Ev +0000000000825230 g DO .rodata 0000000000000013 _ZTSSt14overflow_error +00000000000905fc g DF .text 0000000000000018 _ZN2nn2os12ResumeThreadEPNS0_10ThreadTypeE +00000000000d3708 g DF .text 0000000000000068 _ZN2nn6applet22CloseLibraryAppletSelfENS0_23LibraryAppletSelfHandleE +00000000003e78e0 g DF .text 0000000000000018 __nnmusl_finalize_locks +000000000017045c g DF .text 0000000000000070 _ZN2nn8settings6detail7GetEdidEPNS0_6system4EdidE +000000000017b5fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E30_nn_sf_sync_GetVerifyCertErrorEv +00000000007f0a00 w DO .rodata 00000000000000a7 _ZTSN2nn2sf4impl6detail16ImplTemplateBaseINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_EE +000000000011c6ac g DF .text 0000000000000238 _ZN2nn7friends6detail16PresenceAccessor11AddKeyValueEPKcS4_Pcm +0000000000220448 w DF .text 0000000000000004 _ZN2nn3hid6detail17InputDetectorLifoD0Ev +0000000000313560 g DF .text 0000000000000078 _ZN2nn3fgm7Request3SetEjj +0000000000091488 g DF .text 0000000000000004 nnosTimedReceiveMessageQueue +00000000001aa488 g DF .text 0000000000000004 _ZN2nn5audio3dsp7MailBox5CloseEv +000000000027dbf8 g DF .text 0000000000000268 NvColorSpaceFromString +0000000000318214 g DF .text 0000000000000094 _ZN2nn3pcv19GetModuleStateTableEPNS0_11ModuleStateEPii +00000000000b4608 w DF .text 0000000000000108 _ZN2nn7account6detail12ObjectHolder11AcquireImplINS0_29IAccountServiceForApplicationEEENS_6ResultEPPT_PKc +000000000022e6c8 g DF .text 0000000000000054 _ZN2nn3hid5debug21UpdateControllerColorENS_4util8Unorm8x4ES3_RNS0_6system11UniquePadIdE +00000000003966ac g DF .text 0000000000000054 _ZNSt16invalid_argumentD2Ev +000000000014b5f4 w DF .text 0000000000000004 _ZN2nn3ngc6detail11InputStreamD0Ev +000000000007e290 g DF .text 00000000000000d0 nnmem_nlib_strto_uint64 +0000000000125c34 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_RequestSyncFriendListERKNS_7account3UidE +000000000019bf4c g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem26GetCommandBufferWorkBufferEv +000000000032c4e8 w DF .text 0000000000000088 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEEC2EPNS_15basic_streambufIwS2_EE +00000000003e7ad4 g DF .text 000000000000003c __nnmusl_pthread_condattr_setpshared +00000000000f3320 g DF .text 0000000000000cfc silk_NSQ_c +0000000000045264 g DF .text 0000000000000004 _ZN2nn4diag14OnResultHandleENS_6ResultERKNS0_10SourceInfoE +0000000000156b58 g DF .text 0000000000000088 _ZN2nn4nifm25ConfirmSystemAvailabilityEv +00000000002b4eb8 g DF .text 0000000000000038 _ZN7android19IGraphicBufferAllocD0Ev +0000000000179904 g DF .text 0000000000000020 _ZN2nn3ssl10Connection15GetConnectionIdEPm +0000000000804bd0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi31EE4MaskE +000000000017d4d0 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_7timesrv6detail7service12ISteadyClockEED2Ev +0000000000233dbc w DF .text 00000000000000b8 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_3hid6detail9HidServerEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSE_26IActiveVibrationDeviceListEEEvi +000000000003afb4 g DF .text 0000000000000330 _ZN2nn4util6Base6414ToBase64StringEPcmPKvmNS1_4ModeE +00000000000afdb8 g DF .text 000000000000013c _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferI8addrinfoEElRT_PKhm +000000000018da94 g DF .text 0000000000000078 _ZN2nn5audio11AllPassTickEPNS0_11FXDelayLineEi +0000000000361b44 w DF .text 0000000000000004 _ZdaPvSt11align_val_tRKSt9nothrow_t +0000000000160b80 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_GetAccountStateENS0_3OutIivEERKNS6_22PairingAccountInfoBaseE +000000000005c52c w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEEj +00000000007bfe50 w DO .rodata 000000000000015c _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000001986ac g DF .text 0000000000000008 _ZN2nn5audio15GetAudioOutNameEPKNS0_8AudioOutE +00000000001d05e4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E59_nn_sf_sync_PresentDetachedSharedFrameBufferToLowLevelLayerENS_2vi7fbshare18SharedBufferHandleEml +0000000000326200 g DF .text 0000000000000008 _ZNSt13exception_ptrD2Ev +0000000000155118 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_4nifm6detail15IGeneralServiceEED2Ev +00000000002c5628 g DF .text 0000000000000080 _ZN7android21SurfaceComposerClientD1Ev +0000000000237710 g DF .text 00000000000000bc _ZN2nn8irsensor6detail25RunImageTransferProcessorERKNS0_14IrCameraHandleERKNS0_28ImageTransferProcessorConfigEPvm +00000000000d6e54 g DF .text 0000000000000050 _ZN2nn4bcat21DeliveryCacheProgressD2Ev +00000000000c96bc w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm1ELl0EEEEEELm0ELm4ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm1EEEj +00000000000ceb48 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_SetGamePlayRecordingStateEi +000000000095a618 w DO .data 0000000000000058 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +0000000000220b24 g DF .text 00000000000003fc _ZN2nn3hid6detail22GetSixAxisSensorStatesEPiPNS0_18SixAxisSensorStateEiRKNS0_11BasicXpadIdE +000000000008e3e0 g DF .text 0000000000000030 _ZN2nn2os24InitializeInterruptEventEPNS0_18InterruptEventTypeEiNS0_14EventClearModeE +000000000018da84 g DF .text 0000000000000008 _ZN2nn5audio15AllPassGetDelayEPNS0_11FXDelayLineE +00000000003c78dc g DF .text 0000000000000108 cbrt +0000000000122f48 g DF .text 000000000000013c _ZNK2nn7friends12ProfileExtra18GetProfileImageUrlEPNS0_3UrlENS0_9ImageSizeE +00000000001c5cc4 g DF .text 0000000000000034 _ZN2nn3mii15PrivateDatabase6ImportEPKvm +0000000000238f00 g DF .text 0000000000000040 _ZNK2nn8irsensor6detail13StatusManager15GetPointingLifoERKNS0_14IrCameraHandleE +00000000000c1290 g DF .text 000000000000001c _ZN2nn7account42NintendoAccountAuthorizationRequestContextC1EPNS0_3nas21IAuthorizationRequestERKNS0_3UidE +00000000000d6204 g DF .text 0000000000000174 _ZN2nn4bcat22DeliveryCacheDirectory5CloseEv +00000000001c3538 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetReserved0Ei +000000000019b740 g DF .text 000000000000003c _ZN2nn5audio6server17AudioRenderSystem5StartEv +00000000001dedc4 g DF .text 000000000000000c FSS_add_font +0000000000256f88 g DF .text 0000000000000108 _ZN2nn3web15ShowNewsPageArgC1EPKc +00000000003265dc g DF .text 0000000000000004 _ZNSt3__112future_errorD1Ev +0000000000185c40 g DF .text 00000000000000d0 _ZN2nn5audio15BehaviorManager15UpdateOutStatusEPKv +00000000007e56d0 w DO .rodata 0000000000000112 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectE +0000000000348244 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb0EE14do_curr_symbolEv +0000000000221cfc g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm4EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000002c8c98 g DF .text 000000000000006c _ZN7android11DisplayEDID7setDataEPKvm +00000000003ab0e4 g DF .text 0000000000000004 __pthread_key_delete +000000000003d1f8 g DF .text 00000000000000b8 _ZN2nn4util6ResDic10FindRefBitERKNS0_17basic_string_viewIcNSt3__111char_traitsIcEEEES8_ +000000000018bb5c g DF .text 0000000000000038 _ZN2nn5audio20SetSubMixDestinationEPNS0_19AudioRendererConfigEPNS0_10SubMixTypeEPNS0_12FinalMixTypeE +000000000022b4bc g DF .text 0000000000000044 _ZN2nn3hid5debug12FinalizeNpadEv +000000000004001c g DF .text 0000000000000044 _ZN2nn4util30ConvertStringUtf8ToUtf16NativeEPtiPKci +000000000016710c w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_SaveSystemReportWithUserERKNS_7account3UidERKNS0_7InArrayIcEENS_13ApplicationIdERKNS0_8InBufferE +00000000001b9af4 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw14SetEyebrowTypeEi +000000000016af64 g DF .text 0000000000000044 _ZN2nn8settings6system7GetEdidEPNS1_4EdidE +00000000002ca674 g DF .text 0000000000000048 _ZN7android22GraphicBufferAllocator15dumpToSystemLogEv +0000000000126388 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E44_nn_sf_sync_DeleteNetworkServiceAccountCacheERKNS_7account3UidE +000000000018403c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_PrepareAddOnContentEim +00000000003c2820 w DF .text 0000000000000004 iswblank_l +0000000000956b90 w DO .data 0000000000000098 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +0000000000223a24 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm4EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +00000000003dc5f0 g DF .text 0000000000000040 clearerr +000000000015b054 g DF .text 0000000000000058 _ZN2nn2oe35BeginBlockingHomeButtonShortPressedENS_8TimeSpanE +0000000000213c08 g DF .text 000000000000008c FSS_calloc +0000000000174908 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_GetNfcEnableFlagENS0_3OutIbvEE +0000000000230ee8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E34_nn_sf_sync_GetFirmwareUpdateStageENS0_3OutIlvEESL_ +000000000022c5e4 g DF .text 0000000000000064 _ZN2nn3hid13GetNpadStatesEPNS0_11NpadGcStateEiRKj +000000000094ebc0 w DO .data 0000000000000018 _ZTIN2nn3apm14ISystemManagerE +00000000002cb488 g DF .text 00000000000001e4 _ZN7android6Region25createTJunctionFreeRegionERKS0_ +00000000000143d8 g DF .text 000000000000052c _ZN2nn5image6detail4jpeg22jinit_c_master_controlEPNS2_20jpeg_compress_structEb +00000000003c2e94 w DF .text 0000000000000014 tolower_l +00000000000cb770 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_GetHdcpAuthenticationFailedEventENS0_3OutINS0_12NativeHandleEvEE +00000000001448dc g DF .text 0000000000000054 _ZN2nn3ngc7strncpyEPcPKcm +00000000001609c8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_UnlockRestrictionTemporarilyERKNS0_7InArrayIcEE +000000000011b48c g DF .text 0000000000000064 _ZN2nn3err19ApplicationErrorArg16SetDialogMessageEPKc +00000000001c31c8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetRegionMoveEi +0000000000201a74 g DF .text 000000000000016c load_kerning +00000000001a77cc g DF .text 0000000000000048 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl34SetAudioDeviceOutputVolumeInternalERKNS_2sf8InBufferEf +0000000000117a04 g DF .text 0000000000000004 _ZN2nn5codec30HardwareOpusMultiStreamDecoderD0Ev +000000000014b794 g DF .text 0000000000000110 _ZN2nn3ngc6detail11BitVector324InitEj +00000000007e46a0 w DO .rodata 000000000000010e _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectE +000000000095a250 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000a80c60 w DO .bss 0000000000000010 _ZNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2idE +000000000036d3a8 g DF .text 000000000000001c _ZNSt3__129__libcpp_recursive_mutex_initEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +000000000097d170 g DO .data 0000000000000050 _ZTCNSt3__110ostrstreamE0_NS_13basic_ostreamIcNS_11char_traitsIcEEEE +0000000000084140 g DF .text 0000000000000014 _ZN2nn7nlibsdk4heap14TlsHeapCentralD1Ev +000000000008e6a0 g DF .text 000000000000003c _ZN2nn2os16ClearSystemEventEPNS0_15SystemEventTypeE +000000000014c410 g DF .text 0000000000000250 _ZN2nn3ngc6detail9SbvSelect5BuildEPKjj +000000000021d768 g DF .text 0000000000000078 _ZN2nn3hid6detail20IsAbxyButtonOrientedEPbRKj +00000000002533cc g DF .text 0000000000000008 _ZNK2nn3web20LobbyPageReturnValue10GetLastUrlEv +00000000002cb974 g DF .text 000000000000006c _ZNK7android6Region8containsERKNS_5PointE +0000000000081cd0 g DF .text 0000000000000010 nnmem_nlib_thread_exit +0000000000135cf4 g DF .text 00000000000000ec _ZN2nn4htcs6detail25virtual_socket_collection4SendEiPKvmiRi +00000000001b67b8 g DF .text 0000000000000018 _ZN2nn3mii6detail22GetEyebrowRotateOffsetENS0_11EyebrowTypeE +000000000029ef98 g DF .text 0000000000000090 _ZN7android6Parcel12writePointerEm +00000000003a9898 g DF .text 00000000000000fc open_memstream +00000000000913e4 g DF .text 0000000000000008 nnosAttachReadableHandleToSystemEvent +00000000001bc834 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw16GetEyebrowAspectEv +00000000001d0728 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_GetSharedFrameBufferContentParameterENS0_3OutIjvEENSG_INS_2vi10CropRegionEvEENSG_IivEESH_SL_NSI_7fbshare18SharedBufferHandleEl +0000000000258cb0 g DF .text 0000000000000008 nvdcGetCursor +00000000007f6064 g DO .rodata 000000000000000a _ZN2nn3mii6detail35FacelineColorOrderIndexToColorIndexE +000000000026fd94 g DF .text 000000000000006c NvRmMemHandleAllocAttr +000000000024bfd4 g DF .text 0000000000000044 _ZN2nn3kpr6detail29GetKeyCodeComposerCompositionERKNS1_22KeyCodeComposerStorageEPti +000000000003615c g DF .text 0000000000000088 nnutilZlib_inflateReset +000000000016f510 g DF .text 0000000000000070 _ZN2nn8settings6detail39SetConsoleSixAxisSensorAccelerationBiasERKNS0_6system36ConsoleSixAxisSensorAccelerationBiasE +000000000035913c g DF .text 00000000000000e4 _ZNKSt3__115__codecvt_utf16IwLb1EE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_ +0000000000074794 w DF .text 000000000000005c nnmem_nlib_strcpy +00000000001b33e8 g DF .text 000000000000005c _ZN2nn2ec6detail16CouponIdToStringEPcmNS0_8CouponIdE +0000000000272780 g DF .text 00000000000000c4 NvRmStreamPushSetClass +000000000018bc1c g DF .text 000000000000000c _ZN2nn5audio20GetSubMixBufferCountEPKNS0_10SubMixTypeE +000000000017103c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_GetAccelerometerOffsetENS0_3OutINS5_7factory19AccelerometerOffsetEvEE +000000000007db08 g DF .text 000000000000044c nnmem_nlib_strto_double_fallback +000000000094dbf0 w DO .data 0000000000000018 _ZTIN2nn2am7service26ILibraryAppletSelfAccessorE +000000000016a310 g DF .text 0000000000000058 _ZN2nn8settings5fwdbg22GetSettingsItemKeySizeERKNS1_23SettingsItemKeyIteratorE +0000000000823e40 w DO .rodata 0000000000000018 _ZTSNSt3__113messages_baseE +000000000035a89c g DF .text 0000000000000040 _ZNSt3__18numpunctIcED1Ev +00000000007c70e0 w DO .rodata 0000000000000147 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IDebugFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000152324 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +00000000000b13ac g DF .text 0000000000000004 _ZN2nn6socket6detail11GAIStrErrorEi +000000000025b2a8 g DF .text 0000000000000098 hdcp_enable +00000000000d5a68 g DF .text 00000000000000b0 _ZN2nn4bcat30RegisterBackgroundDeliveryTaskENS_13ApplicationIdEj +0000000000122044 g DF .text 0000000000000008 _ZNK2nn7friends6Friend12GetAccountIdEv +0000000000355de4 g DF .text 0000000000000078 _ZNSt3__112ctype_bynameIcED0Ev +000000000014b664 g DF .text 0000000000000024 _ZN2nn3ngc6detail17MemoryInputStreamC1EPKvm +00000000001bce30 g DF .text 000000000000001c _ZNK2nn3mii6detail12StoreDataRaw9IsSpecialEv +00000000000d4260 g DF .text 00000000000000ec _ZN2nn6applet15ReadFromStorageENS0_13StorageHandleElPvm +000000000018cf3c g DF .text 00000000000000c0 _ZN2nn5audio16VoiceInfoManager22UpdateVoiceInParameterEPNS0_9VoiceInfo11InParameterE +0000000000264b70 g DF .text 0000000000000008 NvOsGetOsInformation +0000000000294ec4 g DF .text 0000000000000030 _ZTv0_n24_N7android7IBinderD0Ev +0000000000066f88 g DF .text 00000000000000dc _ZN2nn2fs6detail31ReadSaveDataFileSystemExtraDataEPNS0_17SaveDataExtraDataENS0_15SaveDataSpaceIdEm +00000000000bc1b0 w DF .text 00000000000001d0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm4096EEENSG_ILi1ELi26ELm256EEEEEELm0ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeESQ_j +00000000002707cc g DF .text 0000000000000008 NvRmMemQueryHeaps +0000000000095f68 g DF .text 0000000000000078 _ZNK2nn2os6detail26ThreadManagerImplByHorizon17GetThreadCoreMaskEPiPmPKNS0_10ThreadTypeE +0000000000945d60 g DO .data 0000000000000038 _ZTIN2nn2sf4cmif6server23CmifServerDomainManager6DomainE +0000000000006890 g DF .text 0000000000000268 _ZN2nn6crypto6detail8Sha1Impl12ProcessBlockEPKv +00000000001c70d4 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm68ELm4ELl0EEEEEELm68ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm68ELm4EvEEj +00000000001d4cd4 g DF .text 000000000000008c _ZN2nn2vi9GetLayerZEPiPKNS0_5LayerE +000000000032f130 w DF .text 000000000000004c _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC2ERS3_ +00000000001224fc g DF .text 000000000000000c _ZN2nn7friends23NintendoNetworkIdFriendC1Ev +000000000035a924 g DF .text 0000000000000040 _ZNSt3__115numpunct_bynameIwED1Ev +00000000003a450c g DF .text 0000000000000034 __popcountsi2 +000000000016c5e0 g DF .text 0000000000000070 _ZN2nn8settings6detail20SetBacklightSettingsERKNS0_6system19BacklightSettingsExE +0000000000396aa8 g DF .text 0000000000000014 _ZNSt8bad_castC1Ev +00000000000169a8 g DF .text 0000000000000254 _ZN2nn5image6detail4jpeg17jinit_downsamplerEPNS2_20jpeg_compress_structE +000000000026fec8 g DF .text 0000000000000004 NvRmMemUnpin +0000000000051138 g DF .text 0000000000000168 _ZN2nn2fs17SetBisRootForHostENS0_14BisPartitionIdEPKc +00000000007adaa4 g DO .rodata 0000000000000004 _ZN2nn4util6detail22FloatQuaternionEpsilonE +00000000000c05d0 g DF .text 0000000000000048 _ZN2nn7account34NetworkServiceAccountAdministrator4SwapERS1_ +000000000094c470 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000000bc53c w DF .text 0000000000000254 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEEEEELm0ELm0ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000097d800 g DO .data 0000000000000018 _ZTISt13runtime_error +00000000003a51fc g DF .text 0000000000000028 __umodsi3 +0000000000153aa0 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm380EEENSC_17InRawArgumentInfoILm16ELm1ELl0EEEEEELm16ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm1EvEEj +000000000039cc58 g DF .text 0000000000000004 __deregister_frame +00000000000c6fd0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_SetIdleTimeDetectionExtensionEj +00000000001a38dc g DF .text 0000000000000008 _ZNK2nn5audio6server11AddressInfo21GetForceMappedDspAddrEv +000000000023a76c g DF .text 000000000000002c _ZN2nn8irsensor6detail15IrSensorSession32ActivateServiceWithFunctionLevelERKNS0_21IrSensorFunctionLevelE +00000000000b1dc4 g DF .text 0000000000000068 _ZN2nn7account40ShowLicenseRequirementsForNetworkServiceERKNS0_3UidE +00000000001a0d64 g DF .text 0000000000000008 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_25CircularBufferSinkCommandE +00000000001b66d0 g DF .text 000000000000001c _ZNK2nn3mii9StoreDataneERKS1_ +00000000003225a0 w DF .text 0000000000000558 _ZNSt3__16__sortIRNS_6__lessIddEEPdEEvT0_S5_T_ +0000000000017a28 g DF .text 0000000000000004 _ZN2nn5image6detail4jpeg21jpeg_abort_decompressEPNS2_22jpeg_decompress_structE +00000000000cceb0 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_6grcsrv17IGameMovieTrimmerEEEvi +0000000000095174 g DF .text 000000000000001c _ZN2nn2os6detail17CallFiberFunctionEPFPNS0_9FiberTypeEPvES4_ +00000000000b1ff4 g DF .text 0000000000000044 _ZN2nn7account6detail18OAuthProcedureBaseD0Ev +00000000003d2694 g DF .text 0000000000000018 mblen +0000000000805750 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi144EE4MaskE +0000000000942af8 w DO .data 0000000000000050 _ZTVN2nn2fs26FileStorageBasedFileSystemE +00000000000b0784 g DF .text 0000000000000008 _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfI7in_addrEEmRKT_ +00000000007cc760 w DO .rodata 0000000000000149 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IApplicationProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000007c4410 w DO .rodata 0000000000000041 _ZTSN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureE +000000000022e648 g DF .text 000000000000001c _ZN2nn3hid6system33StartSixAxisSensorUserCalibrationERKNS1_25UniqueSixAxisSensorHandleE +000000000094eaf0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000023b200 g DF .text 0000000000000048 _ZN2nn8irsensor6system22EnableAppletToGetInputERKNS_6applet20AppletResourceUserIdEb +000000000097b3b0 g DO .data 0000000000000018 _ZTINSt3__115__codecvt_utf16IwLb1EEE +000000000095bab0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail15NpadJoyDualLifoE +000000000029bee0 g DF .text 00000000000001e4 _ZN7android12MemoryDealer8allocateEm +00000000001d25fc w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm10EE27InitializeShimLibraryHolderINS_5visrv2sf19IManagerRootServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +0000000000156068 g DF .text 000000000000002c _ZN2nn4nifm27SubmitNetworkRequestAndWaitEv +00000000000c9afc w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_PushExtraStorageENS0_13SharedPointerINS6_8IStorageEEE +0000000000144954 g DF .text 0000000000000050 _ZN2nn3ngc6detail18GetLanguageSettingEb +00000000002bda38 g DF .text 00000000000001f0 _ZN7android22ISurfaceComposerClient11asInterfaceERKNS_2spINS_7IBinderEEE +000000000008d014 g DF .text 0000000000000008 _ZN2nn2os26BroadcastConditionVariableEPNS0_21ConditionVariableTypeE +00000000001751f8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_SetKeyboardLayoutEi +0000000000189fd0 g DF .text 0000000000000014 _ZN2nn5audio6detail31IsResourceExclusionCheckEnabledEv +000000000022cd14 g DF .text 0000000000000044 _ZN2nn3hid32GetSixAxisSensorFusionParametersEPfS1_RKNS0_19SixAxisSensorHandleE +000000000017da60 g DF .text 00000000000000ec _ZN2nn4time37GetEphemeralNetworkSystemClockServiceEPNS_2sf13SharedPointerINS_7timesrv6detail7service12ISystemClockEEE +000000000022ad5c g DF .text 0000000000000044 _ZN2nn3hid5debug13FinalizeMouseEv +0000000000805170 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi76EE4MaskE +0000000000295a68 g DF .text 0000000000000018 _ZTv0_n32_N7android9BpRefBase10onFirstRefEv +000000000094c1d0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000004ae8 g DF .text 0000000000000148 _ZN2nn6crypto6detail7Md5Impl16ProcessLastBlockEv +0000000000286cc8 g DF .text 000000000000000c NvRmGpuRegOpsSessionCreateForChannel +0000000000174df0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E48_nn_sf_sync_GetExternalSteadyClockInternalOffsetENS0_3OutIlvEE +00000000001a24b8 g DF .text 000000000000007c _ZN2nn5audio6server12BehaviorInfoC2Ev +00000000000d1284 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E39_nn_sf_sync_GetPerformanceConfigurationENS0_3OutINS5_24PerformanceConfigurationEvEENS5_15PerformanceModeE +00000000001a3044 g DF .text 0000000000000010 _ZN2nn5audio6server14MemoryPoolInfoC2ENS2_8LocationE +00000000001b9e94 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw14SetMouthAspectEi +000000000080c7c0 w DO .rodata 000000000000013c _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail15HidSystemServerEEEEEE13ServiceObjectESJ_E6ObjectE +000000000018fd40 g DF .text 000000000000006c _ZN2nn5audio30GetAudioInsProcessMasterVolumeEPfNS_6applet20AppletResourceUserIdE +0000000000230fd8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E33_nn_sf_sync_UpdateControllerColorENS_4util8Unorm8x4ESL_NS5_6system11UniquePadIdE +0000000000156e14 g DF .text 0000000000000004 _ZN2nn4nifm7Request15GetRequestStateEv +000000000003c5a4 g DF .text 0000000000000034 _ZN2nn4util15CompressDeflateEPmPvmPKvmS2_m +00000000001ca0e8 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard26IsUsedTouchPointByKeyboardEii +00000000000689e8 g DF .text 000000000000014c _ZN2nn2fs18GetSaveDataOwnerIdEPmNS0_15SaveDataSpaceIdEm +0000000000091420 g DF .text 0000000000000008 nnosInitializeEvent +000000000022f63c g DF .text 0000000000000050 _ZN2nn3hid23VibrationNodeConnection13SetModulationERKNS0_19VibrationModulationE +000000000003aa1c g DF .text 00000000000000a8 nnutilZlib__tr_tally +00000000002374a8 w DF .text 0000000000000268 _ZNK2nn8irsensor6detail8RingLifoINS0_24ClusteringProcessorStateELi5EE4ReadEPS3_ij +00000000007c7340 w DO .rodata 00000000000000f8 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000125c14 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_SyncFriendListERKNS_7account3UidE +000000000017925c g DF .text 00000000000000e8 _ZN2nn3ssl10Connection5WriteEPKcPij +000000000006ee14 g DF .text 0000000000000004 _ZN2nn4lmem12GetFillValueENS0_8FillTypeE +0000000000804870 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi4EE4MaskE +00000000003de6f0 g DF .text 0000000000000074 swprintf +000000000094fbb0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000012097c g DF .text 00000000000000c0 _ZN2nn7friends17DeletePlayHistoryERKNS_7account3UidE +000000000005de80 w DF .text 0000000000000168 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSG_ILm16ELm1ELl16EEEEEELm32ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSQ_ILm16ELm1EvEEj +000000000035a9c4 g DF .text 0000000000000008 _ZNKSt3__18numpunctIwE16do_thousands_sepEv +000000000003b6ec g DF .text 0000000000000044 _ZNK2nn4util16BinaryFileHeader11GetFileNameEv +00000000003de0b4 w DF .text 0000000000000010 getwchar_unlocked +000000000023e6a0 g DF .text 000000000000007c _ZN22nerd_gillette_internal5otete7jaimev119DecodeSilhouetteROKEPNS0_11OteteFloat2ERmmPKhmPm +00000000000c7014 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_SetInputDetectionSourceSetEj +00000000000d6fa0 g DF .text 0000000000000048 _ZNK2nn4bcat21DeliveryCacheProgress23GetCurrentDirectoryNameEv +000000000095d240 w DO .data 0000000000000018 _ZTIN2nn3hid26IActiveVibrationDeviceListE +00000000001ce604 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_CreateStrayLayerENS0_3OutImvEENSG_IlvEERKNS0_9OutBufferEmj +00000000007c6760 w DO .rodata 0000000000000019 _ZTSN2nn2am7service7IWindowE +0000000000230b18 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E27_nn_sf_sync_DeactivateMouseEv +00000000000c0f18 g DF .text 0000000000000170 _ZN2nn7account34NetworkServiceAccountAdministrator46DebugSetNetworkServiceAccountAvailabilityErrorENS_6ResultE +0000000000008738 w DF .text 0000000000000008 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEEC1Ev +00000000003bbb78 g DF .text 00000000000000b8 __ldexp_cexpf +000000000097c008 w DO .data 0000000000000010 _ZTINSt3__113messages_baseE +00000000003a44d0 g DF .text 000000000000003c __popcountdi2 +00000000003db7d8 g DF .text 0000000000000124 __tre_mem_alloc_impl +0000000000318768 g DF .text 000000000000007c _ZN2nn3pcv7PowerOnENS0_18PowerControlTargetEi +00000000003af2f0 g DF .text 0000000000000280 expm1f +00000000007bd1c0 w DO .rodata 0000000000000021 _ZTSN2nn7account4baas12IManagerBaseE +0000000000a24da0 g DO .bss 0000000000000004 _ZN2nn5swkbd12g_ExitReasonE +000000000019cdd4 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E33_nn_sf_sync_SetRenderingTimeLimitEi +0000000000217e68 g DF .text 00000000000000e0 _ZN2nn3hid6detail14InitializeXpadERKNS0_9JoyXpadIdE +00000000002199b0 g DF .text 0000000000000070 _ZN2nn3hid6detail25SetKeyboardAutoPilotStateERKNS0_5debug22KeyboardAutoPilotStateE +00000000007b6260 g DO .rodata 000000000000002a _ZTSN2nn2fs6detail24FileServiceObjectAdapterE +00000000003628c0 w DF .text 00000000000000ac _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_ +00000000001c5cf8 g DF .text 0000000000000030 _ZNK2nn3mii15PrivateDatabase6ExportEPvm +0000000000041a50 g DF .text 0000000000000014 _ZN2nn4edid6detail18HasVsyncSerrationsEh +00000000009484f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +0000000000329b88 w DF .text 0000000000000008 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED1Ev +00000000003a8f04 g DF .text 00000000000000c8 srandom +0000000000286c60 g DF .text 0000000000000014 NvRmGpuChannelClose +00000000003c9aac g DF .text 000000000000001c expm1l +000000000005f954 g DF .text 0000000000000024 _ZN2nn2fs6detail24FileServiceObjectAdapter9DoSetSizeEl +00000000001cf0d4 w DF .text 0000000000000198 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSG_ILm4ELm4ELl0EEEEEELm16ELm16ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEESQ_NSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm8ELm8EvEENSS_ILm4ELm4EvEEj +00000000000b1198 g DF .text 0000000000000048 _ZN2nn6socket8resolver23GetOperationStateStringERKNS1_14OperationStateEb +00000000000cd964 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE29_nn_sf_sync_GetSelfControllerENS0_3OutINS0_13SharedPointerINS6_15ISelfControllerEEEvEE +000000000012c588 g DF .text 0000000000000338 _ZN2nn2fs25ExtendApplicationSaveDataEPlNS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyENS0_12SaveDataTypeERKNS_7account3UidEll +00000000001670d8 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E28_nn_sf_sync_SaveSystemReportERKNS0_7InArrayIcEENS_13ApplicationIdERKNS0_8InBufferE +00000000003a51d8 g DF .text 0000000000000024 __umoddi3 +000000000003dc40 g DF .text 00000000000000a0 _ZN2nn4util6TinyMt24GenerateInitialValuePlusEPjij +00000000000b32c0 g DF .text 00000000000000e4 _ZN2nn7account16LoadProfileImageEPmPvmRKNS0_3UidE +00000000000bd674 g DF .text 0000000000000048 _ZN2nn7account12AsyncContext4SwapERS1_ +000000000011a994 g DF .text 0000000000000098 _ZN2nn3err20ShowErrorWithoutJumpENS_6ResultE +000000000025a834 g DF .text 0000000000000008 nvdcScrncaptPause +0000000000319d28 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +00000000001d0158 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_GetCompositorErrorInfoENS0_3OutINS_2vi15CompositorErrorEvEENSG_IivEElm +0000000000354804 g DF .text 000000000000004c _ZNSt3__114collate_bynameIcED2Ev +000000000017ce5c g DF .text 0000000000000034 _ZN2nn3ssl5Debug14HeapTrackPointC1Ev +00000000002a43fc g DF .text 000000000000000c _ZN7android14IPCThreadState10freeBufferEPNS_6ParcelEPKhmPKjmPv +00000000000905bc g DF .text 0000000000000018 _ZN2nn2os11GetThreadIdEPKNS0_10ThreadTypeE +0000000000183fd8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_GetAddOnContentBaseIdByApplicationIdENS0_3OutImvEENS_3ncm13ApplicationIdE +000000000004c2ec g DF .text 0000000000000064 _ZN2nn2fs15RomFsFileSystem11GetFileInfoEPNS0_11RomFileInfoEPKc +00000000003ac088 g DF .text 0000000000000004 read +00000000001bd070 g DF .text 0000000000000014 _ZN2nn3mii6detail28GetVer3StoreDataTableElementENS1_19Ver3StoreDataMemberE +00000000007b0f1c g DO .rodata 0000000000000004 _ZN2nn2fs24HierarchicalRomFileTable21PositionRootDirectoryE +00000000001bd1f4 g DF .text 0000000000001840 _ZNK2nn3mii6detail16Ver3StoreDataRaw6VerifyEv +000000000023657c g DF .text 00000000000000f8 _ZN2nn8irsensor6detail18StopImageProcessorERKNS0_14IrCameraHandleE +0000000000135f84 g DF .text 0000000000000014 _ZN2nn2lm6detail20LogPacketTransmitterC2EPvmPFbPKhmEhhmbb +00000000000a1978 g DF .text 0000000000000004 _ZN2nn6socket8InetAtonEPKcP7in_addr +0000000000198db8 g DF .text 000000000000003c _ZN2nn5audio18OpenDefaultAudioInEPNS0_7AudioInERKNS0_16AudioInParameterE +000000000009d16c g DF .text 000000000000004c _ZN2nn2sf4hipc6server28HipcServerSessionManagerBase16CloseSessionBaseEPNS2_21HipcServerSessionBaseE +0000000000286930 g DF .text 0000000000000024 NvRmGpuAddressSpaceClose +00000000000984a8 w DF .text 0000000000000128 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEEEEELm8ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_26InHandleClientArgumentTypeEj +00000000000c9910 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE12GetProxyInfoEv +0000000000070b20 g DF .text 000000000000009c _ZN2nn4lmem6detail18AllocFromFrameHeapEPNS1_8HeapHeadEmi +00000000000684b4 g DF .text 0000000000000054 _ZN2nn2fs20CreateSystemSaveDataEmNS0_6UserIdEmllj +0000000000215cd0 g DF .text 0000000000000008 _ZN2nn3hid6detail32GetConsoleSixAxisSensorTypeValueERKNS0_26ConsoleSixAxisSensorHandleE +00000000009486d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000002cdb4c g DF .text 000000000000006c _ZN7android7RefBaseD0Ev +00000000000d5dcc g DF .text 00000000000000e0 _ZN2nn4bcat15GetDeliveryListEPmPvmNS_13ApplicationIdE +0000000000040f2c g DF .text 00000000000000d4 _ZN2nn4util27ConvertCharacterUtf32ToUtf8EPcj +00000000001c9efc g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard9DisappearEv +00000000002a1284 g DF .text 0000000000000008 _ZNK7android6Parcel10ipcObjectsEv +0000000000228f5c g DF .text 0000000000000044 _ZN2nn3hid5debug15FinalizeGestureEv +000000000035d9a0 g DF .text 0000000000000da4 _ZNSt3__118__time_get_storageIwE4initERKNS_5ctypeIwEE +00000000009a8b98 g DO .bss 0000000000000008 _ZN2nn2os6detail22g_UserExceptionHandlerE +000000000017b440 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_SetIoModeENS6_6IoModeE +00000000002285e8 g DF .text 000000000000005c _ZN2nn3hid6system30IsAnalogStickInReleasePositionENS1_11UniquePadIdENS1_19AnalogStickPositionE +00000000000f20b0 g DF .text 00000000000001f4 silk_NLSF_decode +00000000001bc820 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw7GetEyeXEv +00000000000a5024 g DF .text 0000000000000180 _ZN2nn6socket6detail4OpenEPKci +00000000003cd21c g DF .text 000000000000000c nanf +000000000094fd40 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000182a58 g DF .text 0000000000000010 _ZN2nn4time6detail20MonotonicSystemClockC2Ev +00000000001175ec g DF .text 0000000000000004 _ZN2nn5codec19HardwareOpusDecoderD0Ev +000000000015e920 g DF .text 0000000000000058 _ZN2nn4pctl20GetPlayTimerSettingsEPNS0_17PlayTimerSettingsE +000000000017a0c8 g DF .text 0000000000000030 nnsslConnectionGetServerCertDetail +00000000001ce5bc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_SetLayerVisibilityEmb +000000000006ee18 g DF .text 000000000000004c _ZN2nn4lmem12GetTotalSizeEPNS0_6detail8HeapHeadE +00000000001a288c g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase9IsEnabledEv +0000000000181190 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISteadyClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object12AddReferenceEv +00000000003cd228 g DF .text 000000000000000c nanl +0000000000122b90 g DF .text 000000000000000c _ZN2nn7friends12UserPresence29DeclareCloseOnlinePlaySessionEv +0000000000151fd0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E34_nn_sf_sync_GetCurrentIpConfigInfoENS0_3OutINS5_16IpAddressSettingEvEENSP_INS5_10DnsSettingEvEE +00000000007b8d80 g DO .rodata 0000000000000035 _ZTSN2nn2sf4cmif6server23CmifServerDomainManager6DomainE +000000000000d28c g DF .text 00000000000002c4 _ZN2nn5image6detail4jpeg21jinit_color_converterEPNS2_20jpeg_compress_structE +00000000000a31d8 g DF .text 0000000000000190 _ZN2nn6socket6detail6AcceptEiP8sockaddrPj +00000000002343b4 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEENSB_ILm1ELm1ELl1EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm2ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEESN_NSL_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000014b8bc g DF .text 000000000000004c _ZN2nn3ngc6detail11BitVector3216ReleaseAllocatorEv +00000000001799c8 g DF .text 00000000000000b0 _ZN2nn3ssl10Connection9GetOptionEPbNS1_10OptionTypeE +00000000009b4068 w DO .bss 0000000000000030 _ZZN2nn7friends6detail17ShimLibraryGlobal11GetInstanceEvE10s_Instance +00000000003a929c g DF .text 0000000000000024 sched_getcpu +00000000000888e4 g DF .text 0000000000000160 _ZN2nn7nlibsdk4heap11CentralHeap4InitEPvmj +000000000008c098 g DF .text 00000000000000d4 _ZN2nn3mem19NumberLineAllocator8AllocateEPiiiPvPFvS3_E +00000000000b5564 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +0000000000226f1c g DF .text 0000000000000058 _ZN2nn3hid6detail22DisconnectUsbPadsAsyncEv +00000000001e3e94 g DF .text 0000000000000290 fs__realloc +000000000024fa64 g DF .text 0000000000000098 _ZN2nn3ldn8GetStateEv +000000000082208b g DO .rodata 0000000000000001 _ZNSt3__16chrono12system_clock9is_steadyE +00000000003299a4 w DF .text 00000000000000d0 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsputnEPKwl +000000000029fb38 g DF .text 0000000000000238 _ZN7android6Parcel25writeParcelFileDescriptorEii +00000000000ce9bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_GetLaunchStorageInfoForDebugENS0_3OutINS_3ncm9StorageIdEvEESN_ +0000000000042a08 g DF .text 00000000000000a0 _ZN2nn4edid6cea86111VisitBlocksEPKNS0_4EdidEPFbPKhmPvES7_ +00000000000ba568 w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl8EEENSG_ILm4ELm4ELl0EEEEEELm24ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSQ_ILm4ELm4EvEEj +0000000000190c3c g DF .text 0000000000000020 _ZN2nn5audio18StartAudioRendererENS0_19AudioRendererHandleE +0000000000324274 g DF .text 0000000000000060 _ZNSt3__129__libcpp_abort_debug_functionERKNS_19__libcpp_debug_infoE +000000000039d374 g DF .text 00000000000000b8 __extendsftf2 +00000000001c6f78 w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl16EEENSG_ILm16ELm1ELl0EEEEEELm20ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENSQ_ILm16ELm1EvEEj +0000000000089a2c g DF .text 0000000000000030 _ZN2nn7nlibsdk4heap10CachedHeap10CheckCacheEv +000000000036dc64 g DF .text 000000000000000c _ZNKSt18bad_variant_access4whatEv +00000000007bca40 w DO .rodata 00000000000001a8 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas22IManagerForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000184e54 g DF .text 0000000000000058 _ZN2nn5audio32InitializeAudioRendererParameterEPNS0_22AudioRendererParameterE +000000000015d628 g DF .text 000000000000005c _ZN2nn4pctl14GetSafetyLevelEv +0000000000184c24 g DF .text 0000000000000008 _ZN2nn5audio27GetAudioOutBufferBufferSizeEPKNS0_14AudioOutBufferE +000000000023a7e8 g DF .text 000000000000000c _ZN2nn8irsensor6detail15IrSensorSession18AttachSharedMemoryEjb +0000000000953860 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +000000000025a83c g DF .text 0000000000000008 nvdcScrncaptResume +0000000000005288 g D .text 0000000000000304 nndetailCryptoBignum_sqr_comba8 +0000000000011824 g DF .text 00000000000000c4 _ZN2nn5image6detail4jpeg21jinit_compress_masterEPNS2_20jpeg_compress_structE +0000000000361590 g DF .text 0000000000000144 _ZNSt3__121recursive_timed_mutex4lockEv +0000000000182b68 g DF .text 0000000000000084 _ZNK2nn4time6detail20MonotonicSystemClock14GetCurrentTimeEPNS0_9PosixTimeE +00000000000818ec g DF .text 00000000000000b8 nnmem_nlib_cond_wait_until +0000000000091514 g DF .text 0000000000000020 _ZN2nn2os6detail14NotImplementedEPKci +00000000007bc3a0 w DO .rodata 0000000000000023 _ZTSN2nn7account19IAccountServiceBaseE +0000000000228e3c g DF .text 0000000000000004 _ZN2nn3hid6system19AbortFirmwareUpdateEv +00000000000d0000 g DF .text 0000000000000128 _ZN2nn3apm8FinalizeEv +00000000001260d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E48_nn_sf_sync_GetFacedFriendRequestRegistrationKeyENS0_3OutINS5_33FacedFriendRequestRegistrationKeyEvEERKNS_7account3UidE +0000000000138cb0 g DF .text 00000000000001d8 _ZN2nn3nfc6client19CreateUserInterfaceEv +0000000000098b94 g DF .text 00000000000000f8 _ZNK2nn2ro6detail8RoModule6LookupEPKc +00000000000ff8ec g DF .text 000000000000022c silk_stereo_MS_to_LR +0000000000805550 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi107EE4MaskE +0000000000186e38 w DF .text 0000000000000110 _ZN2nn5audio10AddAuxImplINS0_10SubMixTypeEEENS_6ResultEPNS0_19AudioRendererConfigEPNS0_7AuxTypeEPT_PvSA_m +000000000097b770 w DO .data 0000000000000018 _ZTINSt3__17collateIcEE +00000000000913bc g DF .text 000000000000001c nnosCreateSystemEvent +000000000018b28c g DF .text 000000000000005c _ZN2nn5audio19SplitterInfoManager8AllocateEv +0000000000082058 g DF .text 0000000000000030 nnmem_nlib_mkdir +000000000024e3ac g DF .text 0000000000000104 _ZN2nn6capsrv28SaveScreenShotForApplicationEPNS0_21ApplicationAlbumEntryEPKvmjj +000000000025ac34 g DF .text 0000000000000048 nvdcutilClose +00000000002cfc90 g DF .text 0000000000000084 _ZN7android7String812unlockBufferEm +00000000009461c0 w DO .data 0000000000000018 _ZTIN2nn2sf4hipc6server18Hipc2ServerMessageE +00000000001a1ba0 g DF .text 00000000000000a0 _ZN2nn5audio6server11InfoUpdater23UpdatePerformanceBufferEPvmPNS1_18PerformanceManagerE +0000000000180ba4 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E50_nn_sf_sync_GetClockSnapshotFromSystemClockContextENS0_3OutINSL_2sf13ClockSnapshotEvEERKNSL_18SystemClockContextESZ_h +000000000026cdc0 g DF .text 0000000000000008 NvRmSyncCalculateSizeForInplaceSemaphores +0000000000355f44 g DF .text 000000000000015c _ZNSt3__112ctype_bynameIwEC1EPKcm +00000000002cfc1c g DF .text 0000000000000074 _ZN7android7String812unlockBufferEv +000000000032461c g DF .text 0000000000000090 _ZNSt3__124__libcpp_debug_exceptionC1ERKS0_ +00000000003b32e4 g DF .text 0000000000000008 __nnmusl_force_mulf +00000000000b10e0 g DF .text 00000000000000b8 _ZN2nn6socket8resolver14CreateRandomIdERj +0000000000804cd0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi39EE4MaskE +0000000000042d10 g DF .text 0000000000000870 _ZN2nn4edid6cea86110ConvertVicEPNS0_15DisplayModeInfoEh +00000000001222f4 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest11GetNicknameEv +000000000015c960 g DF .text 0000000000000068 _ZN2nn2oe44RequestToExitApplicationAndShowThanksMessageEv +00000000000967b8 g DF .text 0000000000000048 _ZN2nn2os6detail23SetMemoryPermissionImplEmmNS0_16MemoryPermissionE +00000000000b81ec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E43_nn_sf_sync_GetServiceEntryRequirementCacheENS0_3OutIjvEENS_13ApplicationIdE +00000000008018c0 w DO .rodata 00000000000000c4 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000823130 g DO .rodata 0000000000000022 _ZTSNSt3__116__narrow_to_utf8ILm32EEE +000000000094df40 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEEE +000000000084d1a0 g DO .rodata 0000000000000180 aT +00000000003270cc g DF .text 00000000000001bc _ZNSt3__17promiseIvED2Ev +00000000003626f4 g DF .text 0000000000000080 _ZNSt13runtime_errorC2EPKc +0000000000259dc0 g DF .text 000000000000005c nvdcFreeLut +00000000002197a8 g DF .text 0000000000000208 _ZN2nn3hid6detail17GetKeyboardStatesEPiPNS0_13KeyboardStateEi +0000000000286b3c g DF .text 000000000000000c NvRmGpuMappingModify +000000000008d92c g DF .text 0000000000000004 _ZN2nn2os19TimedWaitLightEventEPNS0_14LightEventTypeENS_8TimeSpanE +000000000015b1a4 g DF .text 0000000000000050 _ZN2nn2oe21EndBlockingHomeButtonEv +000000000002a494 g DF .text 0000000000000010 _ZN2nn5image6detail4jpeg13jdiv_round_upEll +000000000095e800 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail32ISystemLocalCommunicationServiceE +0000000000080824 w DF .text 0000000000000140 _ZN2nn7nlibsdk23LockFreePlaceHolderPoolIPvvE4InitEm +0000000000160fd4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E46_nn_sf_sync_GetAccountMiiImageContentTypeAsyncENS0_3OutINS6_9AsyncDataEvEENSL_INS0_12NativeHandleEvEENSL_IjvEERKNS0_8OutArrayIcEERKNS6_22PairingAccountInfoBaseE +0000000000189bd0 g DF .text 000000000000000c _ZN2nn5audio15PerformanceInfo22GetTotalProcessingTimeEv +0000000000959c60 w DO .data 0000000000000018 _ZTIN2nn5visrv2sf18ISystemRootServiceE +000000000034700c w DF .text 0000000000000008 _ZNKSt3__110moneypunctIwLb0EE16do_thousands_sepEv +000000000017eeb8 g DF .text 0000000000000008 _ZN2nn4time27GetClockSnapshotInitialTypeERKNS0_13ClockSnapshotE +00000000001d5970 g DF .text 0000000000000010 _ZN2nn2vi6detail18IndirectLayerTable3GetEi +00000000003beee4 g DF .text 0000000000000074 __crypt_r +000000000003be3c g DF .text 000000000000007c _ZNK2nn4util8BitArray3allEv +00000000001d00f8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_ReleaseLayerTexturePresentingEventEm +00000000000bb630 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E25_nn_sf_sync_RegisterAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000272ffc g DF .text 00000000000000f4 NvRmStreamPushGather +0000000000979858 w DO .data 0000000000000010 _ZTINSt3__115basic_streambufIwNS_11char_traitsIwEEEE +0000000000348fe4 g DF .text 0000000000000004 _ZNSt3__112__do_nothingEPv +00000000003e272c g DF .text 00000000000000b4 strspn +00000000007b15c0 w DO .rodata 000000000000002f _ZTSN2nn2sf4hipc6client24HipcClientSessionManagerE +0000000000171c54 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm308EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000001d38ac g DF .text 00000000000000e4 _ZN2nn2vi23ListDisplayContentTypesEPNS0_11ContentTypeEiPKNS0_7DisplayE +0000000000263904 g DF .text 0000000000000034 NvOsTlsAllocWithDestructor +00000000000bf3c8 g DF .text 0000000000000008 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarC2EPNS0_4baas28IFloatingRegistrationRequestE +00000000002539c8 g DF .text 0000000000000060 _ZN2nn3web22ShowOfflineHtmlPageArgC1EPKc +0000000000082124 g DF .text 000000000000004c nnmem_nlib_dir_open +0000000000956010 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +00000000001c3578 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding1Ei +0000000000122038 g DF .text 000000000000000c _ZN2nn7friends6FriendC1Ev +0000000000140a5c g DF .text 0000000000000128 _ZN2nn3nfp13GetCommonInfoEPNS0_10CommonInfoERKNS0_12DeviceHandleE +00000000003b7520 g DF .text 00000000000000d4 vfwprintf +000000000013bdf4 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm1ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +0000000000355658 g DF .text 0000000000000040 _ZNKSt3__15ctypeIwE9do_narrowEPKwS3_cPc +0000000000264b38 g DF .text 0000000000000008 NvOsSharedMemHandleFromFd +000000000016abfc g DF .text 0000000000000044 _ZN2nn8settings6system20GetAppletLaunchFlagsEPNS_4util10BitFlagSetILi32ENS1_16AppletLaunchFlagEEE +00000000003c5a14 g DF .text 0000000000000074 __wcsxfrm_l +0000000000954c60 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +00000000001a8ef8 g DF .text 0000000000000008 _ZNK2nn5audio3dsp20CommandListProcessor24GetProcessedCommandCountEv +000000000095bbd8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_6system18NpadSystemExtStateELi16ENS1_13AtomicStorageIS4_EEEE +000000000027094c g DF .text 000000000000001c NvRmSyncIsSemaphores +00000000000ba094 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E34_nn_sf_sync_CancelUserRegistrationERKNS5_3UidE +00000000007f61a9 g DO .rodata 0000000000000006 _ZN2nn3mii6detail19Ver3GlassColorTableE +000000000021401c g DF .text 0000000000000010 nnfontllFsSeekFile +00000000000c5094 w DF .text 00000000000000c4 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_OpenLibraryAppletProxyENS0_3OutINS0_13SharedPointerINS6_19ILibraryAppletProxyEEEvEEmONS0_12NativeHandleERKNS5_15AppletAttributeE +00000000002ce534 g DF .text 0000000000000084 _ZN7android8String165setToEPKDs +0000000000823680 w DO .rodata 0000000000000044 _ZTSNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +0000000000151e38 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E29_nn_sf_sync_GetNetworkProfileENS0_3OutINS6_2sf18NetworkProfileDataEvEERKNS_4util4UuidE +000000000022cf08 g DF .text 0000000000000048 _ZN2nn3hid26ResetAccelerometerPlayModeERKNS0_19SixAxisSensorHandleE +000000000003c24c g DF .text 0000000000000148 _ZN2nn4util8BitArray9LeftShiftEPS1_RKS1_i +00000000002cb00c g DF .text 000000000000000c _ZN7android4Rect11makeInvalidEv +0000000000823d40 w DO .rodata 0000000000000046 _ZTSNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000025adec g DF .text 0000000000000234 nvdcutilVirtualEdidEnable +00000000003989d4 g DF .text 000000000000011c __cxa_rethrow_primary_exception +00000000007be1e0 w DO .rodata 0000000000000154 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000001256e4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000270694 g DF .text 0000000000000098 NvRmMemHandleRemoveExportForAruid +000000000022cbf0 g DF .text 0000000000000044 _ZN2nn3hid17StopSixAxisSensorERKNS0_19SixAxisSensorHandleE +00000000000e8e78 g DF .text 000000000000002c ec_enc_init +0000000000355544 g DF .text 00000000000000dc _ZNKSt3__15ctypeIwE10do_tolowerEPwPKw +0000000000343fc4 w DF .text 000000000000005c _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIwEE +00000000001915fc g DF .text 00000000000000e4 _ZN2nn5audio26CreateAudioInManagerByHipcEv +0000000000077910 g DF .text 0000000000000254 nnmem_nlib_fd_readv +00000000003c356c w DF .text 0000000000000014 versionsort64 +0000000000169c28 g DF .text 0000000000000048 _ZN2nn8settings6system13SetNfcEnabledEb +000000000016906c g DF .text 0000000000000050 _ZN2nn8settings6system17GetKeyboardLayoutEv +0000000000122588 g DF .text 0000000000000060 _ZN2nn7friends17NotificationQueueD1Ev +0000000000180898 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E34_nn_sf_sync_GetStandardSteadyClockENS0_3OutINS0_13SharedPointerINS7_12ISteadyClockEEEvEE +00000000003cf144 g DF .text 0000000000000098 tan +000000000022d130 g DF .text 0000000000000044 _ZN2nn3hid5debug37SetShiftAccelerometerCalibrationValueERKNS0_19SixAxisSensorHandleEff +00000000000c3fbc g DF .text 00000000000002bc _ZN2nn2am33InitializeOverlayAppletInterfacesEv +00000000000729ac g DF .text 00000000000000b4 nnmem_nlib_wprintf +000000000015c28c g DF .text 00000000000000c8 _ZN2nn2oe28SetFocusHandlingModeForDebugEbbbb +00000000002caf14 g DF .text 0000000000000064 _ZN7android19GraphicBufferMapper11unlockAsyncEPK13native_handlePi +000000000014b5c4 g DF .text 0000000000000028 _ZN2nn3ngc6detail16NullOutputStreamC1Ev +000000000097d318 g DO .data 0000000000000048 _ZTVNSt3__114error_categoryE +00000000002547b4 g DF .text 0000000000000060 _ZN2nn3web38ShowApplicationLegalInformationPageArgC2ERKNS_13ApplicationIdEPKc +0000000000071dec g DF .text 000000000000002c nnmem_nlib_condrwlock_destroy +0000000000956d60 g DO .data 0000000000000050 _ZN2nn5audio13__FdnDelayLenE +000000000019d024 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail12IAudioDeviceES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl15AudioDeviceImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6Object12AddReferenceEv +00000000000a1b84 g DF .text 0000000000000004 nnsocketInetHtonl +000000000016be00 g DF .text 0000000000000070 _ZN2nn8settings6detail28SetInRepairProcessEnableFlagEb +000000000016e5d4 g DF .text 0000000000000070 _ZN2nn8settings6detail23SetExternalRtcResetFlagEb +0000000000327008 g DF .text 0000000000000010 _ZNSt3__16futureIvED2Ev +00000000003c25ac w DF .text 0000000000000018 isblank_l +0000000000179844 g DF .text 00000000000000a0 _ZN2nn3ssl10Connection29GetNeededServerCertBufferSizeEPj +000000000036e0f4 g DF .text 0000000000000028 _ZSt13set_terminatePFvvE +0000000000090834 g DF .text 000000000000005c _ZN2nn2os18CreateSharedMemoryEPNS0_16SharedMemoryTypeEmNS0_16MemoryPermissionES3_ +0000000000090c14 g DF .text 000000000000008c _ZN2nn2os21DestroyTransferMemoryEPNS0_18TransferMemoryTypeE +0000000000189f24 g DF .text 000000000000002c _ZN2nn5audio26SetPerformanceDetailTargetEPNS0_19AudioRendererConfigEPKNS0_9VoiceTypeE +00000000002c979c g DF .text 000000000000011c _ZN7android13GraphicBufferC1EP19ANativeWindowBufferb +00000000000be49c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account24IBaasAccessTokenAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6Object12AddReferenceEv +00000000000a1b80 g DF .text 0000000000000004 nnsocketInetHtons +0000000000165480 g DF .text 0000000000000020 _ZN2nn5prepo10PlayReport3AddEPKcRKNS0_10Any64BitIdE +000000000008fd50 g DF .text 0000000000000064 _ZN2nn2os21SdkRecursiveMutexType7TryLockEv +0000000000356c04 g DF .text 0000000000000024 _ZNSt3__17codecvtIcc11__mbstate_tED0Ev +00000000000b0f94 g DF .text 0000000000000068 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferItEElPhmRKT_ +000000000014f5a0 g DF .text 0000000000000018 _ZNK2nn3ngc6detail15CompressedArray7MemSizeEv +0000000000167d48 g DF .text 0000000000000050 _ZN2nn8settings6system28GetHeadphoneVolumeUpdateFlagEv +00000000003d294c g DF .text 000000000000001c mbsinit +00000000001b61a8 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor8GetBuildEv +00000000003cb1dc g DF .text 000000000000000c lgamma +000000000018e984 g DF .text 00000000000000ac _ZN2nn5audio30ResampleOutputGetNextFrameSizeEPNS0_14ResamplerStateEiiiPi +00000000002c396c g DF .text 000000000000002c _ZN7android14SurfaceControl8setLayerEi +00000000002cda98 g DF .text 0000000000000008 _ZNK7android7RefBase11getWeakRefsEv +0000000000089a5c g DF .text 000000000000010c _ZN2nn7nlibsdk4heap10CachedHeap5QueryEiz +00000000007cdbe0 w DO .rodata 00000000000000b1 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000960ca0 g DO .data 0000000000000028 _ZTIN7android7IBinderE +0000000000100684 g DF .text 0000000000000054 silk_autocorr +00000000001c638c w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_3mii6detail21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_16IDatabaseServiceEEEvi +00000000003e4e80 g DF .text 0000000000000038 sleep +000000000094e168 w DO .data 0000000000000098 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IApplicationProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000d3c08 g DF .text 00000000000000dc _ZN2nn6applet18PushToContextStackENS0_23LibraryAppletSelfHandleENS0_13StorageHandleE +0000000000231dbc w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E32_nn_sf_sync_CreateAppletResourceENS0_3OutINS0_13SharedPointerINS5_15IAppletResourceEEEvEENS_6applet20AppletResourceUserIdE +000000000008e4e8 g DF .text 000000000000003c _ZN2nn2os33AttachReadableHandleToSystemEventEPNS0_15SystemEventTypeEjbNS0_14EventClearModeE +00000000001381d4 w DF .text 00000000000001c8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm88EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +0000000000951430 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001b307c g DF .text 0000000000000104 _ZN2nn2ec6detail15ShowShopPageArg18SetCallbackableUrlEPKc +0000000000235100 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E32_nn_sf_sync_ActivateAudioControlEv +000000000010d5e8 g DF .text 0000000000000278 compute_stereo_width +000000000018d2cc g DF .text 0000000000000024 _ZN2nn5audio6common10NodeStatesC1Ev +0000000000361a40 w DF .text 0000000000000004 _ZdaPvRKSt9nothrow_t +00000000000bbe2c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE17GetCmifBaseObjectEv +000000000002e70c g DF .text 0000000000000008 _ZNK2nn5image11JpegDecoder25GetAnalyzedWorkBufferSizeEv +0000000000146850 g DF .text 00000000000000b8 _ZN2nn3ngc6detail12BinaryWriter11WriteStreamEv +000000000017aa28 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E12GetProxyInfoEv +00000000001c0714 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetMoleScaleEv +000000000036b8b0 g DF .text 0000000000000010 _ZNKSt3__112strstreambuf6pcountEv +00000000001b32f4 g DF .text 0000000000000008 _ZNK2nn2ec6detail19ShopPageReturnValue10GetLastUrlEv +0000000000091300 g DF .text 0000000000000004 nnosGetCurrentThread +0000000000959d48 w DO .data 00000000000000f0 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000003295d8 w DF .text 0000000000000038 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9sputbackcEw +0000000000233ef0 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E17GetCmifBaseObjectEv +000000000023016c g DF .text 0000000000000004 _ZN2nn3hid15VibrationTargetD1Ev +0000000000955e90 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +0000000000088a44 g DF .text 0000000000000060 _ZN2nn7nlibsdk4heap11CentralHeap8FinalizeEv +000000000023242c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E26_nn_sf_sync_DisconnectNpadENS_6applet20AppletResourceUserIdEj +00000000003c91f0 w DF .text 00000000000000a4 pow10f +0000000000946e90 w DO .data 0000000000000028 _ZTIN2nn7account6detail24SimpleOAuthProcedureBaseE +0000000000296cf4 g DF .text 0000000000000018 _ZN7android10IInterfaceC2Ev +0000000000366444 w DF .text 0000000000000280 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertIPKwEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorISA_EE5valueENS_11__wrap_iterIPwEEE4typeENSB_IS8_EESA_SA_ +00000000001a28ac g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase18GetProcessingOrderEv +0000000000091534 g DF .text 0000000000000058 _ZN2nn2os6detail26ExpandUnsignedValueToAsciiEPcmi +00000000002989e0 g DF .text 000000000000003c _ZN7android11IMemoryHeapC2Ev +0000000000354654 g DF .text 00000000000000ac _ZNSt3__114collate_bynameIcEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +0000000000356d18 g DF .text 0000000000000024 _ZNSt3__17codecvtIwc11__mbstate_tED0Ev +00000000003cfdac g DF .text 0000000000000370 __rem_pio2 +00000000003c9294 w DF .text 00000000000000c0 pow10l +00000000002cad38 g DF .text 000000000000003c _ZN7android19GraphicBufferMapper6unlockEPK13native_handle +000000000039c950 g DF .text 0000000000000004 _Unwind_SetGR +000000000011fbf4 g DF .text 0000000000000158 _ZN2nn7friends9BlockUserEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdENS0_11BlockReasonE +000000000000a550 g DF .text 0000000000000018 _ZN2nn4cstd5IsNanEd +00000000001889cc g DF .text 000000000000001c _ZN2nn5audio10EffectInfoC1Ev +000000000000a534 g DF .text 000000000000001c _ZN2nn4cstd5IsNanEe +000000000000a568 g DF .text 0000000000000018 _ZN2nn4cstd5IsNanEf +0000000000062c70 g DF .text 000000000000018c _ZN2nn2fs6detail18OpenHostFileSystemEPNSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEPKcSB_ +00000000001596a4 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc24WriteSaveDataToFsForTestERKNS0_8SaveDataE +0000000000318f90 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000016a89c g DF .text 0000000000000088 _ZN2nn8settings7factory17GetSslCertificateEPNS1_14SslCertificateE +0000000000201e80 g DF .text 0000000000000084 FsLttComponent_done +00000000001b9484 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetMoleScaleEv +000000000016af20 g DF .text 0000000000000044 _ZN2nn8settings6system13SetTvSettingsERKNS1_10TvSettingsE +00000000002347fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E45_nn_sf_sync_AcquireNfcDeviceUpdateEventHandleENS0_3OutINS0_12NativeHandleEvEE +000000000028401c g DF .text 0000000000000090 NvDdkVicConfigure +00000000001bc884 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw9GetGlassYEv +00000000001b9834 g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw11SetHairTypeEi +0000000000319d30 w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm3EE27InitializeShimLibraryHolderINS_3pcv19IArbitrationManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESF_ +000000000002e5c0 g DF .text 0000000000000004 _ZN2nn5image11JpegDecoderD0Ev +000000000015c1b4 g DF .text 0000000000000060 _ZN2nn2oe22PopNotificationMessageEv +00000000001adfe0 g DF .text 0000000000000498 _ZN2nn5audio26I3dl2Reverb4ChannelMonoMixEPNS0_16I3dl2ReverbStateEPPKiPPij +000000000023a7f4 g DF .text 0000000000000008 _ZN2nn8irsensor6detail15IrSensorSession20FinalizeSharedMemoryEv +0000000000356c74 g DF .text 0000000000000008 _ZNKSt3__17codecvtIcc11__mbstate_tE13do_max_lengthEv +00000000003e6d70 g DF .text 000000000000000c __nnmusl_ProcessExit +00000000003e7d78 g DF .text 0000000000000014 pthread_getname_np +00000000000824f0 w DF .text 0000000000000004 nnmem_nlib_free_size +000000000021e638 g DF .text 0000000000000074 _ZN2nn3hid6detail16ActivateIrSensorERjNS_6applet20AppletResourceUserIdE +00000000003c91f0 g DF .text 00000000000000a4 exp10f +0000000000122cf8 g DF .text 0000000000000008 _ZNK2nn7friends14FriendPresence17GetLastUpdateTimeEv +0000000000359964 g DF .text 0000000000000108 _ZNKSt3__115__codecvt_utf16IDiLb0EE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_ +00000000001a0b88 g DF .text 0000000000000028 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_22AdpcmDataSourceCommandE +00000000003e27e0 g DF .text 0000000000000624 strstr +00000000003a4464 g DF .text 0000000000000038 __negvti2 +000000000022e274 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm14EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +000000000014013c g DF .text 00000000000000d0 _ZN2nn3nfp19OpenApplicationAreaERKNS0_12DeviceHandleEj +00000000001a0d14 g DF .text 0000000000000024 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_12DelayCommandE +00000000001cd96c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_DestroyStrayLayerEm +000000000023ad2c g DF .text 0000000000000050 _ZN2nn8irsensor35GetClusteringProcessorDefaultConfigEPNS0_25ClusteringProcessorConfigE +00000000003c9294 g DF .text 00000000000000c0 exp10l +0000000000358f04 g DF .text 0000000000000108 _ZNKSt3__115__codecvt_utf16IwLb0EE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_ +00000000007cf460 w DO .rodata 0000000000000159 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000803e80 w DO .rodata 0000000000000021 _ZTSN2nn3hid6detail14NpadSystemLifoE +00000000002322a0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E37_nn_sf_sync_SetGyroscopeZeroDriftModeENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleEj +0000000000001400 g DF .text 00000000000000b4 _ZN2nn6crypto16DecryptAes128CtrEPvmPKvmS3_mS3_m +0000000000186be0 g DF .text 000000000000004c _ZN2nn5audio21SetDelayChannelSpreadEPNS0_9DelayTypeEf +00000000001c4988 g DF .text 0000000000000520 _ZN2nn3mii6detail16Ver3StoreDataRaw18BuildFromStoreDataEPNS1_11UtilityImplERKNS1_12StoreDataRawE +000000000032b498 w DF .text 0000000000000090 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getERNS_15basic_streambufIcS2_EE +000000000000a700 g DF .text 0000000000000098 _ZN2nn5image6detail4jpeg20jpeg_suppress_tablesEPNS2_20jpeg_compress_structEb +0000000000049538 g DF .text 0000000000000288 _ZN2nn2fs24HierarchicalRomFileTable28FindParentDirectoryRecursiveEPjPNS1_8EntryKeyEPNS1_17DirectoryRomEntryEPNS0_11RomPathTool10PathParserEPKc +00000000009592d0 w DO .data 0000000000000018 _ZTIN2nn2sf4impl6detail16ImplTemplateBaseINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_EE +00000000008050b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi70EE4MaskE +00000000002cff44 g DF .text 0000000000000114 _ZN7android7String87toLowerEmm +00000000000c2474 g DF .text 0000000000000030 _ZNK2nn7account13ProfileEditor11GetNicknameEPNS0_8NicknameE +00000000003c239c g DF .text 000000000000017c encrypt +00000000001aff30 g DF .text 0000000000000010 _ZN2nn5audio3dsp20DspExceptionNotifierC2Ev +00000000000ba824 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEE19_nn_sf_sync_GetBaseENS0_3OutINS6_11ProfileBaseEvEE +0000000000175618 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm40ELm4ELl0EEEEEELm40ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm40ELm4EvEEj +00000000000cd07c w DF .text 0000000000000174 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm64ELm8ELl8EEENSG_ILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm72ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm64ELm8EvEENSR_ILm4ELm4EvEEST_j +00000000001a7bb0 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_10AuxCommandE +00000000007c3990 w DO .rodata 0000000000000021 _ZTSN2nn2sf22UnitHeapMemoryResourceE +0000000000121e78 g DF .text 000000000000000c _ZN2nn7friends11BlockedUserC2Ev +000000000003b8d8 g DF .text 0000000000000008 _ZNK2nn4util15RelocationTable7Section7GetSizeEv +0000000000160ca0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_IsPlayTimerAlarmDisabledENS0_3OutIbvEE +0000000000045cc4 g DF .text 0000000000000074 _ZN2nn4diag6detail26GetSdkAbortObserverManagerEv +000000000016c180 g DF .text 0000000000000070 _ZN2nn8settings6detail36SetExternalSteadyClockInternalOffsetEl +0000000000166544 g DF .text 0000000000000130 _ZN2nn5prepo6detail19PlayReportGenerator11AddKeyValueEPmPKcRKNS0_10Any64BitIdEPhmm +0000000000050ac4 g DF .text 00000000000001a4 _ZN2nn2fs23MountApplicationPackageEPKcS2_ +00000000001a93dc g DF .text 0000000000000188 _ZN2nn5audio11DecodePcm16EPiPKNS0_6common10WaveBufferEiiii +00000000003c2664 g DF .text 0000000000000010 __isprint_l +00000000009473e8 w DO .data 0000000000000070 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001d1fb8 w DF .text 0000000000000118 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSE_ILm8ELm8ELl8EEEEEELm16ELm16ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEESO_NSM_23InRawClientArgumentTypeILm8ELm8EvEESQ_j +0000000000092bd4 g DF .text 0000000000000030 _ZNK2nn2os6detail13TimeoutHelper19GetLeftTimeOnTargetEv +000000000039c97c g DF .text 0000000000000014 _Unwind_SetIP +0000000000005cd0 w DF .text 000000000000009c _ZNK2nn6crypto6detail7AesImplILm32EE12EncryptBlockEPvmPKvm +000000000094b8c0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000003c2e78 g DF .text 0000000000000008 toascii +00000000000bf4ec g DF .text 0000000000000098 _ZN2nn7account38ExternalNetworkServiceAccountRegistrar34RegisterNetworkServiceAccountAsyncEPNS0_12AsyncContextE +00000000007c9820 w DO .rodata 000000000000002b _ZTSN2nn2am7service24ITransferStorageAccessorE +00000000003dea1c g DF .text 000000000000007c vdprintf +000000000024ffac g DF .text 000000000000003c _ZN2nn3ldn22SetStationAcceptPolicyENS0_12AcceptPolicyE +000000000016b980 g DF .text 0000000000000070 _ZN2nn8settings6detail30GetHeadphoneVolumeWarningCountEPi +00000000000a1c5c w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_6socket2sf7IClientEED2Ev +0000000000805010 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi65EE4MaskE +0000000000264890 g DF .text 0000000000000014 NvOsAtomicExchange32 +0000000000363364 w DF .text 0000000000000194 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKcm +00000000001da154 g DF .text 00000000000000dc _ZN2nn6fontll18ScalableFontEngine22AcquireOtfKerningFirstEPKNS0_15OtfKerningTableEjj +000000000097dad0 g DO .data 0000000000000018 _ZTIN10__cxxabiv123__fundamental_type_infoE +00000000000d8638 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E44_nn_sf_sync_UnregisterBackgroundDeliveryTaskENS_13ApplicationIdE +0000000000962410 g DO .data 0000000000000018 _ZTIN7android11IMemoryHeapE +00000000007a87c0 g DO .rodata 000000000000001b _ZTSN2nn5image13ExifExtractorE +00000000001a9138 g DF .text 00000000000002a4 _ZN2nn5audio12GetAdpcmDataEPiPNS0_10VoiceStateEPKNS0_6common10WaveBufferEiiiiPKs +000000000021b354 g DF .text 00000000000001fc _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_16NpadFullKeyStateEiRKj +0000000000141128 g DF .text 000000000000001c _ZN2nn3ngc15ProfanityFilterC2EPvm +0000000000395e00 g DF .text 0000000000000014 _ZNSt16bad_array_lengthC2Ev +00000000000b3790 g DF .text 0000000000000184 _ZN2nn7account43DebugIntroduceExternalNetworkServiceAccountEPmmPNS0_33ExternalNetworkServiceAccountInfoEPvm +00000000001a7e1c g DF .text 00000000000001a4 _ZN2nn5audio3dsp16ReadAuxBufferDspEPNS0_10AuxInfoDspEmjPijjj +00000000001bef5c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetBirthMonthEv +00000000001ca7b0 g DF .text 0000000000000020 _ZN2nn5swkbd6detail18InlineKeyboardImpl9SetVolumeEf +00000000001cb4cc g DF .text 0000000000000088 _ZN2nn5swkbd6detail18InlineKeyboardImpl17CalcDecidedEnter_ENS_6applet13StorageHandleEm +00000000000bd0b4 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas29IOAuthProcedureForExternalNsaENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +0000000000120a3c g DF .text 00000000000000a0 _ZN2nn7friends37RequestListSummaryOverlayNotificationEv +000000000004d390 g DF .text 00000000000000f8 _ZN2nn2fs6detail18FileSystemAccessor24DumpUnclosedAccessorListEii +00000000001d00d8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_AcquireLayerTexturePresentingEventENS0_3OutINS0_12NativeHandleEvEEm +00000000009591d0 g DO .data 0000000000000018 _ZTIN2nn5audio6server14DeviceSinkInfoE +00000000003dea9c g DF .text 0000000000000c28 vfwscanf +00000000000998f8 g DF .text 0000000000000250 _ZN2nn2ro6detail8RoModule15RestoreVariableEPKcmm +0000000000190d58 g DF .text 0000000000000058 _ZN2nn5audio30GetAudioRendererMixBufferCountENS0_19AudioRendererHandleE +00000000001b97a4 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw18SetFacelineWrinkleEi +000000000018d0e0 g DF .text 0000000000000010 _ZN2nn5audio6common13NodeIdManager9GetNodeIdENS2_10NodeIdTypeEii +00000000001cdadc w DF .text 00000000000000b0 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectIN3nns9hosbinder16IHOSBinderDriverEEEvi +0000000000001e84 g DF .text 0000000000000010 _ZN2nn6crypto6detail6BigNum7CleanseEv +000000000011c4d0 g DF .text 00000000000000c0 _ZN2nn3err6detail11ReadVersionEPNS0_27ErrorMessageDatabaseVersionE +0000000000155eac g DF .text 0000000000000190 _ZN2nn4nifm22GetCurrentIpConfigInfoEP7in_addrS2_S2_S2_S2_ +000000000016df9c g DF .text 00000000000000c4 _ZN2nn8settings6detail18GetNetworkSettingsEPiPNS0_6system15NetworkSettingsEi +000000000018d734 g DF .text 0000000000000058 _ZN2nn5audio6common10NodeStates10ResetStateEv +000000000026cdd0 g DF .text 0000000000000008 NvRmSyncExtractSemaphore +0000000000191d48 w DF .text 0000000000000268 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENS7_17InRawArgumentInfoILm8ELm4ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEENS7_18OutRawArgumentInfoILm16ELm4ELl0EEENSD_ILi1ELi6ELm0EEENSF_ILm8ELm8ELl8EEEEEELm16ELm16ELb1EEESN_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSS_24BufferClientArgumentTypeENSS_23InRawClientArgumentTypeILm8ELm4EvEENSS_26InHandleClientArgumentTypeENSS_24OutRawClientArgumentTypeILm16ELm4EEESU_NSV_ILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000022d69c g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm10EEEvPNS0_16TouchScreenStateIXT_EEE +0000000000231d7c w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000005b7ac w DF .text 00000000000001e8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSI_ILm1ELm1ELl0EEEEEELm16ELm0ELb0EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENST_ILm1ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000c2794 g DF .text 000000000000004c _ZN2nn2am28GetLibraryAppletSelfAccessorEv +00000000000411d4 g DF .text 0000000000000018 _ZN2nn4diag6detail11nnText_diagEPKc +0000000000061120 g DF .text 0000000000000144 _ZN2nn2fs30GetGameCardUpdatePartitionInfoEPNS0_27GameCardUpdatePartitionInfoEj +00000000000c5ec4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_GetOperationModeENS0_3OutIhvEE +000000000015c214 g DF .text 000000000000006c _ZN2nn2oe25TryPopNotificationMessageEPj +0000000000246adc w DF .text 00000000000002cc _ZN22nerd_gillette_internal5otete11ImageCodec26DecodeItEEvRKNS_15StaticImageViewIT_EE +00000000003a7c54 g DF .text 0000000000000000 sqrt +00000000000ca7cc w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb1EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000000029d4 g DF .text 00000000000002e4 _ZN2nn6crypto6detail14bigint_mod_expEPjPKjS4_iS4_i +0000000000093c7c w DF .text 00000000000000a0 _ZN2nn2os6detail24VammManagerImplByHorizon21GetReservedRegionImplEPmS3_ +00000000009590e0 g DO .data 0000000000000018 _ZTIN2nn5audio6server15I3dl2ReverbInfoE +000000000023ac04 g DF .text 0000000000000128 _ZN2nn8irsensor30CalculateMomentRegionStatisticEPKNS0_20MomentProcessorStateERKNS0_4RectEiiii +00000000007f08a0 w DO .rodata 0000000000000040 _ZTSN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImplE +0000000000346f80 w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb1EE11do_groupingEv +0000000000167de0 g DF .text 0000000000000064 _ZN2nn8settings6system28NeedsToUpdateHeadphoneVolumeEPbPab +000000000017e6f0 g DF .text 00000000000000a4 _ZN2nn4time48CalculateStandardUserSystemClockDifferenceByUserERKNS0_13ClockSnapshotES3_ +0000000000329958 w DF .text 0000000000000044 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5uflowEv +00000000003a3148 g DF .text 000000000000012c __muloti4 +00000000003afbfc g DF .text 0000000000000114 j0 +00000000003b08b4 g DF .text 00000000000000f8 j1 +0000000000149334 g DF .text 0000000000000080 _ZNK2nn3ngc6detail2Bp8ToNodeIdEj +000000000017f950 g DF .text 0000000000000064 _ZN2nn4time23StandardUserSystemClock21GetSystemClockContextEPNS0_18SystemClockContextE +00000000003d32ec g DF .text 0000000000000028 wcstombs +0000000000081f88 g DF .text 0000000000000030 nnmem_nlib_fd_truncate +00000000003e21b4 w DF .text 0000000000000050 strdup +00000000001991b0 g DF .text 0000000000000118 _ZN2nn5audio11OpenAudioInEPNS0_7AudioInEPNS_2os11SystemEventEPKcRKNS0_16AudioInParameterE +000000000021ce08 g DF .text 00000000000000bc _ZN2nn3hid6detail21IsSixAxisSensorAtRestEPbRKNS0_19SixAxisSensorHandleE +00000000001a7b80 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_22AdpcmDataSourceCommandE +00000000001b5310 g DF .text 000000000000000c _ZN2nn2la27AppletToNifmArgumentsReaderC2Ev +0000000000225068 w DF .text 0000000000000204 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm11EEEEEiPT_i +0000000000125bc0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_GetNewlyFriendCountENS0_3OutIivEERKNS_7account3UidE +00000000003d0f40 g DF .text 000000000000000c __signbit +000000000004b334 g DF .text 00000000000000bc _ZN2nn2fs17FileHandleStorage5WriteElPKvm +0000000000133090 g DF .text 0000000000000064 _ZN2nn4htcs6AcceptEiPNS0_12SockAddrHtcsE +00000000001485f4 g DF .text 0000000000000504 _ZNK2nn3ngc6detail3Bp_9FindCloseEj +0000000000164510 g DF .text 0000000000000048 _ZN2nn5prepo6detail7msgpack19WriteSignedInteger8EPNS2_17OutputStreamParamEa +000000000017ae84 w DF .text 0000000000000068 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6Object7ReleaseEv +00000000001b1c48 g DF .text 0000000000000138 _ZN2nn2ec6detail28ShowShopAddOnContentListImplENS1_10LaunchModeENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdE +0000000000259f14 g DF .text 0000000000000008 nvdcGetPhysicalSize +000000000018da60 g DF .text 0000000000000024 _ZN2nn5audio11AllPassInitEPNS0_11FXDelayLineEjiPi +00000000001566e8 g DF .text 0000000000000018 _ZN2nn4nifm30PersistTemporaryNetworkProfileENS0_20NetworkProfileHandleE +0000000000174dd0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E48_nn_sf_sync_SetExternalSteadyClockInternalOffsetEl +0000000000096a20 g DF .text 00000000000000a0 _ZN2nn2os6detail38InternalConditionVariableImplByHorizon9TimedWaitEPNS1_23InternalCriticalSectionERKNS1_13TimeoutHelperE +00000000002b8798 g DF .text 00000000000001f0 _ZN7android16ISurfaceComposer11asInterfaceERKNS_2spINS_7IBinderEEE +00000000002273ec w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3hid10IHidServerEED2Ev +000000000022b388 g DF .text 0000000000000044 _ZN2nn3hid14DisconnectNpadERKj +0000000000152274 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E39_nn_sf_sync_SetBackgroundRequestEnabledEb +0000000000286b5c g DF .text 0000000000000104 NvRmGpuChannelCreate +00000000001c65c0 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E23_nn_sf_sync_BuildRandomENS0_3OutINS5_8CharInfoEvEEiii +00000000009797c0 g DO .data 0000000000000020 _ZTVNSt3__18ios_baseE +00000000001bcd40 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw15SetFacelineMakeEi +00000000001605e4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E46_nn_sf_sync_ConfirmResumeApplicationPermissionENS_3ncm13ApplicationIdERKNS0_7InArrayIaEEb +0000000000189654 g DF .text 0000000000000090 _ZNK2nn5audio17MemoryPoolManager12IsOverlappedEPvm +00000000001bcd60 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetEyeRotateEi +00000000001a3dc8 g DF .text 000000000000000c _ZNK2nn5audio6server10MixContext13GetSortedInfoEi +0000000000805490 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi101EE4MaskE +0000000000125650 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E45_nn_sf_sync_CreateDaemonSuspendSessionServiceENS0_3OutINS0_13SharedPointerINS7_28IDaemonSuspendSessionServiceEEEvEE +00000000001d5234 g DF .text 00000000000000b0 _ZN2nn2vi13ObjectManager28InvalidateDestroyLayerHolderENS_4util13IntrusiveListINS0_11LayerHolderENS2_27IntrusiveListBaseNodeTraitsIS4_S4_EEE8iteratorE +00000000001da5f4 g DF .text 00000000000000c8 _ZN2nn6fontll24ScalableFontEngineHelper6DecodeEPKvj +000000000032db20 w DF .text 0000000000000110 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getEv +00000000000c7894 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetAppletResourceUserIdENS0_3OutINS_6applet20AppletResourceUserIdEvEE +00000000001c78dc g DF .text 0000000000000004 _ZN2nn3mii13AppletManagerD2Ev +00000000002cb3bc g DF .text 0000000000000084 _ZN7android6RegionC1ERKNS_4RectE +00000000002cbe8c g DF .text 0000000000000008 _ZNK7android6Region5mergeERKNS_4RectE +0000000000324560 g DF .text 00000000000000bc _ZNSt3__124__libcpp_debug_exceptionC2ERKNS_19__libcpp_debug_infoE +00000000001340d4 g DF .text 0000000000000038 _ZN2nn4htcs6detail25virtual_socket_collectionC1Ev +000000000002fb78 g DF .text 00000000000000f0 _ZN2nn5image11ExifBuilder5BuildEPvmRKNS0_9DimensionE +000000000016bf50 g DF .text 0000000000000070 _ZN2nn8settings6detail30GetExternalSteadyClockSourceIdEPNS_4util4UuidE +0000000000955038 w DO .data 0000000000000090 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000007be4a0 w DO .rodata 0000000000000027 _ZTSN2nn7account4baas18IGuestLoginRequestE +00000000002329bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_GetNpadCommunicationModeENS0_3OutIlvEE +0000000000824020 g DO .rodata 0000000000000001 _ZNSt3__110adopt_lockE +000000000022f578 g DF .text 0000000000000008 _ZNK2nn3hid23VibrationNodeConnection9GetSourceEv +00000000007e6b50 w DO .rodata 000000000000017d _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +0000000000286e64 g DF .text 000000000000000c NvRmGpuRegOpsSessionPerfbufUnmap +00000000000d4f44 g DF .text 0000000000000044 _ZN2nn4bcat6detail25DeliveryCacheProgressImpl26NotifyStartCommitDirectoryERKNS0_13DirectoryNameE +000000000005ffe4 g DF .text 0000000000000138 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter12DoRenameFileEPKcS4_ +000000000018d830 g DF .text 000000000000000c _ZN2nn5audio6common25GetInitialReleaseRevisionEv +00000000007c1400 w DO .rodata 00000000000001a0 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas14IAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000000f15d4 g DF .text 0000000000000244 silk_LP_variable_cutoff +00000000007ce3d0 w DO .rodata 00000000000000b4 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +0000000000156e34 g DF .text 0000000000000014 _ZN2nn4nifm7Request14GetSystemEventEv +0000000000160d40 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_DisableAllFeaturesENS0_3OutIbvEE +00000000001a7b74 g DF .text 0000000000000004 _ZN2nn5audio6common21DumpCommandListHeaderEPKNS0_17CommandListHeaderE +00000000000093bc w DF .text 0000000000000004 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE7GfMultHEPNS4_5BlockE +00000000007c0120 w DO .rodata 0000000000000186 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEEE +000000000013db58 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3nfp6detail5IUserEE19FunctionForBoolTypeEv +000000000016c500 g DF .text 0000000000000070 _ZN2nn8settings6detail20SetBacklightSettingsERKNS0_6system17BacklightSettingsE +000000000004cc74 g DF .text 0000000000000014 _ZN2nn2fs6detail17DirectoryAccessorC2EONSt3__110unique_ptrINS0_3fsa10IDirectoryENS3_14default_deleteIS6_EEEERNS1_18FileSystemAccessorE +00000000000be37c w DF .text 0000000000000008 _ZN2nn2sf22UnitHeapMemoryResource11do_allocateEmm +0000000000368e88 g DF .text 00000000000001e0 _ZNSt3__14stodERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPm +0000000000975db0 g DO .data 0000000000000018 _ZTIN7android7RefBaseE +00000000003b14fc g DF .text 00000000000003cc jn +0000000000344638 g DF .text 000000000000029c _ZNSt3__118__time_get_storageIcEC2EPKc +00000000000476ac w DF .text 0000000000000020 _ZN2nn2fs10SubStorageD2Ev +00000000001b9bc8 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw16SetEyebrowAspectEi +00000000001b57f0 g DF .text 00000000000000a0 _ZNK2nn2la21CommonArgumentsWriter14WriteToStorageENS_6applet13StorageHandleE +00000000007b8dc0 w DO .rodata 000000000000002d _ZTSN2nn2sf4cmif6server22CmifDomainServerObjectE +000000000016c420 g DF .text 0000000000000070 _ZN2nn8settings6detail44SetUserSystemClockAutomaticCorrectionEnabledEb +00000000002d1f54 g DF .text 0000000000000014 _ZN7android16SortedVectorImplD2Ev +0000000000355b74 g DF .text 0000000000000190 _ZNSt3__112ctype_bynameIcEC1EPKcm +000000000003cda4 g DF .text 00000000000000c0 _ZN2nn4util6detail16IntrusiveDicImpl8MoveIterEPKNS0_16IntrusiveDicNodeEi +000000000008f334 g DF .text 000000000000002c _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEj +000000000004e308 g DF .text 0000000000000090 _ZN2nn2fs6detail10MountTable4FindEPPNS1_18FileSystemAccessorEPKc +00000000000c0ef0 g DF .text 0000000000000028 _ZN2nn7account34NetworkServiceAccountAdministrator43InvalidateNetworkServiceAccountIdTokenCacheERKNS_13ApplicationIdE +0000000000347528 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb0EE16do_positive_signEv +00000000000ceb28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_InitializeGamePlayRecordingEONS0_12NativeHandleEm +00000000000824fc g DF .text 0000000000000024 nnmem_nlib_mount_host_nx +0000000000046448 g DF .text 0000000000000040 _ZN2nn4diag6detail17GetSymbolSizeImplEm +00000000007c4bd0 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001b6800 g DF .text 000000000000001c _ZN2nn3mii6detail15BufferAllocator7AlignUpEm +00000000003138e0 g DF .text 0000000000000014 _ZN2nn3fgm7RequestC2Ev +00000000001aa6b4 g DF .text 000000000000001c _ZN2nn5audio3dsp25MailBoxImplByMessageQueue4SendEi +0000000000164468 g DF .text 0000000000000030 _ZN2nn5prepo6detail7msgpack8WriteNilEPNS2_17OutputStreamParamE +00000000001b66cc g DF .text 0000000000000004 _ZNK2nn3mii9StoreDataeqERKS1_ +00000000002cbd3c g DF .text 0000000000000018 _ZN7android6Region7xorSelfERKS0_ +0000000000946ff0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEEE +00000000001c02f4 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetBeardColorEv +00000000000b5fcc w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEE12GetProxyInfoEv +0000000000946fd0 w DO .data 0000000000000018 _ZTIN2nn7account29IAccountServiceForApplicationE +00000000001525a0 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail12IScanRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +00000000001fc40c g DF .text 0000000000000074 fsg_IncrementElement +00000000003614fc g DF .text 0000000000000094 _ZNSt3__121recursive_timed_mutexD2Ev +000000000021a114 g DF .text 0000000000000070 _ZN2nn3hid6detail22SetMouseAutoPilotStateERKNS0_5debug19MouseAutoPilotStateE +00000000003e3454 g DF .text 000000000000003c wcsnlen +0000000000081ce4 g DF .text 0000000000000018 nnmem_nlib_write_stdout +00000000000ffb18 g DF .text 0000000000000130 silk_stereo_decode_pred +00000000001347e4 g DF .text 00000000000000dc _ZN2nn4htcs6detail25virtual_socket_collection9GetSocketEiPi +000000000022abbc g DF .text 00000000000000b8 _ZN2nn3hid15KeyCodeComposer13FlushAltCodesEv +00000000001b8be0 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw13GetRegionMoveEv +00000000000a18ac g DF .text 0000000000000004 _ZN2nn6socket8ShutdownEii +000000000007993c g DF .text 00000000000000dc nnmem_nlib_crc32c +000000000095a830 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000804b70 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi28EE4MaskE +00000000007b8e40 w DO .rodata 000000000000002e _ZTSN2nn2sf4cmif6server23CmifServerDomainManagerE +00000000000af654 g DF .text 00000000000000cc _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfI8addrinfoEEmRKT_ +00000000001b620c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor10GetEyeTypeEv +00000000002922e0 g DF .text 00000000000000e4 NvWsiPixmapCreate +00000000003d0f4c g DF .text 000000000000000c __signbitf +00000000003ac084 g DF .text 0000000000000004 pwrite +000000000008e3b8 g DF .text 0000000000000028 _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEPNS0_14TimerEventTypeE +00000000000b1038 g DF .text 0000000000000068 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferIjEElPhmRKT_ +00000000001cb614 g DF .text 0000000000000088 _ZN2nn5swkbd6detail18InlineKeyboardImpl20CalcMovedCursorUtf8_ENS_6applet13StorageHandleEm +0000000000230ea8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E36_nn_sf_sync_DeactivateFirmwareUpdateEv +00000000003ab0dc w DF .text 0000000000000004 pthread_join +000000000008f974 g DF .text 000000000000002c _ZN2nn2os30IsWriteLockHeldByCurrentThreadEPKNS0_20ReaderWriterLockTypeE +000000000016d454 g DF .text 0000000000000070 _ZN2nn8settings6detail23SetUsbFullKeyEnableFlagEb +00000000002cdbd0 g DF .text 0000000000000014 _ZN7android7RefBase20extendObjectLifetimeEi +00000000002cd480 g DF .text 0000000000000078 _ZN7android12NativeHandle6createEP13native_handleb +00000000003ac090 g DF .text 0000000000000008 unlink +00000000003c2624 w DF .text 0000000000000010 isgraph_l +000000000036d440 g DF .text 0000000000000018 _ZNSt3__119__libcpp_mutex_lockEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +0000000000958b20 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail14IAudioRendererES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl17AudioRendererImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6ObjectE +00000000003d0f58 g DF .text 0000000000000014 __signbitl +00000000007e90c4 g DO .rodata 0000000000000004 _ZN2nn5audio22AudioRendererParameter24PerformanceFrameCountMaxE +000000000080d820 w DO .rodata 000000000000014b _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail20IrSensorSystemServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000001bcf34 g DF .text 0000000000000038 _ZN2nn3mii6detail11UtilityImpl9GetRandomEii +00000000003d1b6c w DF .text 0000000000000088 __xpg_basename +00000000000422e0 g DF .text 0000000000000058 _ZN2nn4edid6detail26GetDetailedTimingSyncTypesEh +0000000000064e7c g DF .text 0000000000000264 _ZN2nn2fs22QueryMountRomCacheSizeEPm +000000000006a7dc g DF .text 0000000000000148 _ZN2nn2fs36CorruptSaveDataThumbnailFileForDebugEmNS0_6UserIdE +00000000000b13b0 g DF .text 0000000000000004 _ZN2nn6socket6detail11GetAddrInfoEPKcS3_PK8addrinfoPPS4_PKNS0_14ResolverOptionEm +0000000000179e40 g DF .text 000000000000002c nnsslContextGetContextId +0000000000062fc4 g DF .text 0000000000000168 _ZN2nn2fs19MountImageDirectoryEPKcNS0_16ImageDirectoryIdE +000000000017f604 g DF .text 0000000000000094 _ZN2nn4time30GetStandardSteadyClockRtcValueEv +00000000002862f8 g DF .text 0000000000000048 nvgr_get_fence +0000000000122054 g DF .text 0000000000000170 _ZNK2nn7friends6Friend15GetProfileImageEPmPvm +00000000003569d8 g DF .text 0000000000000064 _ZNKSt3__112ctype_bynameIwE8do_widenEc +00000000003e5368 g DF .text 000000000000018c __nnmusl_FileRead +00000000000ea810 g DF .text 000000000000007c celt_rsqrt_norm +00000000001a204c g DF .text 00000000000001c4 _ZN2nn5audio6server18PerformanceManager13CopyHistoriesEPvm +00000000003222cc w DF .text 00000000000002d4 _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIffEEPfEEbT0_S5_T_ +00000000000a05d8 g DF .text 0000000000000004 _ZN2nn2sf4hipc24AttachWaitHolderForReplyEPNS_2os19MultiWaitHolderTypeENS_3svc6HandleE +00000000003dd610 g DF .text 00000000000000c4 __fseeko +00000000000bda50 g DF .text 0000000000000024 _ZN2nn7account12AsyncContext9GetResultEv +0000000000117cf4 g DF .text 0000000000000008 _ZNK2nn5codec30HardwareOpusMultiStreamDecoder20GetStereoStreamCountEv +000000000039879c g DF .text 0000000000000050 __cxa_decrement_exception_refcount +000000000009daa0 w DF .text 0000000000000008 _ZNK2nn2sf4hipc6server17HipcServerMessage12GetInObjectsEPNS0_4cmif6server20CmifServerObjectInfoE +00000000001ce874 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_SetDisplayCmuModeEmj +00000000007ae4f0 g DO .rodata 0000000000000040 _ZN2nn4util18MatrixRowMajor4x3f12ConstantZeroE +0000000000160460 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_4pctl6detail3ipc23IParentalControlServiceEEEvi +000000000016b248 g DF .text 0000000000000078 _ZN2nn8settings7factory24GetWirelessLanMacAddressEPNS1_10MacAddressE +0000000000256df0 g DF .text 0000000000000008 _ZNK2nn3web18WebPageReturnValue10GetLastUrlEv +00000000002c3a38 g DF .text 0000000000000034 _ZN7android14SurfaceControl8setFlagsEjj +00000000007bf9a0 w DO .rodata 000000000000002d _ZTSN2nn7account4baas24IManagerForSystemServiceE +000000000016ea34 g DF .text 0000000000000070 _ZN2nn8settings6detail15GetSerialNumberEPNS0_7factory12SerialNumberE +000000000024ecb0 w DF .text 000000000000004c _ZN2nn6capsrv12LibraryStateD2Ev +00000000002d0ee0 g DF .text 0000000000000040 _ZTv0_n24_N7android6ThreadD0Ev +00000000001d54a4 g DF .text 000000000000000c _ZN2nn2vi13ObjectManager12GetLayerLockEv +000000000094eb48 w DO .data 0000000000000078 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +00000000001b6724 g DF .text 000000000000000c _ZN2nn3mii20GetSpecialMiiKeyCodeEv +00000000002292a8 g DF .text 0000000000000044 _ZN2nn3hid5debug21FinalizeInputDetectorEv +0000000000a82ad8 g DO .bss 0000000000000008 __progname +00000000000b3208 g DF .text 00000000000000b8 _ZN2nn7account11GetNicknameEPNS0_8NicknameERKNS0_3UidE +000000000025cf6c g DF .text 0000000000000004 NvOsRealloc +00000000002a1bf0 g DF .text 0000000000000164 _ZN7android12ProcessState16getContextObjectERKNS_8String16ERKNS_2spINS_7IBinderEEE +00000000000d48f8 g DF .text 00000000000000f8 _ZN2nn6applet34RequestToLaunchApplicationForQuestENS_3ncm13ApplicationIdENS0_13StorageHandleEPKNS0_28ApplicationAttributeForQuestE +00000000003b9100 g DF .text 000000000000007c memset_s +000000000016812c g DF .text 0000000000000050 _ZN2nn8settings6system18IsBluetoothEnabledEv +000000000034ecd8 w DF .text 0000000000000394 _ZNKSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_bRNS_8ios_baseEwRKNS_12basic_stringIwS3_NS_9allocatorIwEEEE +000000000004b0e4 g DF .text 0000000000000020 _ZN2nn2fs26FileStorageBasedFileSystemC2Ev +00000000000b189c g DF .text 000000000000002c _ZNK2nn7account10UiSettings35GetNintendoAccountStartupDialogTypeEv +0000000000190658 g DF .text 0000000000000120 _ZN2nn5audio30GetAudioRendererWorkBufferSizeERKNS0_22AudioRendererParameterE +0000000000179a78 g DF .text 000000000000001c _ZN2nn3ssl10Connection10CipherInfoC1Ev +00000000001d53f4 g DF .text 0000000000000058 _ZN2nn2vi13ObjectManager25CreateValidateLayerHolderEmPNS0_13DisplayHolderE +00000000002cb0b4 g DF .text 0000000000000028 _ZN7android4Rect8offsetByEii +0000000000a80cd0 w DO .bss 0000000000000010 _ZNSt3__110moneypunctIwLb1EE2idE +000000000004ac58 g DF .text 000000000000001c _ZN2nn2fs11FileStorageC1Ev +0000000000139814 g DF .text 00000000000000d8 _ZN2nn3nfc14GetDeviceStateERKNS0_12DeviceHandleE +00000000002956d0 g DF .text 0000000000000088 _ZN7android9BpRefBaseC2ERKNS_2spINS_7IBinderEEE +000000000032c610 w DF .text 0000000000000028 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED0Ev +0000000000328a34 g DF .text 000000000000008c _ZNSt3__18ios_base5imbueERKNS_6localeE +00000000000bf00c g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService15GetEmailAddressEPm +00000000001992c8 g DF .text 000000000000013c _ZN2nn5audio12CloseAudioInEPNS0_7AudioInE +0000000000822ff0 g DO .rodata 0000000000000016 _ZTSNSt3__16locale5facetE +00000000007b85b0 g DO .rodata 0000000000000029 _ZTSN2nn2os6detail23MultiWaitHolderOfThreadE +0000000000955690 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +00000000001a0ce4 g DF .text 0000000000000008 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_19DepopPrepareCommandE +0000000000122214 g DF .text 0000000000000008 _ZNK2nn7friends15FriendCandidate12GetAccountIdEv +00000000003d333c g DF .text 0000000000000034 erand48 +000000000003b77c g DF .text 0000000000000014 _ZN2nn4util16BinaryFileHeader13GetFirstBlockEv +0000000000233fa8 w DF .text 00000000000001f4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi9ELm0EEENSD_ILi1ELi9ELm0EEEEEELm8ELm0ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_24BufferClientArgumentTypeESO_j +000000000028685c g DF .text 000000000000000c NvRmGpuDeviceGetCpuTimeCorrelationInfo +00000000000d0f34 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E30_nn_sf_sync_GetPerformanceModeENS0_3OutINS5_15PerformanceModeEvEE +0000000000229264 g DF .text 0000000000000044 _ZN2nn3hid6system19NotifyInputDetectorERKNS_4util10BitFlagSetILi32ENS1_13InputSourceIdEEE +000000000024cc1c g DF .text 0000000000000008 _ZNK2nn5album12LibraryState16IsAlbumAvailableEv +00000000001a7bbc g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_13ReverbCommandE +00000000007cbf40 w DO .rodata 0000000000000103 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IOverlayAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000019064c g DF .text 000000000000000c _ZN2nn5audio26CreateAudioRendererManagerEb +0000000000244ed0 w DF .text 0000000000000b10 _ZN22nerd_gillette_internal5otete11ImageCodec213EncodeInPlaceINS0_17MaxSizedBitStreamILm300EEENS_15StaticImageViewIKhEEEEbRT_RKNS5_IhEERKT0_ +000000000095a700 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000363b60 w DF .text 0000000000000044 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKc +00000000000b73bc w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas18IGuestLoginRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +00000000007cfbd0 w DO .rodata 0000000000000107 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000014b368 g DF .text 00000000000000e8 _ZN2nn3ngc6detail12OutputStream6Flush_Eb +000000000023a640 g DF .text 0000000000000014 _ZN2nn8irsensor6detail15IrSensorSession34GetClusteringProcessorStateDefaultEPNS0_24ClusteringProcessorStateERKNS0_14IrCameraHandleE +000000000002ffc0 g DF .text 000000000000006c _ZNK2nn5image13ExifExtractor12ExtractModelEPm +00000000000a7c50 w DF .text 0000000000000218 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSE_ILm4ELm4ELl4EEENSE_ILm4ELm4ELl8EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEENSB_ILm4ELm4ELl8EEEEEELm12ELm12ELb0EEESL_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESS_NSQ_23InRawClientArgumentTypeILm4ELm4EvEESU_SU_NSQ_24BufferClientArgumentTypeESS_j +0000000000122508 g DF .text 0000000000000008 _ZNK2nn7friends23NintendoNetworkIdFriend12GetAccountIdEv +00000000001a5948 g DF .text 000000000000006c _ZNK2nn5audio6server9VoiceInfo22ShouldUpdateParametersEPKNS0_9VoiceInfo11InParameterE +000000000009f418 w DF .text 0000000000000010 _ZN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage20EndPreparingForReplyEv +0000000000155cf0 g DF .text 0000000000000058 _ZN2nn4nifm37GetResultHandlingNetworkRequestResultERKNS_6applet13StorageHandleE +00000000000ae280 g DF .text 000000000000003c _ZN2nn6socket8resolver3tls6Client17GetCurrentHostentEv +00000000000ca60c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000cff60 g DF .text 0000000000000080 _ZN2nn3apm14InitializeWithEONS_2sf13SharedPointerINS0_8IManagerEEE +0000000000122468 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest12GetRouteInfoEv +0000000000122d70 g DF .text 000000000000000c _ZN2nn7friends16UserPresenceViewC2Ev +00000000007adc6c g DO .rodata 0000000000000004 _ZN2nn4util8Color4u811SrgbDefaultE +0000000000113760 g DF .text 00000000000002ac mlp_process +0000000000002894 g DF .text 0000000000000140 _ZN2nn6crypto6detail15bigint_mod_multEPjPKjS4_S4_i +0000000000189ab0 g DF .text 0000000000000090 _ZN2nn5audio10MixManager20UpdateMixInParameterEPv +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__116__narrow_to_utf8ILm16EED2Ev +00000000001a4d48 g DF .text 0000000000000008 _ZNK2nn5audio6server12SinkInfoBase6IsUsedEv +00000000001a28e0 g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase8GetUsageEv +0000000000174b3c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_GetPtmFuelGaugeParameterENS0_3OutINS5_6system21PtmFuelGaugeParameterEvEE +00000000001eb780 g DF .text 0000000000001158 outline_graymap +0000000000359128 g DF .text 0000000000000014 _ZNKSt3__115__codecvt_utf16IwLb0EE13do_max_lengthEv +00000000003285b8 w DF .text 00000000000000c4 _ZNSt3__19basic_iosIcNS_11char_traitsIcEEE7copyfmtERKS3_ +000000000026cc28 g DF .text 0000000000000048 NvRmSyncCreateFromFd +00000000003c4c2c w DF .text 00000000000000bc nl_langinfo_l +00000000001511d0 g DF .text 0000000000000060 _ZN2nn4nifm6detail17ScanRequestClient6SubmitEv +000000000022d240 g DF .text 0000000000000044 _ZN2nn3hid6system20BindSleepButtonEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +000000000036d4a4 g DF .text 0000000000000018 _ZNSt3__126__libcpp_condvar_broadcastEPNSt13__libcxx_shim19__libcxx_shim_ver_132__libcxx_shim_condition_variableE +00000000000c1580 g DF .text 000000000000001c _ZN2nn7account42NintendoAccountAuthorizationRequestContext6CancelEv +00000000007d00e0 w DO .rodata 000000000000010c _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003e4864 g DF .text 000000000000004c wcsftime +00000000001b135c g DF .text 0000000000000048 _ZN2nn2ec16StringToCouponIdEPKc +0000000000078e84 g DF .text 0000000000000164 nnmem_nlib_mq_close +000000000009f16c w DF .text 0000000000000024 _ZNK2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage10GetBuffersEPNS0_6detail14PointerAndSizeE +00000000001a0a84 g DF .text 00000000000000d8 _ZN2nn5audio6server16CommandGenerator19GenerateSinkCommandEiPNS1_12SinkInfoBaseE +0000000000948318 w DO .data 0000000000000140 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas14IAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000000d8614 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E42_nn_sf_sync_RegisterBackgroundDeliveryTaskENS_13ApplicationIdEj +000000000018d24c g DF .text 0000000000000008 _ZNK2nn5audio6common10NodeStates5Stack5CountEv +00000000000914c0 g DF .text 0000000000000004 nnosMoveAllMultiWaitHolder +0000000000396340 g DF .text 0000000000000054 __cxa_vec_cleanup +000000000003b8e0 g DF .text 0000000000000168 _ZN2nn4util15RelocationTable8RelocateEv +00000000001144b4 g DF .text 000000000000001c opus_multistream_decode_float +00000000002a03bc g DF .text 0000000000000040 _ZNK7android6Parcel11readInplaceEm +00000000000446dc g DF .text 000000000000000c _ZN2nn4diag6detail18OnAssertionFailureENS0_13AssertionTypeEPKcS4_S4_i +000000000016c110 g DF .text 0000000000000070 _ZN2nn8settings6detail36GetExternalSteadyClockInternalOffsetEPl +00000000000c07b0 g DF .text 00000000000000a8 _ZN2nn7account34NetworkServiceAccountAdministrator23SynchronizeProfileAsyncEPNS0_12AsyncContextE +00000000001aa690 g DF .text 0000000000000024 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue5CloseEv +00000000003550f8 g DF .text 0000000000000104 _ZNKSt3__114collate_bynameIwE12do_transformEPKwS3_ +00000000001c57a0 g DF .text 0000000000000024 _ZNK2nn3mii8Database8GetIndexEPiRKNS0_8CharInfoE +00000000001fcc48 g DF .text 0000000000000454 which_script +00000000003c2e0c g DF .text 0000000000000024 __iswxdigit_l +0000000000091150 w DF .text 0000000000000024 _ZN2nn2os6detail26ThreadManagerImplByHorizon15ExitProcessImplEv +000000000009f428 w DF .text 0000000000000170 _ZN2nn2sf4hipc6server34HipcServerSessionManagerWithDomain15HipcManagerImpl21CopyFromCurrentDomainENS0_3OutINS0_12NativeHandleEvEENS0_4cmif18CmifDomainObjectIdE +00000000001b6680 g DF .text 0000000000000014 _ZN2nn3mii12GetMoleColorENS0_9GammaTypeE +0000000000223050 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm8EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +0000000000125f48 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E32_nn_sf_sync_DropFriendNewlyFlagsERKNS_7account3UidE +0000000000156d74 g DF .text 000000000000007c _ZN2nn4nifm30IsWirelessCommunicationEnabledEv +000000000022e484 g DF .text 0000000000000098 _ZN2nn3hid6system28GetUniquePadBluetoothAddressEPNS_9bluetooth7AddressENS1_11UniquePadIdE +000000000029f150 g DF .text 00000000000000dc _ZN7android6Parcel12writeCStringEPKc +000000000039f134 g DF .text 0000000000000040 __ashrdi3 +0000000000096e54 w DF .text 0000000000000084 _ZN2nn2os6detail30StackGuardManagerImplByHorizon23GetStackGuardEndAddressEv +00000000002d0abc g DF .text 00000000000000ec _ZNK7android7String811getBasePathEv +00000000001526b4 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4nifm6detail21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_8IRequestEEEvi +00000000003ab0f4 w DF .text 0000000000000004 pthread_mutex_lock +000000000008e43c g DF .text 0000000000000028 _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEPNS0_18InterruptEventTypeE +0000000000239208 g DF .text 0000000000000008 _ZNK2nn8irsensor6detail19StatusManagerHolder21GetSharedMemoryHandleEv +00000000002d1468 g DF .text 000000000000002c _ZN7android6Thread18requestExitAndWaitEv +000000000006f874 g DF .text 0000000000000054 _ZN2nn4lmem21RestoreFrameHeapStateEPNS0_6detail8HeapHeadERKNS0_14FrameHeapStateE +0000000000166fc0 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5prepo6detail3ipc13IPrepoServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +00000000003a1570 g DF .text 000000000000007c __extendhfsf2 +00000000000922ec g DF .text 0000000000000038 _ZN2nn2os6detail10TlsManagerC2Ev +000000000014ddec g DF .text 000000000000007c _ZN2nn3ngc6detail9SparseSetD1Ev +00000000007d421a g DO .rodata 0000000000000003 silk_LTP_per_index_iCDF +000000000008a1ac g DF .text 0000000000000044 _ZNK2nn3mem17StandardAllocator16GetTotalFreeSizeEv +00000000001bcd7c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw16SetEyebrowRotateEi +000000000025a088 g DF .text 00000000000000d8 nvdcGetMode2 +00000000000af720 g DF .text 0000000000000224 _ZN2nn6socket8resolver10serializer13DNSSerializer16ToBufferInternalI8addrinfoEElPhmRKT_ +0000000000353f98 g DF .text 0000000000000010 _ZNKSt3__16locale4nameEv +000000000013d50c g DF .text 0000000000000028 _ZN2nn3nfp6client22IsCreatedUserInterfaceEv +000000000003bbc4 g DF .text 0000000000000010 _ZNK2nn4util15RelocationTable10GetSectionEi +00000000001529f0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E21_nn_sf_sync_SetGreedyEb +0000000000360d54 g DF .text 0000000000000018 _ZNSt3__114__shared_count12__add_sharedEv +00000000002218e0 g DF .text 000000000000019c _ZN2nn3hid6detail19GetTouchScreenStateILm1EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000003c3308 g DF .text 000000000000000c __ctype_toupper_loc +0000000000178500 g DF .text 0000000000000094 _ZN2nn3ssl10Connection15SetVerifyOptionENS1_12VerifyOptionE +00000000001878f0 g DF .text 0000000000000038 _ZN2nn5audio18GetReverbDecayTimeEPKNS0_10ReverbTypeE +000000000018841c g DF .text 0000000000000048 _ZN2nn5audio24SetI3dl2ReverbRoomHfGainEPNS0_15I3dl2ReverbTypeEf +00000000009b4098 w DO .bss 0000000000000008 _ZGVZN2nn7friends6detail17ShimLibraryGlobal11GetInstanceEvE10s_Instance +0000000000169af0 g DF .text 0000000000000044 _ZN2nn8settings6system23SetNotificationSettingsERKNS1_20NotificationSettingsE +00000000001b0018 g DF .text 0000000000000078 _ZN2nn5audio3dsp20DspExceptionNotifier18RemoveObserverImplEPFvPvE +000000000026cc70 g DF .text 00000000000000cc NvRmSyncCreateFromFdWithAttr +00000000000d1c2c w DF .text 00000000000000e0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJEEELm0ELm0ELb0EEESB_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectEj +000000000016d080 g DF .text 0000000000000070 _ZN2nn8settings6detail29GetErrorReportSharePermissionEPi +000000000032905c w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5sputnEPKcl +00000000008058b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi230EE4MaskE +00000000000b74e8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E28_nn_sf_sync_LoadIdTokenCacheENS0_3OutIjvEERKNS0_9OutBufferE +00000000002164a8 g DF .text 0000000000000060 _ZN2nn3hid5debug6detail28StartFirmwareUpdateForRevertENS0_6system11UniquePadIdE +000000000006ae50 g DF .text 0000000000000008 _ZN2nn2fs30SaveDataTransferSizeCalculator5ClearEv +00000000002cbb40 g DF .text 0000000000000018 _ZN7android6Region6orSelfERKNS_4RectE +000000000033aff8 w DF .text 00000000000004b0 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv +00000000000c0ec8 g DF .text 0000000000000028 _ZN2nn7account34NetworkServiceAccountAdministrator30InvalidateRequiredLicenseCacheERKNS_13ApplicationIdE +000000000023d518 g DF .text 000000000000007c _ZN22nerd_gillette_internal5otete7jaimev121DecodePacketPrefixROKERjmPKhmPm +00000000002320d8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E29_nn_sf_sync_StopSixAxisSensorENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +0000000000329858 w DF .text 0000000000000004 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6setbufEPwl +00000000008231c0 g DO .rodata 000000000000001c _ZTSNSt3__114__codecvt_utf8IwEE +000000000022e894 g DF .text 0000000000000048 _ZN2nn3hid26EnableUsbFullKeyControllerEb +000000000016825c g DF .text 0000000000000050 _ZN2nn8settings6system23IsBluetoothBoostEnabledEv +00000000001d5b00 g DF .text 0000000000000058 _ZN2nn2vi6detail22ServiceReferenceHolder16SetSystemServiceERKNS_2sf13SharedPointerINS_5visrv2sf21ISystemDisplayServiceEEE +000000000097bb38 w DO .data 0000000000000010 _ZTINSt3__120__time_get_c_storageIwEE +00000000001a2bbc g DF .text 0000000000000100 _ZN2nn5audio6server10ReverbInfo6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPKNS0_10EffectInfo11InParameterERNS1_10PoolMapperE +00000000001b4d58 g DF .text 0000000000000088 _ZN2nn2la33PushStorageToInteractiveInChannelEPvm +0000000000286ef4 g DF .text 000000000000000c NvRmGpuTaskSchedulingGroupEventIdControl +00000000000d9a18 g DF .text 000000000000028c compute_band_energies +00000000002c8d04 g DF .text 0000000000000008 _ZNK7android11DisplayEDID7getDataEv +0000000000151ff0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E43_nn_sf_sync_SetWirelessCommunicationEnabledEb +00000000001cff74 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_AllocateProcessHeapBlockENS0_3OutImvEEm +00000000000d18ec w DF .text 00000000000000e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEEj +000000000021af24 g DF .text 000000000000007c _ZN2nn3hid6detail30SetNpadJoyAssignmentModeSingleERKj +0000000000273a78 g DF .text 0000000000000008 NvRmChannelSetErrNotifier +00000000000c5e84 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_AllowToEnterSleepEv +0000000000178ba0 g DF .text 00000000000000b8 _ZN2nn3ssl10Connection20GetRenegotiationModeEPNS1_17RenegotiationModeE +0000000000253718 g DF .text 00000000000002b0 _ZN2nn3web22ShowOfflineHtmlPageArgC1Ev +0000000000318098 g DF .text 000000000000006c _ZN2nn3pcv22GetPowerClockInfoEventEPNS_2os15SystemEventTypeENS1_14EventClearModeE +000000000017f8e8 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_7timesrv6detail7service12ISteadyClockEE19FunctionForBoolTypeEv +00000000003597ac g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDsLb1EE16do_always_noconvEv +00000000000ea5d4 g DF .text 000000000000017c frac_div32 +000000000014dc94 g DF .text 0000000000000158 _ZN2nn3ngc6detail3Sbv6ImportEPNS1_12BinaryReaderE +0000000000157d0c g DF .text 000000000000002c _ZN2nn4nifm6detail16SsidListAccessor10GetVersionEPc +000000000032c570 w DF .text 0000000000000080 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEEC1EPNS_15basic_streambufIwS2_EE +00000000007cd430 w DO .rodata 0000000000000110 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000017b61c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E41_nn_sf_sync_GetNeededServerCertBufferSizeENS0_3OutIjvEE +0000000000066720 g DF .text 0000000000000118 _ZN2nn2fs21MountTemporaryStorageEPKc +00000000003bbab4 g DF .text 00000000000000c4 __ldexp_cexp +000000000004c5e4 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem18DoGetFreeSpaceSizeEPlPKc +0000000000064910 g DF .text 0000000000000110 _ZN2nn2fs11GetRightsIdEPNS0_8RightsIdENS_3ncm9ProgramIdENS3_9StorageIdE +000000000006d4f8 g DF .text 00000000000000d0 _ZN2nn3htc22CreateHtcManagerByHipcEv +0000000000030374 g DF .text 0000000000000080 _ZNK2nn5image13ExifExtractor15ExtractUniqueIdEPm +000000000017ead4 g DF .text 0000000000000010 _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTaskD1Ev +00000000009742e0 g DO .data 0000000000000098 _ZTCN7android23BnSurfaceComposerClientE0_NS_10IInterfaceE +00000000003e92ac g DF .text 000000000000000c __nnmusl_LocaleAddr +0000000000804440 w DO .rodata 000000000000005f _ZTSN2nn3hid6detail8RingLifoINS1_31AnalogStickCalibrationStateImplELi1ENS1_13AtomicStorageIS3_EEEE +000000000024cbd0 g DF .text 0000000000000028 _ZN2nn5album14GetImageHeightENS0_9ImageSizeE +0000000000065bb8 w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE27DoCleanDirectoryRecursivelyEPKc +0000000000118cec g DF .text 0000000000000020 _ZN2nn5codec29CalculateOpusFrameSampleCountEii +0000000000048090 g DF .text 0000000000000148 _ZN2nn2fs24HierarchicalRomFileTable17GetDirectoryEntryEPjPNS1_17DirectoryRomEntryERKNS1_8EntryKeyE +0000000000805810 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi225EE4MaskE +00000000000d15a4 w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm4EE27InitializeShimLibraryHolderINS_3apm8IManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESF_ +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__17codecvtIDsc11__mbstate_tED2Ev +0000000000342248 w DF .text 0000000000000048 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIcEE +00000000003c5914 g DF .text 00000000000000a0 textdomain +000000000004dac0 g DF .text 00000000000000a4 _ZN2nn2fs6detail18FileSystemAccessor17GetTotalSpaceSizeEPlPKc +000000000006a0f4 g DF .text 00000000000001a4 _ZN2nn2fs31ReadSaveDataThumbnailFileHeaderEmNS0_6UserIdEPvm +000000000022d658 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm9EEEvPNS0_16TouchScreenStateIXT_EEE +000000000031e97c w DF .text 00000000000002cc _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIiiEEPiEEbT0_S5_T_ +000000000016bbd0 g DF .text 0000000000000070 _ZN2nn8settings6detail31GetInitialSystemAppletProgramIdEPNS_3ncm9ProgramIdE +00000000007bffb0 w DO .rodata 0000000000000163 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_EE +00000000000a1a90 g DF .text 0000000000000004 nnsocketAccept +00000000000bb364 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE43_nn_sf_sync_GetServiceEntryRequirementCacheENS0_3OutIjvEENS_13ApplicationIdE +00000000000e09ec g DF .text 0000000000000048 celt_encoder_get_size +0000000000213ba0 g DF .text 0000000000000068 FSS_malloc +0000000000a89000 g D *ABS* 0000000000000000 end +00000000003d1014 g DF .text 0000000000000058 __sindf +000000000081f460 w DO .rodata 00000000000000ec _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000004cdc g D .text 0000000000000094 nndetailCryptoBignumMulWords +0000000000801e00 w DO .rodata 00000000000000b6 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000089ca4 g DF .text 0000000000000020 _ZN2nn3mem17StandardAllocatorC2Ev +00000000000775f8 g DF .text 0000000000000318 nnmem_nlib_log_attr_setint +00000000000950ac g DF .text 0000000000000018 _ZN2nn2os6detail18FiberImplByHorizon10InitializeEPNS0_9FiberTypeEPFvS4_E +00000000000c8070 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_AcquireCallerAppletCaptureBufferENS0_3OutINS0_12NativeHandleEvEE +000000000016c490 g DF .text 0000000000000070 _ZN2nn8settings6detail20GetBacklightSettingsEPNS0_6system17BacklightSettingsE +0000000000a69990 g DO .bss 0000000000000020 _ZN7android9SingletonINS_19GraphicBufferMapperEE5sLockE +0000000000314a64 w DF .text 0000000000000188 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSD_ILm4ELm4ELl4EEENSD_ILm4ELm4ELl8EEEEEELm0ELm12ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSM_24OutRawClientArgumentTypeILm4ELm4EEESP_SP_j +00000000000080d0 g DF .text 0000000000000030 _ZNK2nn6crypto6detail10Sha256Impl10GetContextEPNS0_13Sha256ContextE +000000000008a5e4 w DF .text 000000000000011c _ZN2nn3mem22NumberLineAllocatorPrvD2Ev +0000000000053e74 w DF .text 000000000000005c _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl10DeallocateENS_3svc6HandleE +00000000001613e4 w DF .text 0000000000000144 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm3ELm1ELl0EEEEEELm3ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm3ELm1EvEEj +00000000007cc730 w DO .rodata 0000000000000024 _ZTSN2nn2am7service17IOverlayFunctionsE +00000000001b5320 g DF .text 0000000000000008 _ZN2nn2la27AppletToNifmArgumentsReader9GetResultEv +000000000035a9ac g DF .text 0000000000000008 _ZNKSt3__18numpunctIcE16do_decimal_pointEv +00000000003afa24 g DF .text 0000000000000084 ilogb +0000000000144e0c g DF .text 0000000000000048 _ZN2nn3ngc6detail14ContentsReader16CheckMountPrefixEPKc +00000000000b4a60 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E37_nn_sf_sync_InitializeApplicationInfoEm +000000000094c7c0 w DO .data 0000000000000018 _ZTIN2nn2am7service15IDebugFunctionsE +000000000018d7b4 g DF .text 000000000000000c _ZN2nn5audio6common29GetSplitterInParamHeaderMagicEv +00000000002a7560 g DF .text 0000000000000024 _ZN7android23BnGraphicBufferConsumer17onGetNativeHandleEjRjRb +0000000000353b94 g DF .text 0000000000000160 _ZNSt3__16localeC1EPKc +00000000000bff44 g DF .text 0000000000000024 _ZN2nn7account28NetworkServiceAccountManager20GetNintendoAccountIdEPNS0_17NintendoAccountIdE +0000000000286f48 g DF .text 00000000000000b8 NvRmGpuSwizzlerCreate +00000000001b5904 g DF .text 00000000000000a4 _ZNK2nn2la31NifmToNetConnectArgumentsWriter15PushToInChannelENS_6applet19LibraryAppletHandleE +00000000008027d0 w DO .rodata 00000000000000ba _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000955f80 w DO .data 0000000000000018 _ZTIN2nn7timesrv6detail7service12ISystemClockE +0000000000224054 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm15EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +000000000081f360 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000008e4b8 g DF .text 0000000000000030 _ZN2nn2os17AttachSystemEventEPNS0_15SystemEventTypeEjbjbNS0_14EventClearModeE +000000000096eab0 g DO .data 0000000000000098 _ZTCN7android20BnGraphicBufferAllocE0_NS_10IInterfaceE +0000000000123578 g DF .text 0000000000000008 _ZNK2nn7friends11UserSetting8GetExtraEv +00000000007e5a10 w DO .rodata 000000000000001a _ZTSN2nn3ssl2sf11ISslServiceE +0000000000190b04 g DF .text 00000000000000e8 _ZN2nn5audio17OpenAudioRendererEPNS0_19AudioRendererHandleEPNS_2os11SystemEventERKNS0_22AudioRendererParameterEPvm +000000000012f188 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm16ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_ILm8ELm8EEENSN_24BufferClientArgumentTypeENSN_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000803d60 w DO .rodata 0000000000000022 _ZTSN2nn3hid6detail15NpadJoyLeftLifoE +00000000001747bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_SetNetworkSystemClockContextERKNS_4time18SystemClockContextE +000000000022d438 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm1EEEvPNS0_16TouchScreenStateIXT_EEE +000000000039f2b8 g DF .text 000000000000001c __clzti2 +000000000003c7f8 g DF .text 00000000000000ac _ZN2nn4util16IntrusiveDicNode5EraseEPPS1_Pi +000000000018fb58 g DF .text 000000000000003c _ZN2nn5audio13UpsamplerInfoC1Ev +000000000031608c g DF .text 0000000000000004 nngpioOpenSessionForDev +000000000022a1e4 g DF .text 00000000000006a8 _ZN2nn3hid15KeyCodeComposer15EnqueueKeyCodesEPKti +00000000003e7b10 g DF .text 0000000000000074 __nnmusl_pthread_getaffinity_np +00000000003cd7dc g DF .text 0000000000000020 remainderf +000000000022cfec g DF .text 0000000000000048 _ZN2nn3hid27ResetGyroscopeZeroDriftModeERKNS0_19SixAxisSensorHandleE +000000000017252c w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E32_nn_sf_sync_SetSettingsItemValueERKNS5_12SettingsNameERKNS5_15SettingsItemKeyERKNS0_8InBufferE +00000000001b55e8 g DF .text 0000000000000084 _ZN2nn2la4auth24RegisterParentalPasscodeEv +0000000000148d30 g DF .text 000000000000002c _ZN2nn3ngc6detail2BpD1Ev +00000000000ceac4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetPseudoDeviceIdENS0_3OutINS_4util4UuidEvEE +00000000001a545c g DF .text 000000000000002c _ZN2nn5audio6server12SplitterInfo9GetDataIdEi +00000000003cd7fc g DF .text 0000000000000020 remainderl +00000000001119b0 g DF .text 000000000000011c opus_multistream_packet_unpad +000000000015b7a0 g DF .text 0000000000000050 _ZN2nn2oe18ReportUserIsActiveEv +00000000000c29a8 g DF .text 000000000000004c _ZN2nn2am17GetSelfControllerEv +00000000003abc74 g DF .text 00000000000002b4 __strftime_l +000000000080d310 g DO .rodata 000000000000001e _ZTSN2nn8irsensor6detail7SessionE +00000000001c8e74 g DF .text 0000000000000064 _ZN2nn5swkbd37GetLengthOfConvertedStringUtf8ToUtf16EPKc +000000000008c93c w DF .text 00000000000001d8 _ZN2nn3mem22NumberLineAllocatorPrv10CompactionEv +00000000001b1410 g DF .text 000000000000001c _ZN2nn2ec24ShowShopAddOnContentListENS_13ApplicationIdE +00000000002588d4 g DF .text 0000000000000058 nvdcEnableCrc +00000000001a7d40 w DF .text 0000000000000038 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_E49_nn_sf_sync_GetAudioDeviceServiceWithRevisionInfoENS0_3OutINS0_13SharedPointerINS5_12IAudioDeviceEEEvEENS_6applet20AppletResourceUserIdEj +000000000009fff0 g DF .text 000000000000003c _ZN2nn2sf4impl6detail22ServiceObjectImplBase216AddReferenceImplEv +0000000000155950 g DF .text 0000000000000060 _ZN2nn4nifm10PutToSleepEv +0000000000820f80 w DO .rodata 00000000000000ac _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003c356c g DF .text 0000000000000014 versionsort +000000000004aafc g DF .text 0000000000000034 _ZNK2nn2fs11RomPathTool10PathParser13GetAsFileNameEPNS1_12RomEntryNameE +000000000016a438 g DF .text 0000000000000044 _ZN2nn8settings5fwdbg13ResetSettingsENS1_14SettingsTargetE +000000000016ec2c g DF .text 0000000000000028 _ZN2nn8settings6detail19CopySettingsItemKeyEPNS0_15SettingsItemKeyEPKc +0000000000226a58 g DF .text 00000000000000a8 _ZN2nn3hid6detail19GetAnalogStickStateEPNS0_16AnalogStickStateENS0_6system11UniquePadIdENS4_19AnalogStickPositionE +0000000000051358 g DF .text 0000000000000148 _ZN2nn2fs16OpenBisPartitionEPNSt3__110unique_ptrINS0_8IStorageENS1_14default_deleteIS3_EEEENS0_14BisPartitionIdE +0000000000363164 w DF .text 000000000000004c _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE2atEm +000000000016dcfc g DF .text 0000000000000070 _ZN2nn8settings6detail13SetLdnChannelEi +0000000000041abc g DF .text 0000000000000098 _ZN2nn4edid6detail23DisplayDataBlockVisitorEPKhmNS0_6cea8618BlockTagEPv +00000000007bc1f0 w DO .rodata 0000000000000178 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEEE +000000000015c160 g DF .text 0000000000000034 _ZN2nn2oe21SetExpectedThemeColorENS0_14ThemeColorTypeE +00000000001986cc g DF .text 0000000000000100 _ZN2nn5audio20AppendAudioOutBufferEPNS0_8AudioOutEPNS0_14AudioOutBufferE +00000000001c682c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +0000000000175268 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_GetHostFsMountPointENS0_3OutINS5_6system16HostFsMountPointEvEE +00000000009475f0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000001a30c4 g DF .text 0000000000000048 _ZNK2nn5audio6server14MemoryPoolInfo9TranslateENS0_7CpuAddrEm +00000000001b5c48 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor16GetFavoriteColorEv +00000000001a2924 g DF .text 000000000000000c _ZN2nn5audio6server14EffectInfoBase6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPKNS0_10EffectInfo11InParameterERNS1_10PoolMapperE +000000000035886c g DF .text 0000000000000008 _ZNKSt3__114__codecvt_utf8IwE16do_always_noconvEv +00000000009785e0 w DO .data 0000000000000018 _ZTIN2nn3i2c8ISessionE +00000000001360f4 g DF .text 0000000000000080 _ZN2nn2lm6detail24LogPacketTransmitterBase5FlushEb +000000000005fb24 g DF .text 0000000000000028 _ZN2nn2fs6detail30FileSystemServiceObjectAdapterD1Ev +0000000000172f30 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_E22_nn_sf_sync_GetKeySizeENS0_3OutImvEE +00000000000c4edc w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service30IAllSystemAppletProxiesServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000017d894 g DF .text 000000000000001c _ZN2nn4time17InitializeForMenuEv +0000000000182d70 g DF .text 0000000000000004 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTaskD1Ev +0000000000362774 g DF .text 000000000000002c _ZNSt13runtime_errorC1ERKS_ +00000000001854cc g DF .text 0000000000000008 _ZN2nn5audio37GetRenderingTimeLimitForLibraryAppletEv +0000000000090430 g DF .text 0000000000000024 _ZN2nn2os20SetThreadNamePointerEPNS0_10ThreadTypeEPKc +00000000007ae4e4 g DO .rodata 0000000000000004 _ZN2nn4util16IntrusiveDicNode4NposE +00000000000caaec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_TerminateAllLibraryAppletsEv +0000000000135c08 g DF .text 00000000000000ec _ZN2nn4htcs6detail25virtual_socket_collection4RecvEiPvmiRi +0000000000177918 g DF .text 0000000000000008 _ZN2nn3ssl7ContextC2Ev +000000000021a7c4 g DF .text 0000000000000074 _ZN2nn3hid6detail29SetNpadHandheldActivationModeENS0_26NpadHandheldActivationModeE +000000000023516c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E34_nn_sf_sync_DeactivateAudioControlEv +000000000012d860 g DF .text 0000000000000094 _ZN2nn2fs8CheckUidERKNS_7account3UidE +0000000000172f88 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_E17GetCmifBaseObjectEv +000000000017c770 w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILi1ELi5ELm0EEEEEELm0ELm4ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEESS_j +00000000001a26bc g DF .text 0000000000000018 _ZNK2nn5audio6server12BehaviorInfo19IsSplitterSupportedEv +00000000007f9a48 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail25RandomMiiEyebrowTypeTableE +00000000001d40cc g DF .text 0000000000000024 _ZN2nn2vi27FinalizeForIndirectProducerEv +0000000000315744 g DF .text 00000000000000e4 _ZN2nn4gpio16GetManagerByHipcEv +0000000000368540 g DF .text 00000000000001d8 _ZNSt3__16stoullERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPmi +0000000000948210 w DO .data 0000000000000018 _ZTIN2nn7account4baas28IFloatingRegistrationRequestE +000000000094ec30 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000822030 g DO .rodata 0000000000000032 _ZTSNSt12experimental15fundamentals_v112bad_any_castE +00000000001b63c0 g DF .text 0000000000000090 _ZNK2nn3mii8CreateId5IsNilEv +00000000003cef24 g DF .text 00000000000000ac sinhf +00000000003c32fc g DF .text 000000000000000c __ctype_tolower_loc +00000000000c792c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service7IWindowEEEvi +00000000007cde20 w DO .rodata 00000000000000f8 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +00000000009502f8 g DO .data 0000000000000040 silk_NLSF_CB_NB_MB +0000000000264758 g DF .text 000000000000000c multimedia_GetAllocator +00000000002b3538 g DF .text 0000000000000060 _ZN7android12ConsumerBase7abandonEv +0000000000041b9c g DF .text 0000000000000008 _ZN2nn4edid6detail23IsSrgbDefaultColorSpaceEh +0000000000823010 g DO .rodata 0000000000000012 _ZTSNSt3__15ctypeIwEE +00000000003cefd0 g DF .text 000000000000001c sinhl +00000000001515ec g DF .text 000000000000010c _ZN2nn4nifm6detail21ServiceProviderClient28GetAdminServiceSharedPointerEPNS_2sf13SharedPointerINS1_15IGeneralServiceEEE +00000000009ef790 g DO .bss 0000000000000008 _ZN2nn4time16g_pStaticServiceE +0000000000948748 w DO .data 0000000000000078 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4http15IOAuthProcedureENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000000a1d04 g DF .text 0000000000000078 _ZN2nn6socket6detail6CallocEmm +00000000000b4c3c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E34_nn_sf_sync_StoreSaveDataThumbnailERKNS5_3UidERKNS0_8InBufferE +00000000001341a4 g DF .text 0000000000000048 _ZN2nn4htcs6detail25virtual_socket_collection5ClearEv +000000000016056c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +000000000095bb38 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_17NpadJoyRightStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000003e32b0 g DF .text 0000000000000018 wcslen +000000000023b450 g DF .text 0000000000000120 _ZN2nn8irsensor30GetHandAnalysisSilhouetteStateEPNS0_27HandAnalysisSilhouetteStateEPiilRKNS0_14IrCameraHandleE +00000000000bcefc w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E25_nn_sf_sync_ApplyResponseERKNS0_7InArrayIcEE +0000000000167e44 g DF .text 0000000000000044 _ZN2nn8settings6system20GetBacklightSettingsEPNS1_17BacklightSettingsE +0000000000958f78 w DO .data 0000000000000028 _ZTVN2nn5audio6server10EffectInfoILNS0_10EffectTypeE2ENS0_12AuxParameterEEE +000000000015284c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_CancelEv +000000000032ed2c w DF .text 0000000000000114 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5seekgENS_4fposI11__mbstate_tEE +0000000000356adc g DF .text 0000000000000074 _ZNKSt3__112ctype_bynameIwE9do_narrowEwc +000000000094ea80 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +000000000004741c g DF .text 000000000000002c _ZN2nn2fs25GetCurrentThreadFsContextEv +00000000001b62bc g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor13GetBeardColorEv +00000000002c5f2c g DF .text 0000000000000020 _ZN7android21SurfaceComposerClient14destroySurfaceERKNS_2spINS_7IBinderEEE +00000000001c7a40 g DF .text 000000000000000c _ZN2nn3mii13AppletManager30SetResultSuccessUpdateMiiImageEi +00000000003e7344 g DF .text 000000000000001c _Z19Destroy_pthreadInfom +0000000000945868 g DO .data 0000000000000038 _ZTVN2nn2os6detail31MultiWaitHolderOfInterruptEventE +0000000000145c40 g DF .text 0000000000000060 _ZN2nn3ngc6detail12BinaryReader5Skip_Em +0000000000804270 w DO .rodata 000000000000001e _ZTSN2nn3hid6detail11GestureLifoE +000000000022b334 g DF .text 0000000000000054 _ZN2nn3hid15GetNpadStyleSetERKj +000000000039d2c8 g DF .text 00000000000000ac __extenddftf2 +00000000003a6608 g DF .text 0000000000000094 __atomic_compare_exchange_16 +00000000001cb860 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl28SetChangedStringCallbackUtf8EPFvPKNS0_20ChangedStringArgUtf8EE +000000000095c760 g DO .data 0000000000000028 _ZTVN2nn3hid14VibrationMixerE +00000000001222d0 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo7IsValidEv +00000000001a1f1c g DF .text 0000000000000004 _ZN2nn5audio6server18PerformanceManagerD1Ev +00000000001dedd0 g DF .text 0000000000000134 FSS_add_font_with_offset +0000000000804ab0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi22EE4MaskE +00000000000bfd28 g DF .text 0000000000000018 _ZN2nn7account28NetworkServiceAccountManagerC2Ev +000000000019a640 g DF .text 0000000000000008 _ZN2nn5audio34GetFinalOutputRecorderChannelCountEPKNS0_19FinalOutputRecorderE +0000000000126804 w DF .text 0000000000000204 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSG_ILi1ELi9ELm0EEENSI_ILm8ELm8ELl16EEEEEELm24ELm0ELb1EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEST_NSU_ILm8ELm8EvEEj +00000000001de108 g DF .text 0000000000000008 FS_get_flags +00000000007d6530 w DO .rodata 000000000000001a _ZTSN2nn5codec12IOpusDecoderE +00000000008223d4 g DO .rodata 0000000000000004 _ZNSt3__18ios_base6eofbitE +00000000000444fc g DF .text 0000000000000064 _ZN2nn4diag6detail9AbortImplEPKcS3_S3_iPKNS_6ResultES3_z +00000000007cb540 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007e92a4 g DO .rodata 0000000000000004 _ZN2nn5audio6common13NodeIdManager7BaseMaxE +00000000001aa708 g DF .text 0000000000000f9c _ZN2nn5audio19FXDelayProcessFrameEPKNS0_14DelayParameterEPNS0_10DelayStateEbPvPPiS8_j +00000000000bf07c g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService11GetBirthdayEPm +000000000095b870 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_13DebugPadStateELi16ENS1_13AtomicStorageIS3_EEEE +0000000000348268 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb0EE14do_frac_digitsEv +000000000018a8b8 g DF .text 0000000000000008 _ZNK2nn5audio11SinkManager13GetSampleRateEv +000000000036b2fc g DF .text 0000000000000044 _ZNSt3__112strstreambufC1El +000000000018a08c g DF .text 000000000000006c _ZN2nn5audio6detail31ReleaseResourceExclusionCheckerEPNS1_24ResourceExclusionCheckerE +000000000097d7d8 g DO .data 0000000000000028 _ZTVSt11range_error +0000000000197dd0 g DF .text 00000000000000e0 _ZN2nn5audio41GetActiveAudioDeviceChannelCountForOutputEv +00000000002950d4 g DF .text 0000000000000008 _ZN7android7BBinder11linkToDeathERKNS_2spINS_7IBinder14DeathRecipientEEEPvj +0000000000091314 g DF .text 0000000000000004 nnosGetThreadPriority +0000000000125fcc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E46_nn_sf_sync_ChangeFriendOnlineNotificationFlagERKNS_7account3UidENSL_23NetworkServiceAccountIdEb +000000000022d9f8 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm5EEEiPNS0_16TouchScreenStateIXT_EEEi +0000000000273eb0 g DF .text 0000000000000008 NvRmChannelGetClientManagedSyncPoint +0000000000361bb8 g DF .text 0000000000000004 _ZNSt12experimental19bad_optional_accessD2Ev +000000000013fed0 g DF .text 0000000000000138 _ZN2nn3nfp5MountERKNS0_12DeviceHandleENS0_9ModelTypeENS0_11MountTargetE +00000000003c8388 g DF .text 0000000000000168 erf +00000000000d2284 g DF .text 0000000000000010 _ZN2nn6applet21SetOnAddLibraryAppletEPFvNS0_19LibraryAppletHandleEE +000000000097cf80 g DO .data 0000000000000020 _ZTTNSt3__110istrstreamE +0000000000954a80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000022ee50 g DF .text 0000000000000038 _ZN2nn3hid14VibrationMixerC2Ev +0000000000979110 g DO .data 0000000000000028 _ZTVNSt12experimental15fundamentals_v112bad_any_castE +000000000005f320 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm1ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000000a0358 g DF .text 0000000000000048 _ZN2nn2sf4hipc24CloseServerSessionHandleENS_3svc6HandleE +0000000000286538 g DF .text 0000000000000030 nvgr_dump +00000000002d192c g DF .text 0000000000000064 strzcmp16 +000000000006f078 g DF .text 0000000000000064 _ZN2nn4lmem18ResizeExpHeapBlockEPNS0_6detail8HeapHeadEPvm +00000000000d90bc w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_4bcat6detail3ipc25IDeliveryCacheFileServiceEEEvi +00000000001b9b80 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw15SetEyebrowScaleEi +0000000000979800 g DO .data 0000000000000010 _ZTINSt3__18ios_baseE +0000000000045c78 w DF .text 000000000000004c _ZN2nn4diag6detail15ObserverManagerINS0_19AbortObserverHolderERKNS0_9AbortInfoEED2Ev +00000000001b6074 g DF .text 0000000000000014 _ZN2nn3mii16GetFavoriteColorENS0_13FavoriteColorENS0_9GammaTypeE +000000000095bcf8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail15SleepButtonLifoE +00000000001a3508 g DF .text 0000000000000018 _ZN2nn5audio6server10PoolMapperC2Ejb +0000000000185bd0 g DF .text 0000000000000030 _ZN2nn5audio15BehaviorManagerC1Ej +000000000028606c g DF .text 0000000000000010 nvgr_get_write_count +00000000003ba128 g DF .text 0000000000000014 ccos +000000000008b7f0 g DF .text 00000000000000c8 _ZN2nn3mem19NumberLineAllocator8AllocateEPiiPvPFvS3_E +00000000001c3238 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetBirthDayEi +0000000000155d48 g DF .text 00000000000000a8 _ZN2nn4nifm27GetInternetConnectionStatusEPNS0_24InternetConnectionStatusE +000000000094d5b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000009791b8 g DO .data 0000000000000028 _ZTVNSt3__124__libcpp_debug_exceptionE +000000000034f0dc w DF .text 000000000000000c _ZNKSt3__18messagesIwE6do_getEliiRKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEE +0000000000253b20 g DF .text 0000000000000004 _ZN2nn3web22ShowOfflineHtmlPageArg16SetLeftStickModeERKNS0_20OfflineLeftStickModeE +00000000003e74ec g DF .text 0000000000000058 __nnmusl_SetTlsValue +00000000000bb49c w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE72_nn_sf_sync_RefreshNintendoAccountUserResourceCacheAsyncIfSecondsElapsedENS0_3OutIbvEENSR_INS0_13SharedPointerINSK_13IAsyncContextEEEvEEj +00000000001a23a0 g DF .text 000000000000007c _ZN2nn5audio6server18PerformanceManager22SaveLastFrameToHistoryEv +0000000000153158 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSG_ILm4ELm4ELl8EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm12ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESW_SW_NS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000003c3d74 g DF .text 000000000000005c __duplocale +00000000000b2038 g DF .text 000000000000008c _ZN2nn7account6detail18OAuthProcedureBaseaSEOS2_ +000000000031fc88 w DF .text 00000000000002cc _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIllEEPlEEbT0_S5_T_ +00000000007c3380 w DO .rodata 000000000000019b _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail14ISessionObjectENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001c0690 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetMoleTypeEv +00000000000a3368 g DF .text 0000000000000160 _ZN2nn6socket6detail4BindEiPK8sockaddrj +0000000000263950 g DF .text 0000000000000008 NvOsTlsRemoveTerminator +00000000000c5bd0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_GetGlobalStateControllerENS0_3OutINS0_13SharedPointerINS6_22IGlobalStateControllerEEEvEE +0000000000185d10 g DF .text 000000000000001c _ZN2nn5audio15BehaviorManager32SetMemroyPoolForceMappingEnabledEb +0000000000232614 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E53_nn_sf_sync_EnableUnintendedHomeButtonInputProtectionENS_6applet20AppletResourceUserIdEjb +00000000002c8c34 g DF .text 000000000000002c _ZN7android11DisplayEDIDD1Ev +0000000000091494 g DF .text 0000000000000004 nnosTimedPeekMessageQueue +00000000000b9a54 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE24_nn_sf_sync_ListAllUsersERKNS0_8OutArrayINS5_3UidEEE +00000000007b1b50 w DO .rodata 0000000000000021 _ZTSN2nn5fssrv2sf16IFileSystemProxyE +000000000016cf74 g DF .text 000000000000008c _ZN2nn8settings6detail15GetEulaVersionsEPiPNS0_6system11EulaVersionEi +00000000001711f0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E21_nn_sf_sync_GetSslKeyENS0_3OutINS5_7factory6SslKeyEvEE +0000000000008218 w DF .text 0000000000000008 _ZN2nn6crypto6detail11XtsModeImplINS1_19XtsModeAes128HelperEEC2Ev +000000000008d3ac g DF .text 0000000000000030 _ZN2nn2os10ClearEventEPNS0_9EventTypeE +000000000023d3d0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_E40_nn_sf_sync_RegisterAppletResourceUserIdENS_6applet20AppletResourceUserIdEb +00000000000b3530 g DF .text 0000000000000010 _ZN2nn7account9CloseUserERKNS0_10UserHandleE +0000000000151a64 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E32_nn_sf_sync_CreateGeneralServiceENS0_3OutINS0_13SharedPointerINS6_15IGeneralServiceEEEvEEm +000000000023913c g DF .text 0000000000000054 _ZN2nn8irsensor6detail19StatusManagerHolder8FinalizeEv +00000000001a7c28 w DF .text 0000000000000094 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_E29_nn_sf_sync_OpenAudioRendererENS0_3OutINS0_13SharedPointerINS5_14IAudioRendererEEEvEERKNS5_30AudioRendererParameterInternalEONS0_12NativeHandleESM_mNS_6applet20AppletResourceUserIdE +0000000000223878 g DF .text 000000000000008c _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm1EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +0000000000234e08 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E51_nn_sf_sync_IsSixAxisSensorUserCalibrationSupportedENS0_3OutIbvEENS5_6system25UniqueSixAxisSensorHandleE +0000000000058d3c w DF .text 0000000000000254 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm0ELm0ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000cfe74 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3apm8ISessionEED2Ev +000000000004f610 g DF .text 0000000000000148 _ZN2nn2fs15CreateDirectoryEPKc +000000000023a708 g DF .text 000000000000001c _ZN2nn8irsensor6detail15IrSensorSession11CreateProxyEv +000000000094cfe0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000154334 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15INetworkProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +00000000000c6a18 w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm0ELm8ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESR_j +0000000000363230 w DF .text 0000000000000134 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9push_backEc +00000000001a7654 g DF .text 0000000000000054 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImplC1EPS2_RNS_6applet20AppletResourceUserIdEj +000000000032371c w DF .text 000000000000027c _ZNSt3__17__sort5IRNS_6__lessIeeEEPeEEjT0_S5_S5_S5_S5_T_ +000000000097d5d0 g DO .data 0000000000000018 _ZTISt20bad_array_new_length +000000000004e5e8 g DF .text 0000000000000034 _ZN2nn2fs6detail20IsWindowsDriveLetterEPKc +00000000000e9964 g DF .text 0000000000000910 opus_fft_impl +00000000001896e4 g DF .text 0000000000000074 _ZN2nn5audio10MixManagerC2EPNS0_7MixInfoEiii +000000000011b8fc g DF .text 0000000000000064 _ZN2nn3err14SystemErrorArg16SetDialogMessageEPKc +00000000003b9974 g DF .text 0000000000000024 cacoshf +000000000008fdb4 g DF .text 000000000000005c _ZN2nn2os21SdkRecursiveMutexType6UnlockEv +000000000014e7cc g DF .text 00000000000000a0 _ZNK2nn3ngc6detail9SparseSet7MemSizeEv +000000000017e3d8 g DF .text 0000000000000220 _ZN2nn4time20SecondsToDateAndTimeEPiS1_S1_S1_S1_S1_l +0000000000168e70 g DF .text 0000000000000044 _ZN2nn8settings6system15SetEulaVersionsEPKNS1_11EulaVersionEi +00000000000c218c g DF .text 0000000000000048 _ZNK2nn7account13ProfileEditor19GetProfileImageSizeEPm +000000000021b550 g DF .text 00000000000001fc _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_17NpadHandheldStateEiRKj +00000000003ce2d8 g DF .text 00000000000000ac scalb +0000000000291e58 g DF .text 0000000000000004 NvWsiContextDestroy +0000000000318698 g DF .text 0000000000000068 _ZN2nn3pcv22FinalizeForArbitrationEv +0000000000a88298 g DO .bss 0000000000000004 __horizon_max_num_modules +0000000000028d60 g DF .text 0000000000000050 _ZN2nn5image6detail4jpeg13jpeg_idct_2x1EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000071fa0 g DF .text 0000000000000120 nnmem_nlib_condrwlock_wait_for +000000000014dbc4 g DF .text 000000000000002c _ZN2nn3ngc6detail3Sbv5ResetEv +00000000000f1100 g DF .text 000000000000016c silk_LPC_analysis_filter +00000000003b9998 g DF .text 0000000000000030 cacoshl +00000000001d4f20 g DF .text 000000000000000c _ZN2nn2vi24SetLayerSettingsDefaultsEPNS_4util10BitFlagSetILi32ENS0_10LayerFlagsEEE +000000000021a650 g DF .text 00000000000000ac _ZN2nn3hid6detail18GetNpadJoyHoldTypeEPNS0_15NpadJoyHoldTypeE +00000000007bc850 w DO .rodata 0000000000000153 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000001585ac g DF .text 0000000000000004 _ZN2nn3nsd14DeleteSettingsENS0_10DeleteModeE +000000000019f1b0 g DF .text 0000000000000024 _ZN2nn5audio6server16CommandGeneratorC2EPNS1_13CommandBufferEPKNS0_17CommandListHeaderEPNS1_21RendererSystemContextEPNS1_12VoiceContextEPNS1_10MixContextEPNS1_13EffectContextEPNS1_11SinkContextEPNS1_15SplitterContextEPNS1_18PerformanceManagerE +00000000001b6160 g DF .text 0000000000000028 _ZNK2nn3mii21ParamCharInfoAccessor11GetNicknameEPNS0_8NicknameEi +000000000021a5dc g DF .text 0000000000000074 _ZN2nn3hid6detail18SetNpadJoyHoldTypeENS0_15NpadJoyHoldTypeE +000000000009edd8 w DF .text 0000000000000020 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_S6_E33_nn_sf_sync_CopyFromCurrentDomainENS0_3OutINS0_12NativeHandleEvEENS0_4cmif18CmifDomainObjectIdE +0000000000254ef4 g DF .text 0000000000000094 _ZN2nn3web6detail24ShowOfflinePageArgDetail16SetApplicationIdEPhRKNS_13ApplicationIdE +000000000032779c g DF .text 0000000000000764 _ZNSt3__112__next_primeEm +000000000022ddb8 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm15EEEiPNS0_16TouchScreenStateIXT_EEEi +000000000009ee14 w DF .text 0000000000000014 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_S6_E34_nn_sf_sync_QueryPointerBufferSizeENS0_3OutItvEE +000000000017a240 g DF .text 0000000000000024 nnsslConnectionGetOption +00000000003affe4 g DF .text 0000000000000260 y0 +00000000001bcdb8 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetMustacheYEi +000000000023290c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E22_nn_sf_sync_HasBatteryENS0_3OutIbvEEj +00000000003b0c98 g DF .text 0000000000000244 y1 +0000000000805904 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout32EnglishUnitedStatesInternationalE +00000000000bd438 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail14ISessionObjectENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +000000000022ff78 g DF .text 0000000000000040 _ZN2nn3hid15VibrationPlayer15SetLoopIntervalEi +000000000006ae98 g DF .text 0000000000000024 _ZN2nn2fs30SaveDataTransferSizeCalculator34QuerySaveDataRequiredSizeForImportERKNS0_12SaveDataInfoE +0000000000071c24 g DF .text 0000000000000114 nnmem_nlib_rwlock_trywrlock_until +0000000000122d00 g DF .text 0000000000000034 _ZNK2nn7friends14FriendPresence14GetDescriptionEv +00000000001b474c g DF .text 0000000000000090 _ZN2nn2la15PushToInChannelENS_6applet19LibraryAppletHandleEPKvm +0000000000955160 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +00000000002cba48 g DF .text 0000000000000038 _ZN7android6Region5clearEv +0000000000264058 g DF .text 0000000000000040 NvOsVsnprintf +000000000013a8c8 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3nfp6detail6IDebugEED2Ev +0000000000341d58 w DF .text 0000000000000060 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIcEE +0000000000157a54 g DF .text 000000000000001c _ZN2nn4nifm6detail43ConvertInternetConnectionStatusToNifmFromSfEPNS0_24InternetConnectionStatusERKNS1_2sf24InternetConnectionStatusE +0000000000113b18 g DF .text 000000000000005c get_mono_channel +000000000006cdd4 g DF .text 000000000000008c _ZN2nn3htc10InitializeEv +000000000012cd30 g DF .text 0000000000000388 _ZN2nn2fs14EnsureSaveDataERKNS_7account3UidE +000000000025e120 g DF .text 0000000000000108 NvUHashRemove +00000000001818a0 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm36ELm1ELl0EEEEEELm36ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm36ELm1EvEEj +0000000000339438 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_ +00000000003ab0cc g DF .text 0000000000000004 __pthread_exit +00000000000d8540 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E53_nn_sf_sync_RequestSyncDeliveryCacheWithApplicationIdENS0_3OutINS0_13SharedPointerINS7_29IDeliveryCacheProgressServiceEEEvEENS_13ApplicationIdEj +0000000000270158 g DF .text 0000000000000190 NvRmMemWriteStrided +00000000002b4e4c g DF .text 0000000000000030 _ZN7android19IGraphicBufferAllocD1Ev +0000000000346ef8 w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb0EE14do_curr_symbolEv +00000000001b8ad8 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw16GetFavoriteColorEv +00000000001602f8 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E25_nn_sf_sync_CreateServiceENS0_3OutINS0_13SharedPointerINS7_23IParentalControlServiceEEEvEEm +00000000001a3000 g DF .text 0000000000000014 _ZNK2nn5audio6server7AuxInfo13GetWorkBufferENS1_14EffectInfoBase5IndexE +000000000007e5c0 g DF .text 0000000000000224 nnmem_nlib_timer_create +00000000001588f0 g DF .text 0000000000000018 _ZN2nn3nsd20GetNasServiceSettingEPNS0_17NasServiceSettingERKNS0_14NasServiceNameE +0000000000254218 g DF .text 00000000000000a8 _ZN2nn3web36ShowOfflineHtmlPageArgWithPlayReportC2ERKNS_13ApplicationIdEPKc +00000000000a0520 g DF .text 00000000000000b8 _ZN2nn2sf4hipc5ReplyENS_3svc6HandleEPvm +00000000002cc524 g DF .text 0000000000000008 _ZNK7android6Region8subtractERKS0_ii +000000000005ca80 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSI_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENST_ILm4ELm4EvEEj +000000000025d704 g DF .text 0000000000000090 NvOsConfigGetState +000000000018c04c g DF .text 000000000000000c _ZN2nn5audio20GetVoiceSampleFormatEPKNS0_9VoiceTypeE +000000000028a8f0 g DF .text 0000000000000008 NvRmGpuNvgpuGetAsFd +0000000000343e78 w DF .text 00000000000000f0 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIwEE +00000000000a5770 g DF .text 0000000000000008 _ZN2nn6socket6detail9InetHtonlEj +00000000001b5c80 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor15GetFacelineTypeEv +0000000000317b20 g DF .text 000000000000007c _ZN2nn3pcv12GetClockRateEPjNS0_6ModuleE +000000000019f1b0 g DF .text 0000000000000024 _ZN2nn5audio6server16CommandGeneratorC1EPNS1_13CommandBufferEPKNS0_17CommandListHeaderEPNS1_21RendererSystemContextEPNS1_12VoiceContextEPNS1_10MixContextEPNS1_13EffectContextEPNS1_11SinkContextEPNS1_15SplitterContextEPNS1_18PerformanceManagerE +00000000001bc7d8 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw16GetFavoriteColorEv +00000000002c5628 g DF .text 0000000000000080 _ZN7android21SurfaceComposerClientD2Ev +000000000022b500 g DF .text 0000000000000080 _ZN2nn3hid22GetNpadControllerColorEPNS0_19NpadControllerColorERKj +0000000000953b90 w DO .data 0000000000000018 _ZTIN2nn4nifm6detail15INetworkProfileE +0000000000089f5c g DF .text 0000000000000060 _ZN2nn3mem17StandardAllocator4FreeEPv +0000000000152af8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E26_nn_sf_sync_SetKeptInSleepEb +00000000001a0d44 g DF .text 0000000000000018 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_10AuxCommandE +00000000007e1860 w DO .rodata 0000000000000168 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +000000000023053c g DF .text 0000000000000044 _ZN2nn3hid17UnbindXpadIdEventEPNS_2os15SystemEventTypeE +00000000000cbc60 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE32_nn_sf_sync_GetCommonStateGetterENS0_3OutINS0_13SharedPointerINS6_18ICommonStateGetterEEEvEE +00000000000b1ce0 g DF .text 0000000000000058 _ZN2nn7account29ShowNintendoAccountNnidLinkerERKNS0_3UidE +0000000000945ee8 g DO .data 00000000000000b8 _ZTVN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBaseE +0000000000805690 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi135EE4MaskE +00000000001c3548 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetReserved1Ei +00000000000b0874 g DF .text 0000000000000164 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferI7in_addrEElPhmPPT_ +00000000003ca550 g DF .text 0000000000000050 fminf +00000000003a7fb4 g DF .text 0000000000000010 abort +00000000003265dc g DF .text 0000000000000004 _ZNSt3__112future_errorD2Ev +0000000000948230 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEEE +00000000003b18c8 g DF .text 00000000000001d8 yn +00000000000976b4 g DF .text 0000000000000194 _ZN2nn2ro8FinalizeEv +000000000022aec8 g DF .text 0000000000000064 _ZN2nn3hid6system26GetXcdHandleForNpadWithNfcEPmj +00000000003ca5a0 g DF .text 000000000000008c fminl +0000000000264b48 g DF .text 0000000000000008 NvOsSharedMemMap +000000000097b070 g DO .data 0000000000000018 _ZTINSt3__117__widen_from_utf8ILm16EEE +000000000022ac74 g DF .text 0000000000000044 _ZN2nn3hid15InitializeMouseEv +0000000000a25938 g DO .bss 0000000000000020 _ZN2nn2vi3dev26g_ExternalNativeWindowListE +0000000000109540 g DF .text 0000000000000038 silk_inner_prod16_aligned_64_c +0000000000805050 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi67EE4MaskE +000000000097c020 w DO .data 0000000000000038 _ZTINSt3__18messagesIcEE +00000000001d8940 g DF .text 00000000000003a8 _ZN2nn6fontll6detail43PickPaltXValuesFromArrayOfPositioningValuesEPiPNS0_15OtfKerningTableEPKvtPPKh +000000000015b29c g DF .text 0000000000000054 _ZN2nn2oe38BeginHandlingCaptureButtonShortPressedEv +0000000000314210 w DF .text 00000000000000a0 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm41EE27InitializeShimLibraryHolderINS_3fgm2sf8ISessionEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENKUlPvE_clESG_ +000000000006fa74 g DF .text 0000000000000054 _ZN2nn4lmem18ExtendUnitHeapAreaEPNS0_6detail8HeapHeadEm +0000000000216714 g DF .text 0000000000000088 _ZN2nn3hid5debug6detail24IsFirmwareUpdatingDeviceEPbNS0_6system11UniquePadIdE +0000000000286d74 g DF .text 0000000000000010 NvRmGpuChannelCycleStatsUninstallBuffer +00000000000923d4 g DF .text 00000000000000f0 _ZN2nn2os6detail10TlsManager15AllocateTlsSlotEPNS0_7TlsSlotEPFvmEb +00000000000d0950 g DF .text 00000000000000c4 _ZN2nn3apm19GetPerformanceEventEPNS_2os15SystemEventTypeENS0_11EventTargetENS1_14EventClearModeE +00000000001b952c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw13SetFontRegionEi +0000000000318c7c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetVoltageEnabledENS0_3OutIbvEEi +00000000000c9148 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_RequestExitEv +0000000000119f84 w DF .text 00000000000002b8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_18BufferArgumentInfoILi0ELi25ELm272EEENS7_20InHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESJ_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSO_24BufferClientArgumentTypeENSO_26InHandleClientArgumentTypeENSO_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000801990 w DO .rodata 00000000000000b5 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000186c48 g DF .text 000000000000004c _ZN2nn5audio21SetDelayLowPassAmountEPNS0_9DelayTypeEf +00000000003c2ed8 g DF .text 0000000000000008 towupper +00000000001a3538 g DF .text 0000000000000028 _ZNK2nn5audio6server10PoolMapper16GetProcessHandleEPKNS1_14MemoryPoolInfoE +00000000000d9218 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E19_nn_sf_sync_GetSizeENS0_3OutIlvEE +000000000016f740 g DF .text 0000000000000070 _ZN2nn8settings6detail42GetConsoleSixAxisSensorAngularVelocityGainEPNS0_6system39ConsoleSixAxisSensorAngularVelocityGainE +00000000001d2434 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +000000000016a724 g DF .text 0000000000000044 _ZN2nn8settings6system16GetSleepSettingsEPNS1_13SleepSettingsE +000000000022a8f4 g DF .text 0000000000000224 _ZN2nn3hid15KeyCodeComposer13FlushKeyCodesEv +0000000000264b88 g DF .text 0000000000000008 NvOsModifyFpsTarget +000000000097b430 g DO .data 0000000000000018 _ZTINSt3__115__codecvt_utf16IDsLb0EEE +00000000001741bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E37_nn_sf_sync_GetUserSystemClockContextENS0_3OutINS_4time18SystemClockContextEvEE +000000000018b61c g DF .text 00000000000001e4 _ZN2nn5audio19SplitterInfoManager17UpdateInParameterEPv +000000000016cc64 g DF .text 0000000000000070 _ZN2nn8settings6detail23SetDataDeletionSettingsERKNS0_6system20DataDeletionSettingsE +00000000000a0f48 w DF .text 000000000000015c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutHandleArgumentInfoILi0ELi2EEENS7_17InRawArgumentInfoILm8ELm1ELl0EEEEEELm8ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutHandleClientArgumentTypeENSK_23InRawClientArgumentTypeILm8ELm1EvEEj +00000000003e3d40 g DF .text 0000000000000088 __localtime_r +000000000080ca00 w DO .rodata 00000000000000ec _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEEvEE +0000000000117a00 g DF .text 0000000000000004 _ZN2nn5codec30HardwareOpusMultiStreamDecoderD1Ev +0000000000169d9c g DF .text 0000000000000044 _ZN2nn8settings6system16SetPtmBatteryLotERKNS0_7factory10BatteryLotE +0000000000174820 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_GetDebugModeFlagENS0_3OutIbvEE +0000000000333350 g DF .text 000000000000003c _ZNSt3__18ios_base7failureC1EPKcRKNS_10error_codeE +00000000009459b0 g DO .data 0000000000000018 _ZTIN2nn2os6detail37MultiWaitHolderOfMessageQueueNotEmptyE +0000000000084140 g DF .text 0000000000000014 _ZN2nn7nlibsdk4heap14TlsHeapCentralD2Ev +00000000001a55b4 g DF .text 000000000000006c _ZN2nn5audio6server10WaveBufferC1Ev +00000000000eb640 g DF .text 00000000000003f8 celt_pitch_xcorr +000000000018d7a0 g DF .text 000000000000000c _ZNK2nn5audio6common10NodeStates9ResultEndEv +0000000000330904 w DF .text 0000000000000210 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPNS_15basic_streambufIcS2_EE +000000000035900c g DF .text 000000000000000c _ZNKSt3__115__codecvt_utf16IwLb0EE10do_unshiftER11__mbstate_tPcS4_RS4_ +00000000002260ac g DF .text 00000000000000e4 _ZN2nn3hid6detail28GetUniquePadControllerNumberEPiNS0_6system11UniquePadIdE +00000000000d9270 w DF .text 000000000000018c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm32ELm1ELl0EEENSG_ILm32ELm1ELl32EEEEEELm64ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm32ELm1EvEESR_j +0000000000257e6c g DF .text 00000000000000a0 nvcecSetLAddr +00000000001a7ba8 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_15UpsampleCommandE +000000000031d8d4 w DF .text 0000000000000568 _ZNSt3__16__sortIRNS_6__lessIttEEPtEEvT0_S5_T_ +0000000000043830 w DF .text 0000000000000008 _ZN2nn2sf14IServiceObject20GetInterfaceTypeInfoEv +000000000025b108 g DF .text 000000000000012c hdcp_open +00000000003e7678 g DF .text 000000000000008c __nnmusl_TimedWaitConditionVariable +0000000000326c48 g DF .text 00000000000000f4 _ZNSt3__117__assoc_sub_state4copyEv +00000000003de334 g DF .text 0000000000000048 putchar_unlocked +000000000004739c w DF .text 0000000000000008 _ZN2nn2os21SdkThreadLocalStorageD2Ev +0000000000081370 g DF .text 0000000000000098 nnmem_nlib_mutex_lock +000000000035a89c g DF .text 0000000000000040 _ZNSt3__18numpunctIcED2Ev +00000000001a34a0 g DF .text 0000000000000068 _ZNK2nn5audio6server10PoolMapper17ForceUnmapPointerEPNS1_11AddressInfoE +000000000017af1c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_GetOptionENS0_3OutIivEENS6_13ContextOptionE +0000000000978c58 w DO .data 0000000000000058 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +000000000095bcc8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_6system15HomeButtonStateELi16ENS1_13AtomicStorageIS4_EEEE +000000000035e744 g DF .text 0000000000000070 _ZNSt3__112ctype_bynameIcED1Ev +0000000000347540 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb0EE14do_frac_digitsEv +000000000019a648 g DF .text 0000000000000008 _ZN2nn5audio34GetFinalOutputRecorderSampleFormatEPKNS0_19FinalOutputRecorderE +00000000003e7880 g DF .text 0000000000000030 __nnmusl_GetCurrentSemaphoreCount +00000000002aecfc g DF .text 000000000000003c _ZN7android15BufferQueueCore20freeAllBuffersLockedEv +00000000001881a8 g DF .text 0000000000000048 _ZN2nn5audio24SetI3dl2ReverbReverbGainEPNS0_15I3dl2ReverbTypeEf +000000000097b930 w DO .data 0000000000000038 _ZTINSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +0000000000294e88 g DF .text 0000000000000014 _ZTv0_n24_N7android7IBinderD1Ev +000000000018a70c g DF .text 000000000000000c _ZN2nn5audio13GetSinkNodeIdEPKNS0_22CircularBufferSinkTypeE +00000000000899f8 g DF .text 000000000000000c _ZN2nn7nlibsdk4heap10CachedHeap4FreeEPv +00000000007ecfd0 w DO .rodata 000000000000002e _ZTSN2nn5audio6detail25IAudioOutManagerForAppletE +0000000000346f04 w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb0EE16do_positive_signEv +00000000000c70c4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_SetWirelessPriorityModeEi +000000000094cd10 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003dc730 g DF .text 0000000000000020 __fpending +00000000000c6e24 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_SetOutOfFocusSuspendingEnabledEb +000000000094d850 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001224fc g DF .text 000000000000000c _ZN2nn7friends23NintendoNetworkIdFriendC2Ev +0000000000954610 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc23IParentalControlServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000035a924 g DF .text 0000000000000040 _ZNSt3__115numpunct_bynameIwED2Ev +0000000000168b04 g DF .text 0000000000000078 _ZN2nn8settings7factory23GetEciDeviceCertificateEPNS1_24EccB233DeviceCertificateE +000000000095dd88 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000003a4540 g DF .text 000000000000006c __popcountti2 +00000000000c9918 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE38_nn_sf_sync_GetIntegratedAppletPointerENS0_3OutINSt3__110shared_ptrINS6_16IntegratedAppletEEEvEE +0000000000396aa8 g DF .text 0000000000000014 _ZNSt8bad_castC2Ev +0000000000160594 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E44_nn_sf_sync_CheckFreeCommunicationPermissionEv +000000000021448c g DF .text 0000000000000078 _ZN2nn3hid6detail33ResetAnalogStickManualCalibrationENS0_6system11UniquePadIdENS2_19AnalogStickPositionE +000000000095be38 w DO .data 0000000000000020 _ZTVN2nn3hid6detail19UniquePadConfigLifoE +000000000023153c w DF .text 000000000000012c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSE_ILm8ELm8ELl8EEEEEELm16ELm8ELb1EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_NSM_23InRawClientArgumentTypeILm4ELm4EvEENSP_ILm8ELm8EvEEj +000000000023519c w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E17GetCmifBaseObjectEv +00000000003c8f98 g DF .text 00000000000001c0 exp +00000000001c34a8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw9SetBeardYEi +00000000000939b8 g DF .text 000000000000004c _ZN2nn2os6detail21AddressSpaceAllocatorC1Emmm +00000000003a5224 g DF .text 0000000000000024 __umodti3 +00000000002646e4 g DF .text 0000000000000004 glslc_DebugVprintf +00000000003a3e6c g DF .text 000000000000056c __mulxc3 +00000000001495ec g DF .text 0000000000000054 _ZNK2nn3ngc6detail2Bp6ExportEPNS1_12BinaryWriterE +00000000001d5944 g DF .text 000000000000002c _ZNK2nn2vi6detail18IndirectLayerTable8GetIndexEPNS1_18IndirectLayerEntryE +00000000000604a0 g DF .text 0000000000000170 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter10DoOpenFileEPNSt3__110unique_ptrINS0_3fsa5IFileENS3_14default_deleteIS6_EEEEPKcNS0_8OpenModeE +00000000000cb7a0 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000d35e0 g DF .text 0000000000000038 _ZN2nn6applet26GetDesirableKeyboardLayoutEPj +000000000013fdb8 g DF .text 0000000000000118 _ZN2nn3nfp13StopDetectionERKNS0_12DeviceHandleE +000000000036012c w DF .text 0000000000000118 _ZNSt3__127__num_get_unsigned_integralImEET_PKcS3_Rji +00000000000b2498 g DF .text 0000000000000028 _ZN2nn7account6detail18OAuthProcedureBaseD1Ev +00000000007c9bb0 w DO .rodata 0000000000000105 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000163c4c g DF .text 00000000000000e8 _ZN2nn5prepo6detail7msgpack16WriteMapAutoSizeEPNS2_17OutputStreamParamEj +0000000000821380 w DO .rodata 00000000000000b5 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +000000000033c1b8 w DF .text 0000000000000204 _ZNSt3__19__num_getIwE19__stage2_float_prepERNS_8ios_baseEPwRwS5_ +00000000003bb6a4 g DF .text 0000000000000030 ctanf +00000000003bb6d4 g DF .text 00000000000001a4 ctanh +00000000000b824c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E32_nn_sf_sync_GetNintendoAccountIdENS0_3OutINS5_17NintendoAccountIdEvEE +000000000022e1a8 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm11EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000009793d8 w DO .data 0000000000000020 _ZTVNSt3__19basic_iosIcNS_11char_traitsIcEEEE +00000000003bba64 g DF .text 0000000000000050 ctanl +000000000011d5d0 g DF .text 000000000000005c _ZN2nn7friends18GetBlockedUserListEPiPNS_7account23NetworkServiceAccountIdEii +0000000000268cd4 g DF .text 0000000000000090 NvOsDrvClose +0000000000096474 g DF .text 0000000000000048 _ZN2nn2os6detail30InterProcessEventImplByHorizon5ClearEj +00000000001ca888 g DF .text 000000000000015c _ZN2nn5swkbd6detail18InlineKeyboardImpl15SetUserWordInfoERKNS0_12UserWordInfoE +00000000009470d8 w DO .data 0000000000000070 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile8IProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000328b64 g DF .text 0000000000000088 _ZNSt3__18ios_base4moveERS0_ +000000000009745c g DF .text 0000000000000038 _ZN2nn6result6detail17OnUnhandledResultENS_6ResultE +00000000000914e8 g DF .text 0000000000000008 nnosFreeTlsSlot +0000000000157b90 g DF .text 000000000000000c _ZN2nn4nifm6detail16SsidListAccessorC1Ev +00000000002cd060 g DF .text 00000000000000b8 _ZNK7android6Region4dumpERNS_7String8EPKcj +00000000000c8010 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_ReleaseLastApplicationCaptureBufferEv +000000000015ef8c g DF .text 0000000000000008 _ZN2nn4pctl11PairingInfoC1Ev +000000000007316c g DF .text 0000000000000268 nnmem_nlib_memchr_range_not +000000000004a3c0 w DF .text 000000000000030c _ZN2nn2fs26KeyValueRomStorageTemplateINS0_24HierarchicalRomFileTable11RomEntryKeyENS2_12FileRomEntryELi768EE11AddInternalEPjRKS3_jPKvmRKS4_ +00000000009470a0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account29IAccountServiceForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000155bc0 g DF .text 0000000000000034 _ZN2nn4nifm35PrepareHandlingNetworkRequestResultENS0_13RequestHandleEPNS_6applet19LibraryAppletHandleE +000000000095ba28 w DO .data 0000000000000020 _ZTVN2nn3hid6detail16NpadHandheldLifoE +00000000000bf4c8 g DF .text 0000000000000024 _ZN2nn7account38ExternalNetworkServiceAccountRegistrar14RegisterUserAsERKNS0_3UidE +00000000003e4eb8 g DF .text 000000000000004c usleep +0000000000355a44 g DF .text 000000000000008c _ZNKSt3__15ctypeIcE8do_widenEPKcS3_Pc +00000000001b17a0 g DF .text 0000000000000108 _ZN2nn2ec6detail15LaunchEShopImplENS1_10LaunchModeERKNS_7account3UidENS0_8SourceIdE +00000000002c3998 g DF .text 0000000000000024 _ZN7android14SurfaceControl11setPositionEff +000000000017fa28 g DF .text 0000000000000004 _ZN2nn4time23StandardUserSystemClock11from_time_tEl +000000000026387c g DF .text 0000000000000038 NvOsMutexDestroy +000000000003d2b0 g DF .text 00000000000000a4 _ZN2nn4util10SwapEndianEPNS0_9ResEndianEPNS0_6ResDicE +00000000007b9070 g DO .rodata 000000000000003b _ZTSN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBaseE +000000000016e408 g DF .text 000000000000007c _ZN2nn8settings6detail30SetAccountNotificationSettingsEPKNS0_6system27AccountNotificationSettingsEm +0000000000198548 g DF .text 000000000000008c _ZN2nn5audio12StopAudioOutEPNS0_8AudioOutE +00000000001d79b0 g DF .text 000000000000019c _ZN2nn6fontll6detail10ReadClass2EPiPNS0_15OtfKerningTableEPKvttttt +000000000017816c g DF .text 0000000000000018 _ZN2nn3ssl14ContextPrivate6CreateENS1_10SslVersionE +00000000000481d8 g DF .text 000000000000008c _ZN2nn2fs24HierarchicalRomFileTable19ConvertPathToFileIdEPiPKc +000000000006f5ec g DF .text 0000000000000064 _ZN2nn4lmem15AdjustFrameHeapEPNS0_6detail8HeapHeadENS0_10AdjustModeE +00000000001c33a8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw16SetEyebrowAspectEi +00000000000d7720 g DF .text 0000000000000030 _ZN2nn4bcat6detail17ShimLibraryGlobal31DecrementDeliveryCacheFileCountEv +00000000000ae0cc g DF .text 0000000000000068 _ZN2nn6socket8resolver3tls6Client29ClientThreadLocalStorage_dtorEPv +00000000003e92a8 g DF .text 0000000000000004 __nnmusl_GetCurrentThread +00000000003b8940 w DF .text 00000000000003cc __memcpy_device +00000000000a1424 g DF .text 000000000000004c _ZN2nn2sm15RegisterProcessENS_2os9ProcessIdEPKvmS4_m +00000000000bf194 g DF .text 0000000000000008 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService23GetAnalyticsOptedInFlagEv +00000000000a14a4 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_2sm6detail17IManagerInterfaceEED2Ev +00000000000ba77c w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile14IProfileEditorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +000000000018750c g DF .text 0000000000000048 _ZN2nn5audio12RemoveReverbEPNS0_19AudioRendererConfigEPNS0_10ReverbTypeEPNS0_10SubMixTypeE +000000000023896c g DF .text 0000000000000034 _ZN2nn8irsensor6detail13StatusManager17SetIrCameraStatusERKNS0_14IrCameraHandleENS0_14IrCameraStatusE +000000000019d0b0 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E38_nn_sf_sync_SetAudioDeviceOutputVolumeERKNS0_8InBufferEf +00000000009e0a80 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_8settings28IFirmwareDebugSettingsServerEE8_globalsE +00000000001889e8 g DF .text 0000000000000048 _ZN2nn5audio13EffectManagerC2EiPNS0_10EffectInfoE +0000000000227ccc g DF .text 0000000000000008 _ZN2nn3hid6detail37GetVibrationDeviceHandleXpadTypeValueERKNS0_21VibrationDeviceHandleE +00000000000d53d4 g DF .text 000000000000017c _ZN2nn4bcat24RequestSyncDeliveryCacheEPNS0_21DeliveryCacheProgressE +0000000000188360 g DF .text 0000000000000094 _ZN2nn5audio33SetI3dl2ReverbLateReverbDelayTimeEPNS0_15I3dl2ReverbTypeENS_8TimeSpanE +000000000094e980 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003ab178 g DF .text 0000000000000058 __pthread_setlocale +0000000000008738 w DF .text 0000000000000008 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEEC2Ev +000000000035a700 g DF .text 0000000000000068 _ZNKSt3__120__codecvt_utf8_utf16IDiE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_ +000000000009c0e4 g DF .text 00000000000000e4 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase18InitializePortImplEiONS0_4cmif6server20CmifServerObjectInfoENS_3svc6HandleE +0000000000949728 g DO .data 0000000000000510 _ZN2nn2am12g_InterfacesE +0000000000212564 g DF .text 00000000000000d0 swap_vhea +000000000023ef90 g DF .text 0000000000000218 _ZN22nerd_gillette_internal5otete7jaimev213DecodeHandROKERNS1_12HandInPacketEPKhmPmRKNS0_7jaimev117IntensityInPacketE +00000000000fa4b4 g DF .text 0000000000000198 silk_decoder_set_fs +0000000000201c14 g DF .text 000000000000021c FSS_get_kerning +00000000002a1670 g DF .text 000000000000000c _ZN7android6Parcel4Blob5clearEv +00000000007ae600 g DO .rodata 0000000000000004 _ZN2nn4util6ResDic4NposE +00000000000c0584 g DF .text 0000000000000018 _ZN2nn7account34NetworkServiceAccountAdministratorC1Ev +000000000032414c g DF .text 00000000000000a0 _ZNSt3__118condition_variable15__do_timed_waitERNS_11unique_lockINS_5mutexEEENS_6chrono10time_pointINS5_12system_clockENS5_8durationIxNS_5ratioILl1ELl1000000000EEEEEEE +0000000000329b84 w DF .text 0000000000000004 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEED2Ev +000000000019a454 g DF .text 00000000000000e4 _ZN2nn5audio24CloseFinalOutputRecorderEPNS0_19FinalOutputRecorderE +00000000000bb0f0 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE17GetCmifBaseObjectEv +00000000007c02b0 w DO .rodata 000000000000017a _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEEE +0000000000360ed8 g DF .text 0000000000000054 _ZNSt3__18__sp_mut4lockEv +00000000001a6864 g DF .text 0000000000000008 _ZNK2nn5audio6server12VoiceContext14GetActiveCountEv +0000000000050ee0 g DF .text 00000000000001c8 _ZN2nn2fs6detail8MountBisEPKcNS0_14BisPartitionIdES3_ +000000000017ce5c g DF .text 0000000000000034 _ZN2nn3ssl5Debug14HeapTrackPointC2Ev +000000000097d798 g DO .data 0000000000000028 _ZTVSt12out_of_range +00000000000974a4 g DF .text 000000000000000c nnResultIsSuccess +0000000000978a30 w DO .data 0000000000000018 _ZTIN2nn3pcv6detail11IPcvServiceE +0000000000088b7c g DF .text 0000000000000190 _ZN2nn7nlibsdk4heap11CentralHeap5AllocEmm +0000000000958e40 g DO .data 0000000000000018 _ZTIN2nn5audio6server11EntryAspectE +0000000000071e54 g DF .text 000000000000003c nnmem_nlib_condrwlock_broadcast +00000000001365ec w DF .text 00000000000000e0 _ZN2nn2lm6detail17ShimLibraryGlobal11GetInstanceEv +00000000001c83d0 g DF .text 0000000000000168 _ZN2nn2pl30GetSharedFontInOrderOfPriorityEPiPNS0_14SharedFontTypeEPPKvPmiNS_8settings12LanguageCodeE +000000000011ab7c g DF .text 0000000000000060 _ZN2nn3err15ShowErrorRecordENS_6ResultENS_4time9PosixTimeE +0000000000327594 g DF .text 00000000000000ec _ZNSt3__17promiseIvE28set_exception_at_thread_exitESt13exception_ptr +00000000001d8e84 g DF .text 0000000000000120 _ZN2nn6fontll6detail24PickKerningFromGposTableEPNS0_15OtfKerningTableEPKvb +00000000003e3bb0 g DF .text 0000000000000008 pthread_condattr_destroy +00000000002cdaec g DF .text 0000000000000060 _ZN7android7RefBaseD1Ev +000000000006ddb0 g DF .text 00000000000000e8 _ZN2nn3htc34GetTargetEnvironmentVariableLengthEPmPKc +0000000000176210 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm32ELm4ELl0EEEEEELm0ELm32ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm32ELm4EEEj +0000000000173734 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_MakeLanguageCodeENS0_3OutINS5_12LanguageCodeEvEEi +00000000001b8f18 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw14GetEyebrowTypeEv +000000000024e7cc w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000187c98 g DF .text 0000000000000018 _ZN2nn5audio14AddI3dl2ReverbEPNS0_19AudioRendererConfigEPNS0_15I3dl2ReverbTypeEPvmPNS0_12FinalMixTypeEi +00000000002c3a98 g DF .text 0000000000000024 _ZN7android14SurfaceControl8setAlphaEf +000000000003ce64 g DF .text 0000000000000060 _ZN2nn4util6detail16IntrusiveDicImpl10FindParentEPKNS0_16IntrusiveDicNodeE +00000000003a4720 g DF .text 0000000000000008 __subsf3 +0000000000167c6c g DF .text 0000000000000048 _ZN2nn8settings6system30SetForceMuteOnHeadphoneRemovedEb +0000000000231d74 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000095be20 w DO .data 0000000000000018 _ZTIN2nn3hid6detail17InputDetectorLifoE +0000000000950438 g DO .data 0000000000000078 _ZTVN2nn5codec30HardwareOpusMultiStreamDecoderE +00000000001bc824 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw7GetEyeYEv +00000000003c3d20 g DF .text 000000000000003c bind_textdomain_codeset +0000000000122258 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo14GetRequestTypeEv +00000000001d2afc g DF .text 00000000000000a8 _ZN2nn2vi12ListDisplaysEPNS0_11DisplayInfoEi +00000000007fff90 w DO .rodata 000000000000015e _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +00000000007ada8c g DO .rodata 0000000000000004 _ZN2nn4util6detail7FloatPiE +00000000001175e8 g DF .text 0000000000000004 _ZN2nn5codec19HardwareOpusDecoderD1Ev +0000000000169fb8 g DF .text 0000000000000078 _ZN2nn8settings7factory15GetSerialNumberEPNS1_12SerialNumberE +000000000097d260 g DO .data 0000000000000050 _ZTCNSt3__19strstreamE0_NS_13basic_istreamIcNS_11char_traitsIcEEEE +000000000012d500 g DF .text 0000000000000070 _ZN2nn2fs25ReadSaveDataThumbnailFileEmRKNS_7account3UidEPvmS5_m +0000000000005ac0 w DF .text 0000000000000210 _ZN2nn6crypto6detail7AesImplILm32EE10InitializeEPKvmb +00000000001ae9e4 g DF .text 000000000000035c _ZN2nn5audio23I3dl2ReverbProcessFrameEPKNS0_20I3dl2ReverbParameterEPNS0_16I3dl2ReverbStateEbPvPPKiPPij +00000000001bc7e0 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw9GetHeightEv +000000000023a970 g DF .text 0000000000000058 _ZN2nn8irsensor10InitializeERKNS0_14IrCameraHandleE +00000000000c9978 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE17_nn_sf_sync_StartEv +0000000000226598 g DF .text 0000000000000060 _ZN2nn3hid6detail33StartSixAxisSensorUserCalibrationENS0_6system25UniqueSixAxisSensorHandleE +00000000002abf98 g DF .text 0000000000000330 _ZN7android11BufferQueue17createBufferQueueEPNS_2spINS_22IGraphicBufferProducerEEEPNS1_INS_22IGraphicBufferConsumerEEERKNS1_INS_19IGraphicBufferAllocEEE +00000000000cbcf4 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE29_nn_sf_sync_GetSelfControllerENS0_3OutINS0_13SharedPointerINS6_15ISelfControllerEEEvEE +000000000015261c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_SubmitEv +000000000016303c w DF .text 00000000000001dc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +00000000001883f4 g DF .text 0000000000000028 _ZN2nn5audio33GetI3dl2ReverbLateReverbDelayTimeEPKNS0_15I3dl2ReverbTypeE +00000000000a4da4 g DF .text 0000000000000140 _ZN2nn6socket6detail6SocketEiii +00000000001ca378 g DF .text 0000000000000020 _ZN2nn5swkbd6detail18InlineKeyboardImpl20SetInputModeFadeTypeEh +000000000031b1b8 w DF .text 000000000000052c _ZNSt3__16__sortIRNS_6__lessIwwEEPwEEvT0_S5_T_ +00000000001078b4 g DF .text 00000000000001b0 silk_warped_LPC_analysis_filter_FIX_c +0000000000159fc4 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm256EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000001a78e8 g DF .text 0000000000000044 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl26GetAudioDeviceOutputVolumeERKNS_2sf8InBufferENS4_3OutIfvEE +0000000000804950 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi11EE4MaskE +0000000000175804 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm32ELm8ELl0EEEEEELm0ELm32ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm32ELm8EEEj +0000000000117850 g DF .text 0000000000000008 _ZNK2nn5codec19HardwareOpusDecoder15GetChannelCountEv +0000000000161cc0 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm52ELm2ELl0EEEEEELm0ELm52ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm52ELm2EEEj +00000000001e2868 g DF .text 0000000000000058 FSS_map_char +00000000001b0090 g DF .text 000000000000006c _ZN2nn5audio3dsp20DspExceptionNotifier10NotifyImplEv +0000000000805390 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi93EE4MaskE +00000000000953b8 g DF .text 00000000000000d0 _ZN2nn2os6detail27TransferMemoryImplByHorizon6CreateEPjPvmNS0_16MemoryPermissionE +00000000003e2474 g DF .text 00000000000000ac strncasecmp +000000000015ce30 g DF .text 0000000000000054 _ZN2nn2oe17EnableCrashReportEv +000000000097cf28 g DO .data 0000000000000050 _ZTVNSt3__110istrstreamE +00000000000b9a14 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE24_nn_sf_sync_GetUserCountENS0_3OutIivEE +0000000000189ed8 g DF .text 000000000000004c _ZN2nn5audio25SetPerformanceFrameBufferEPNS0_19AudioRendererConfigEPvm +00000000001baf80 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw16GetFacelineColorEv +00000000003616d4 g DF .text 00000000000000b0 _ZNSt3__121recursive_timed_mutex8try_lockEv +00000000003e4d1c g DF .text 0000000000000164 __year_to_secs +0000000000945910 g DO .data 0000000000000018 _ZTIN2nn2os6detail34MultiWaitHolderOfInterProcessEventE +00000000000a1a7c g DF .text 0000000000000004 _ZN2nn6socket21GetResourceStatisticsENS0_14StatisticsTypeEPvmj +000000000015845c g DF .text 0000000000000004 _ZNK2nn4nifm6detail12HttpPostData10GetPointerEv +00000000003e79ac g DF .text 0000000000000010 __nnmusl_pthread_attr_getscope +0000000000254898 g DF .text 00000000000004f4 _ZN2nn3web21ShowSystemDataPageArgC1Ev +000000000032bc28 w DF .text 0000000000000114 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4readEPcl +0000000000155130 g DF .text 0000000000000088 _ZN2nn4nifm6detail24GetGeneralServicePointerEPNS_2sf13SharedPointerINS1_15IGeneralServiceEEE +00000000000bd4e4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +0000000000956d18 g DO .data 0000000000000004 _ZN2nn5audio18g_AudioOutCountMaxE +0000000000274710 g DF .text 0000000000000018 NvRmHostModuleRegRd +0000000000272e98 g DF .text 0000000000000100 NvRmStreamSetWaitSync +000000000097aed0 g DO .data 0000000000000038 _ZTINSt3__17codecvtIDic11__mbstate_tEE +0000000000167020 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +00000000002cea10 g DF .text 0000000000000074 _ZNK7android8String1610startsWithEPKDs +0000000000047b1c g DF .text 0000000000000024 _ZN2nn2fs24HierarchicalRomFileTable22FindDirectoryRecursiveEPNS1_8EntryKeyEPNS1_17DirectoryRomEntryEPKc +0000000000186f48 g DF .text 0000000000000048 _ZN2nn5audio9RemoveAuxEPNS0_19AudioRendererConfigEPNS0_7AuxTypeEPNS0_12FinalMixTypeE +000000000012fa0c w DF .text 00000000000001c8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_21OutHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSF_ILm4ELm4ELl4EEENSF_ILm8ELm8ELl16EEENS7_20InHandleArgumentInfoILi0ELi1EEENSF_ILm4ELm4ELl8EEEEEELm24ELm4ELb0EEESM_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSR_27OutHandleClientArgumentTypeENSR_23InRawClientArgumentTypeILm4ELm4EvEESW_NSV_ILm8ELm8EvEENSR_26InHandleClientArgumentTypeESW_j +0000000000822de0 g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5alnumE +00000000007dfae0 g DO .rodata 000000000000001f _ZTSN2nn3ngc6detail12OutputStreamE +0000000000152b64 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +000000000016a14c g DF .text 0000000000000060 _ZN2nn8settings5fwdbg24GetSettingsItemValueSizeEPKcS3_ +0000000000179488 g DF .text 00000000000000e4 _ZN2nn3ssl10Connection4PeekEPcPij +000000000004fb30 g DF .text 0000000000000200 _ZN2nn2fs10RenameFileEPKcS2_ +00000000001d01b4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_SetDisplayAlphaEmf +0000000000950540 g DO .data 0000000000000018 _ZTIN2nn5codec11OpusDecoderE +00000000000a2b08 g DF .text 00000000000001b8 _ZN2nn6socket6detail6SendToEiPKvmiPK8sockaddrj +0000000000125d20 w DF .text 0000000000000050 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_GetNintendoNetworkIdInfoENS0_3OutINS5_25NintendoNetworkIdUserInfoEvEENSL_IivEERKNS0_8OutArrayINS6_27NintendoNetworkIdFriendImplEEERKNS_7account3UidEi +0000000000296d2c g DF .text 0000000000000028 _ZN7android10IInterfaceD0Ev +00000000000c618c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_IsVrModeEnabledENS0_3OutIbvEE +000000000018b4ac g DF .text 0000000000000010 _ZN2nn5audio12SplitterInfo13SetSampleRateEi +0000000000071e18 g DF .text 000000000000003c nnmem_nlib_condrwlock_signal +00000000003b8368 g DF .text 0000000000000090 strtod +0000000000298a90 g DF .text 0000000000000038 _ZN7android11IMemoryHeapD0Ev +0000000000326208 g DF .text 0000000000000014 _ZNSt13exception_ptrC1ERKS_ +00000000003561a0 g DF .text 0000000000000150 _ZNKSt3__112ctype_bynameIwE5do_isEtw +00000000002d0d2c g DF .text 0000000000000060 _ZN7android6ThreadC2Eb +0000000000161904 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi10ELm0EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeEj +00000000002d2d14 g DF .text 00000000000000b4 _ZN7android10VectorImpl9replaceAtEm +00000000003b82d4 g DF .text 0000000000000094 strtof +00000000001528f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E31_nn_sf_sync_SetNetworkProfileIdERKNS_4util4UuidE +00000000001d9f0c g DF .text 0000000000000044 _ZN2nn6fontll18ScalableFontEngine17AcquireOtfKerningEPKNS0_15OtfKerningTableEjjj +00000000003e2e04 g DF .text 0000000000000090 strtok +00000000003e0e40 g DF .text 0000000000000094 strtol +00000000000623b8 g DF .text 0000000000000138 _ZN2nn2fs26GetGameCardErrorReportInfoEPNS0_23GameCardErrorReportInfoE +00000000000a7f80 w DF .text 00000000000002bc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSE_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSH_ILi1ELi33ELm0EEENSH_ILi2ELi33ELm0EEENSH_ILi3ELi33ELm0EEENSH_ILi4ELi34ELm0EEENSH_ILi5ELi34ELm0EEENSH_ILi6ELi34ELm0EEENSH_ILi7ELi34ELm0EEENSE_ILm4ELm4ELl8EEEEEELm12ELm8ELb0EEESR_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESY_NSW_23InRawClientArgumentTypeILm4ELm4EvEES10_NSW_24BufferClientArgumentTypeES11_S11_S11_S11_S11_S11_S11_S10_j +000000000025a2e8 g DF .text 0000000000000010 nvdcFreeModeDB2 +00000000000bda74 g DF .text 00000000000000f4 _ZN2nn7account33InitializeBaasAccessTokenAccessorEv +00000000000033a4 g DF .text 0000000000000058 _ZN2nn6crypto6detail28alg_p256_generate_public_keyEPNS1_10p256_pointEPNS1_10p256_curveEPjS3_ +00000000000cb64c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_EnterSleepEv +0000000000221588 g DF .text 0000000000000060 _ZN2nn3hid6detail30UnsetSleepButtonAutoPilotStateEv +00000000001a2480 g DF .text 0000000000000014 _ZN2nn5audio6server18PerformanceManager13GetFrameIndexEv +00000000003a4718 g DF .text 0000000000000008 __subdf3 +00000000000726a0 g DF .text 0000000000000274 nnmem_nlib_vdwprintf +0000000000958a78 w DO .data 0000000000000010 _ZTIN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImplE +00000000003c2588 g DF .text 000000000000000c isascii +00000000000913a4 g DF .text 0000000000000004 nnosInitializeConditionVariable +00000000001af980 g DF .text 000000000000005c _ZN2nn5audio3dsp13ApplyMixRamp2EPiPKiiii +0000000000098e90 g DF .text 0000000000000010 _ZN2nn2ro6detail8RoModule8CallFiniEv +00000000002b227c g DF .text 0000000000000074 _ZN7android19BufferQueueProducer28getBufferReleasedEventHandleERjRb +000000000097ad18 g DO .data 0000000000000060 _ZTVNSt3__17codecvtIcc11__mbstate_tEE +00000000002350e0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E34_nn_sf_sync_GetFirmwareUpdateStateENS0_3OutINS5_6system19FirmwareUpdateStateEvEENSL_26FirmwareUpdateDeviceHandleE +00000000007c39c0 w DO .rodata 000000000000014d _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account24IBaasAccessTokenAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6ObjectE +00000000000b68e0 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas21IAuthorizationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +00000000000b7d50 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E33_nn_sf_sync_LoadSaveDataThumbnailENS0_3OutIjvEERKNS0_9OutBufferERKNS5_3UidENS_13ApplicationIdE +00000000000b544c w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile8IProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +000000000021cec4 g DF .text 0000000000000200 _ZN2nn3hid6detail22GetSixAxisSensorStatesEPiPNS0_18SixAxisSensorStateEiRKjNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +00000000000b1ab0 g DF .text 00000000000000d4 _ZN2nn7account16ShowUserSelectorEPNS0_3UidERKNS0_21UserSelectionSettingsE +0000000000823b40 w DO .rodata 000000000000001c _ZTSNSt3__110moneypunctIcLb1EEE +00000000002015e8 g DF .text 000000000000048c get_phased_graymap +00000000001f86a0 g DF .text 0000000000000038 fnt_RoundUpToGrid +0000000000231fb0 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E25_nn_sf_sync_GetJoyXpadIdsENS0_3OutIlvEERKNS0_8OutArrayINS5_9JoyXpadIdEEE +000000000029dbdc g DF .text 000000000000002c _ZN7android6ParcelC1Ev +00000000000a1e5c g DF .text 0000000000000024 _ZN2nn6socket6detail4FreeEPv +00000000007bd1f0 w DO .rodata 000000000000019a _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000000c4ed4 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service30IAllSystemAppletProxiesServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000011813c g DF .text 0000000000000044 _ZN2nn5codec11OpusDecoder10SetContextEPKvm +00000000001a7b9c g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_19DepopPrepareCommandE +00000000001c6440 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail16IDatabaseServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +000000000036c70c g DF .text 00000000000000c4 _ZNSt3__112system_errorC2ENS_10error_codeERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000001285a0 w DF .text 0000000000000208 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSK_ILm4ELm4ELl0EEENSK_ILm4ELm4ELl4EEEEEELm24ELm4ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENSY_ILm4ELm4EvEES10_j +000000000008e570 g DF .text 0000000000000040 _ZN2nn2os18DestroySystemEventEPNS0_15SystemEventTypeE +0000000000188ecc g DF .text 000000000000000c _ZN2nn5audio21GetFinalMixSampleRateEPKNS0_12FinalMixTypeE +0000000000285e70 g DF .text 0000000000000038 nvgr_is_yuv16 +00000000009514a8 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc20INotificationServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000001b6304 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetMoleTypeEv +0000000000236da4 g DF .text 00000000000001f8 _ZN2nn8irsensor6detail24GetMomentProcessorStatesEPNS0_20MomentProcessorStateEPiiRKNS0_14IrCameraHandleE +000000000029d9a4 g DF .text 0000000000000238 _ZN7android16unflatten_binderERKNS_2spINS_12ProcessStateEEERKNS_6ParcelEPNS_2wpINS_7IBinderEEE +0000000000822de2 g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5graphE +0000000000a882a0 g DO .bss 0000000000000008 nnmuslThreadPointerInitializer +000000000027378c g DF .text 0000000000000008 NvRmChannelGetBackEnd +0000000000945cd0 w DO .data 0000000000000020 _ZTVN2nn2sf4cmif6server23CmifServerDomainManagerE +00000000002cc70c g DF .text 000000000000002c _ZNK7android6Region8getArrayEPm +000000000017eea0 g DF .text 0000000000000010 _ZNK2nn4time13ClockSnapshot15GetLocationNameEv +00000000001bafe8 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw13SetMouthColorEi +00000000001c3588 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding2Ei +0000000000241a10 g DF .text 00000000000000e0 _ZN22nerd_gillette_internal5otete12Downscale2x2EPKhjjjPh +00000000003ab1d0 g DF .text 0000000000000004 pthread_setschedparam +0000000000122038 g DF .text 000000000000000c _ZN2nn7friends6FriendC2Ev +00000000001c9cc8 g DF .text 0000000000000020 _ZN2nn5swkbd20SetTextCheckCallbackEPNS0_15ShowKeyboardArgEPFNS0_15TextCheckResultEPvPmPNS0_6StringEE +0000000000329248 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE7seekoffExNS_8ios_base7seekdirEj +00000000001081d8 g DF .text 000000000000009c silk_regularize_correlations_FIX +000000000019bfd4 w DF .text 0000000000000080 _ZN2nn5audio6server21SystemEventHolderPoolILi6EED2Ev +0000000000355ed0 g DF .text 0000000000000020 _ZNKSt3__112ctype_bynameIcE10do_tolowerEc +000000000008202c g DF .text 000000000000002c nnmem_nlib_unlink +000000000011b4f0 g DF .text 0000000000000064 _ZN2nn3err19ApplicationErrorArg20SetFullScreenMessageEPKc +000000000009ad20 g DF .text 000000000000005c _ZN2nn2sf4hipc6client24HipcClientSessionManager19ConvertToDomainImplEPNS0_4cmif18CmifDomainObjectIdENS_3svc6HandleE +00000000001b91e8 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw14GetMouthAspectEv +00000000000863b8 g DF .text 0000000000000004 _ZN2nn7nlibsdk4heap15DoubleFreeErrorEPKv +0000000000140754 g DF .text 00000000000000b8 _ZN2nn3nfp21CreateApplicationAreaERKNS0_12DeviceHandleERKNS0_25ApplicationAreaCreateInfoE +0000000000181704 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E33_nn_sf_sync_ToPosixTimeWithMyRuleENS0_3OutIivEERKNS0_8OutArrayINSL_9PosixTimeEEENSL_12CalendarTimeE +0000000000135ed8 g DF .text 000000000000000c _ZNK2nn2lm6detail15LogPacketHeader6IsHeadEv +0000000000230194 g DF .text 000000000000004c _ZN2nn3hid15VibrationTarget24SetVibrationDeviceHandleERKNS0_21VibrationDeviceHandleE +00000000003c2820 g DF .text 0000000000000004 __iswblank_l +0000000000183748 g DF .text 000000000000003c _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImpl12IsProcessingEv +0000000000236834 g DF .text 000000000000008c _ZN2nn8irsensor6detail30CheckLibraryAppletAvailabilityEPbRKNS0_22IrCameraInternalStatusERKNS0_14IrCameraHandleE +00000000000a5784 g DF .text 0000000000000008 _ZN2nn6socket6detail9InetNtohlEj +000000000017b5d4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E16_nn_sf_sync_PollENS0_3OutINS6_9PollEventEvEESN_j +00000000007ff004 g DO .rodata 000000000000024c _ZN2nn3mii6detail23RandomMiiGlassTypeTableE +00000000007d3fea g DO .rodata 0000000000000028 silk_Resampler_1_3_COEFS +000000000026f3c8 g DF .text 0000000000000064 NvRm_MemmgrGetIoctlFile +000000000094cb70 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001a7b28 g DF .text 0000000000000004 _ZN2nn5audio6server6detail19FinalizeAudioDeviceERKNS_6applet20AppletResourceUserIdE +0000000000362e6c w DF .text 000000000000016c _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEmc +0000000000822398 g DO .rodata 0000000000000004 _ZNSt3__18ios_base8internalE +00000000003dd148 w DF .text 000000000000004c fputs_unlocked +00000000000c9c88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetLibraryAppletInfoENS0_3OutINS6_17LibraryAppletInfoEvEE +000000000036de98 g DF .text 0000000000000008 _ZNSt13__libcxx_shim19__libcxx_shim_ver_115__get_tls_valueENS0_11__tls_key_tE +000000000014c07c g DF .text 00000000000000bc _ZN2nn3ngc6detail9SbvSelectD1Ev +00000000002c502c g DF .text 0000000000000084 _ZN7android8Composer17setLayerStackMaskERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEj +000000000036d698 g DF .text 000000000000001c _ZNSt3__116__libcpp_tls_setENSt13__libcxx_shim19__libcxx_shim_ver_111__tls_key_tEPv +00000000001748c8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_GetBatteryLotENS0_3OutINS5_6system10BatteryLotEvEE +00000000001d9f50 g DF .text 0000000000000204 _ZN2nn6fontll18ScalableFontEngine20AcquireRawOtfKerningEPKNS0_15OtfKerningTableEjj +00000000000a8874 w DF .text 0000000000000210 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSE_ILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEENSE_ILm4ELm4ELl4EEEEEELm16ELm8ELb1EEESK_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESR_NSP_23InRawClientArgumentTypeILm8ELm8EvEENSS_ILm4ELm4EvEENSP_24BufferClientArgumentTypeESU_j +0000000000236158 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail18HidTemporaryServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +000000000011b74c g DF .text 00000000000001a8 _ZN2nn3err14SystemErrorArgC1ENS0_9ErrorCodeEPKcS4_RKNS_8settings12LanguageCodeE +00000000000d27a8 g DF .text 0000000000000008 _ZN2nn6applet18GetLibraryAppletIdENS0_19LibraryAppletHandleE +00000000003ab1e8 g DF .text 0000000000000004 sem_post +00000000002c5b70 g DF .text 0000000000000020 _ZN7android21SurfaceComposerClient19getErrorEventHandleERjRb +0000000000946600 w DO .data 0000000000000018 _ZTIN2nn2sm6detail17IManagerInterfaceE +00000000000a3a88 g DF .text 0000000000000138 _ZN2nn6socket6detail6ListenEii +000000000094c100 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15ISelfControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000270128 g DF .text 000000000000000c NvRmMemCacheSyncForDevice +00000000008218c0 w DO .rodata 0000000000000013 _ZTSN2nn3pwm8IManagerE +0000000000122588 g DF .text 0000000000000060 _ZN2nn7friends17NotificationQueueD2Ev +000000000023a7fc g DF .text 0000000000000014 _ZN2nn8irsensor6detail14SessionManagerC1Ev +0000000000395e14 g DF .text 0000000000000024 _ZNSt16bad_array_lengthD0Ev +00000000000d9a00 g DF .text 0000000000000018 celt_lcg_rand +00000000000b6280 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +00000000007d4b70 g DO .rodata 0000000000000010 silk_SNR_table_Q1 +00000000002323c8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E24_nn_sf_sync_ActivateNpadENS_6applet20AppletResourceUserIdE +000000000036c204 g DF .text 0000000000000014 _ZNKSt3__114error_category23default_error_conditionEi +000000000034f09c w DF .text 000000000000000c _ZNKSt3__18messagesIcE6do_getEliiRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000001d6df4 g DF .text 0000000000000004 _ZN2nn2vi6native8ParcelIo11CloseParcelEPN7android6ParcelE +00000000001543f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E19_nn_sf_sync_PersistENS0_3OutINS_4util4UuidEvEE +0000000000314670 g DF .text 0000000000000058 _ZN2nn3fgm8Debugger6CancelEv +0000000000362da4 w DF .text 0000000000000034 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKc +000000000014b5c4 g DF .text 0000000000000028 _ZN2nn3ngc6detail16NullOutputStreamC2Ev +0000000000253e6c g DF .text 0000000000000090 _ZN2nn3web22ShowOfflineHtmlPageArg25SetTouchEnabledOnContentsEb +00000000000bf218 g DF .text 0000000000000008 _ZN2nn7account33ExternalNetworkServiceAccountInfoC1Ev +000000000026c600 g DF .text 000000000000002c NvRmSyncExtractSyncpoint +0000000000189e94 g DF .text 0000000000000044 _ZN2nn5audio41GetRequiredBufferSizeForPerformanceFramesERKNS0_22AudioRendererParameterE +000000000022042c w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_6system16SleepButtonStateELi16ENS1_13AtomicStorageIS4_EEED2Ev +0000000000232bc4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E17GetCmifBaseObjectEv +00000000001d4c64 g DF .text 0000000000000070 _ZN2nn2vi9SetLayerZEPNS0_5LayerEi +00000000003a1cec g DF .text 0000000000000084 __fixxfdi +0000000000042798 g DF .text 0000000000000028 _ZN2nn4edid6detail7IsValidEPKNS0_4EdidE +000000000018d110 g DF .text 0000000000000008 _ZN2nn5audio6common10EdgeMatrixC1Ev +000000000029dd18 g DF .text 0000000000000018 _ZNK7android6Parcel9dataAvailEv +00000000002aa674 g DF .text 0000000000000148 _ZNK7android10BufferItemcvNS_22IGraphicBufferConsumer10BufferItemEEv +0000000000125a28 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_GetProfileListERKNS0_8OutArrayINS6_11ProfileImplEEERKNS_7account3UidERKNS0_7InArrayINSQ_23NetworkServiceAccountIdEEE +00000000003beee4 w DF .text 0000000000000074 crypt_r +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__17codecvtIcc11__mbstate_tED1Ev +000000000036d944 w DF .text 0000000000000050 _ZNSt3__18valarrayImED1Ev +00000000002d360c g DF .text 000000000000013c _ZN7android16SortedVectorImpl3addEPKv +00000000000bef88 g DF .text 0000000000000038 _ZNK2nn7account25CachedNintendoAccountInfo10GetCountryEPm +00000000001bb008 g DF .text 0000000000000084 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw16SetFromStoreDataERKNS1_12StoreDataRawE +0000000000823b80 w DO .rodata 000000000000001c _ZTSNSt3__110moneypunctIwLb1EEE +00000000009af688 g DO .bss 0000000000000008 _ZN2nn2am22g_AppletResourceUserIdE +00000000002cda64 g DF .text 0000000000000004 _ZNK7android7RefBase12weakref_type9printRefsEv +000000000032408c g DF .text 0000000000000010 _ZNSt3__16chrono12system_clock11from_time_tEl +00000000003ab104 w DF .text 0000000000000004 pthread_self +0000000000182d6c g DF .text 0000000000000004 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTaskC1ENS_2os14EventClearModeENS0_34EnsureNetworkClockAvailabilityModeE +00000000000014b4 g DF .text 00000000000000b4 _ZN2nn6crypto16EncryptAes128CtrEPvmPKvmS3_mS3_m +000000000008e41c g DF .text 0000000000000008 _ZN2nn2os19ClearInterruptEventEPNS0_18InterruptEventTypeE +00000000003a9dcc g DF .text 0000000000000c94 vfscanf +0000000000804ef0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi56EE4MaskE +0000000000197ee0 g DF .text 0000000000000078 _ZN2nn5audio13ListAudioOutsEPNS0_12AudioOutInfoEi +000000000095c9b0 g DO .data 0000000000000018 _ZTIN2nn3hid15VibrationTargetE +0000000000954190 w DO .data 0000000000000018 _ZTIN2nn4pctl6detail3ipc30IParentalControlServiceFactoryE +000000000019df38 g DF .text 0000000000000104 _ZN2nn5audio6server13CommandBuffer26GenerateBufferMixerCommandEiPKNS0_20BufferMixerParameterEj +00000000001b1674 g DF .text 000000000000002c _ZN2nn2ec37ShowShopApplicationInformationForMenuENS_13ApplicationIdERKNS_7account3UidEbNS0_8SourceIdE +000000000023ee18 g DF .text 0000000000000090 _ZN22nerd_gillette_internal5otete7jaimev219DecodePacketModeROKERNS0_4ModeEPKhmPm +0000000000979b68 w DO .data 0000000000000040 _ZTVNSt3__17collateIcEE +000000000006efc0 g DF .text 0000000000000064 _ZN2nn4lmem19AllocateFromExpHeapEPNS0_6detail8HeapHeadEmi +0000000000986dd8 g DO .data 0000000000000040 __c_dot_utf8_locale +000000000025091c g DF .text 0000000000000030 _ZN2nn3ldn11IsValidSsidERKNS0_4SsidE +0000000000314e4c g DF .text 0000000000000080 _ZN2nn4gpio11OpenSessionEPNS0_14GpioPadSessionENS0_11GpioPadNameE +000000000033557c w DF .text 0000000000000480 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedItEES4_S4_S4_RNS_8ios_baseERjRT_ +000000000032a1ac g DF .text 0000000000000024 _ZNSt3__18ios_base34__set_failbit_and_consider_rethrowEv +00000000003470d4 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb1EE11do_groupingEv +0000000000124140 g DF .text 0000000000000010 _ZN2nn7friends6detail21EnableCheckUserStatusEb +000000000016f264 g DF .text 0000000000000070 _ZN2nn8settings6detail13ResetSettingsEi +000000000018d2cc g DF .text 0000000000000024 _ZN2nn5audio6common10NodeStatesC2Ev +0000000000177c78 g DF .text 00000000000000d8 _ZN2nn3ssl7Context15ImportServerPkiEPmPKcjNS0_17CertificateFormatE +0000000000346ee4 w DF .text 0000000000000008 _ZNKSt3__110moneypunctIcLb0EE16do_thousands_sepEv +000000000097acd0 w DO .data 0000000000000010 _ZTINSt3__110ctype_baseE +00000000000952ac g DF .text 00000000000000c4 _ZN2nn2os6detail25SharedMemoryImplByHorizon3MapEPPvjS3_mNS0_16MemoryPermissionE +000000000094c6d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000125a84 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_DeclareCloseOnlinePlaySessionERKNS_7account3UidE +00000000002399f8 g DF .text 000000000000003c _ZN2nn8irsensor6detail15IrSensorSession29AttachSharedMemoryIfNotMappedEv +00000000002bdd54 g DF .text 0000000000000950 _ZN7android23BnSurfaceComposerClient10onTransactEjRKNS_6ParcelEPS1_j +0000000000942ba0 g DO .data 0000000000000038 _ZTIN2nn2fs11FileStorageE +000000000018a318 g DF .text 00000000000000c4 _ZN2nn5audio13AddDeviceSinkEPNS0_19AudioRendererConfigEPNS0_14DeviceSinkTypeEPNS0_12FinalMixTypeEPKaiPKc +000000000023016c g DF .text 0000000000000004 _ZN2nn3hid15VibrationTargetD2Ev +000000000023afa4 g DF .text 0000000000000114 _ZN2nn8irsensor26GetPointingProcessorStatesEPNS0_22PointingProcessorStateEPiiRKNS0_14IrCameraHandleE +00000000000caa40 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_CreateLibraryAppletENS0_3OutINS0_13SharedPointerINS6_22ILibraryAppletAccessorEEEvEEjj +000000000016b3b0 g DF .text 0000000000000050 _ZN2nn8settings6system20IsWirelessLanEnabledEv +00000000008225b0 w DO .rodata 000000000000002f _ZTSNSt3__113basic_ostreamIwNS_11char_traitsIwEEEE +00000000000f29d8 g DF .text 00000000000004c0 silk_NLSF_encode +00000000001bcd18 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw13SetFontRegionEi +00000000001b6054 g DF .text 0000000000000020 _ZNK2nn3mii8NicknameeqERKS1_ +000000000023d438 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_E17GetCmifBaseObjectEv +00000000001b7708 g DF .text 0000000000000018 _ZN2nn3mii6detail17GetEyeColorToVer3ENS0_11CommonColorE +000000000035f1e0 g DF .text 00000000000000b4 _ZNSt3__17codecvtIwc11__mbstate_tED1Ev +000000000011f978 g DF .text 0000000000000170 _ZN2nn7friends24GetNintendoNetworkIdInfoEPNS0_12AsyncContextEPNS0_25NintendoNetworkIdUserInfoEPiPNS0_23NintendoNetworkIdFriendERKNS_7account3UidEiNS0_28NintendoNetworkIdAccountTypeE +00000000000a2680 g DF .text 00000000000002f4 _ZN2nn6socket6detail8RecvMMsgEiP7mmsghdrmiPNS_8TimeSpanE +0000000000956fc4 g DO .data 0000000000000010 _ZN2nn5audio16I3dl2ApDelayLen2E +000000000011f6c8 g DF .text 0000000000000148 _ZN2nn7friends24ResendFacedFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdE +00000000007e92b4 g DO .rodata 0000000000000004 _ZN2nn5audio9VoiceType18WaveBufferCountMaxE +000000000094e290 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IApplicationProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001889cc g DF .text 000000000000001c _ZN2nn5audio10EffectInfoC2Ev +00000000001aa47c g DF .text 0000000000000004 _ZN2nn5audio3dsp7MailBox8FinalizeEv +000000000025cf68 g DF .text 0000000000000004 NvOsAllocAlign +00000000001cfebc w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +00000000002748f0 g DF .text 000000000000001c NvRmHostModuleRegWr +0000000000a80d30 w DO .bss 0000000000000010 _ZNSt3__18messagesIwE2idE +0000000000143fb0 g DF .text 0000000000000840 _ZN2nn3ngc19ProfanityFilterBase23ConvertUserInputForTextEPcPamPKc +000000000024bf60 g DF .text 0000000000000004 _ZN2nn3kpr15KeyCodeComposer5ClearEv +00000000007d4bc7 g DO .rodata 0000000000000003 silk_LTPscale_iCDF +000000000002e5bc g DF .text 0000000000000004 _ZN2nn5image11JpegDecoderD1Ev +00000000000b8108 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEE35_nn_sf_sync_EnsureIdTokenCacheAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +000000000021cc5c g DF .text 000000000000007c _ZN2nn3hid6detail25SetGyroscopeZeroDriftModeENS0_19SixAxisSensorHandleENS0_22GyroscopeZeroDriftModeE +00000000000ee5cc g DF .text 0000000000000190 alg_unquant +00000000001b6294 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetMouthTypeEv +00000000000b48a8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE24_nn_sf_sync_GetUserCountENS0_3OutIivEE +0000000000180d8c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E26_nn_sf_sync_GetCurrentTimeENS0_3OutINSL_9PosixTimeEvEE +00000000003e2204 w DF .text 000000000000007c __xpg_strerror_r +00000000000070a4 g DF .text 0000000000000058 _ZN2nn6crypto6detail10Sha256Impl10InitializeEv +0000000000181520 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service16ITimeZoneServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object7ReleaseEv +00000000001977d8 g DF .text 00000000000000f8 _ZN2nn5audio26GetAudioDeviceOutputVolumeEPKNS0_15AudioDeviceNameE +0000000000165b24 g DF .text 0000000000000198 _ZN2nn5prepo16SystemPlayReport4SaveERKNS_7account3UidE +00000000000bd128 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE12GetProxyInfoEv +00000000001c590c w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3mii6detail16IDatabaseServiceEE19FunctionForBoolTypeEv +00000000000f9bf4 g DF .text 00000000000003a4 silk_decode_indices +00000000000cdfb0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E49_nn_sf_sync_SetAutoSleepTimeAndDimmingTimeEnabledEb +0000000000117860 g DF .text 0000000000000144 _ZN2nn5codec19HardwareOpusDecoder17DecodeInterleavedEPmPiPsmPKvm +000000000023a7c0 g DF .text 0000000000000028 _ZN2nn8irsensor6detail15IrSensorSession21GetSharedMemoryHandleEPNS_2sf12NativeHandleE +00000000002707f0 g DF .text 0000000000000014 NvRmSyncDup +0000000000070c24 g DF .text 000000000000007c _ZN2nn4lmem6detail15AdjustFrameHeapEPNS1_8HeapHeadENS0_10AdjustModeE +00000000000b4008 g DF .text 00000000000000bc _ZN2nn7account16GetProfileEditorEPNS0_13ProfileEditorERKNS0_3UidE +0000000000232880 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_StopConsoleSixAxisSensorENS_6applet20AppletResourceUserIdENS5_26ConsoleSixAxisSensorHandleE +00000000001bc800 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetHairTypeEv +0000000000093444 w DF .text 0000000000000008 _ZNK2nn2os6detail19MultiWaitHolderBase23GetAbsoluteTimeToWakeupEv +00000000000bff68 g DF .text 000000000000003c _ZN2nn7account28NetworkServiceAccountManager29LoadCachedNintendoAccountInfoEPNS0_41CachedNintendoAccountInfoForSystemServiceEPvm +0000000000942428 g DO .data 0000000000000010 _ZTIN2nn5image11JpegDecoderE +0000000000036590 g DF .text 0000000000001b1c nnutilZlib_inflate +000000000016c030 g DF .text 0000000000000070 _ZN2nn8settings6detail19GetShutdownRtcValueEPl +00000000007f0f8c g DO .rodata 0000000000000004 _ZN2nn5audio6server7MixInfo27InvalidDistanceFromFinalMixE +000000000024e118 g DF .text 00000000000000a0 _ZN2nn5album21GetSharePostedLastUrlEPcmRKNS0_7ShareIdE +000000000094ba90 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEEE +00000000001cb898 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl31SetReleasedUserWordInfoCallbackEPFvvE +00000000000d90a4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000953388 g DO .data 0000000000000010 _ZTIN2nn3ngc6detail12OutputStreamE +000000000022060c g DF .text 0000000000000008 _ZNK2nn3hid6detail18SharedMemoryHolder10GetAddressEv +0000000000263948 g DF .text 0000000000000008 NvOsTlsSet +00000000003c59e4 g DF .text 0000000000000004 __wcscoll_l +000000000022bb78 g DF .text 0000000000000064 _ZN2nn3hid6system27GetLastActiveNpadControllerEPj +000000000097ae30 g DO .data 0000000000000038 _ZTINSt3__17codecvtIDsc11__mbstate_tEE +00000000001222fc g DF .text 000000000000015c _ZNK2nn7friends13FriendRequest18GetProfileImageUrlEPNS0_3UrlENS0_9ImageSizeE +000000000022046c w DF .text 0000000000000004 _ZN2nn3hid6detail22SixAxisSensorStateLifoD0Ev +0000000000318850 g DF .text 000000000000007c _ZN2nn3pcv13ChangeVoltageENS0_18PowerControlTargetEi +000000000005b320 w DF .text 0000000000000290 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSM_ILm1ELm1ELl0EEEEEELm24ELm8ELb0EEESP_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENS10_ILm1ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000013c2e0 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEEj +00000000000fd5a0 g DF .text 0000000000000160 silk_resampler +00000000000c1564 g DF .text 000000000000001c _ZN2nn7account42NintendoAccountAuthorizationRequestContext14GetSystemEventEPNS_2os11SystemEventE +0000000000189a9c g DF .text 0000000000000014 _ZNK2nn5audio10MixManager10IsValidMixEPKNS0_12FinalMixTypeE +00000000001d1c60 w DF .text 00000000000001a0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi70ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSG_ILm8ELm8ELl8EEENSG_ILm8ELm8ELl16EEENSG_ILm8ELm8ELl24EEEEEELm32ELm16ELb1EEESL_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEESS_NSQ_24BufferClientArgumentTypeENSQ_23InRawClientArgumentTypeILm8ELm8EvEESV_SV_SV_j +00000000007bdde0 w DO .rodata 0000000000000029 _ZTSN2nn7account3nas21IAuthorizationRequestE +000000000094de00 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6grcsrv17IGameMovieTrimmerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6ObjectE +00000000000e0c94 g DF .text 0000000000005c6c celt_encode_with_ec +00000000003217b4 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIyyEEPyEEjT0_S5_S5_S5_S5_T_ +00000000001a3b78 g DF .text 0000000000000154 _ZN2nn5audio6server7MixInfo16UpdateConnectionERNS0_6common10EdgeMatrixERKNS0_7MixInfoERKNS1_15SplitterContextE +0000000000326f24 g DF .text 00000000000000e4 _ZNSt3__16futureIvEC1EPNS_17__assoc_sub_stateE +00000000007f0e10 w DO .rodata 0000000000000048 _ZTSN2nn5audio6server10EffectInfoILNS0_10EffectTypeE2ENS0_12AuxParameterEEE +00000000001c32d8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetHairTypeEi +00000000001262dc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_ChangePresencePermissionERKNS_7account3UidEi +0000000000081d68 g DF .text 0000000000000018 nnmem_nlib_getenv +00000000000d8ef0 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +0000000000228e88 g DF .text 0000000000000018 _ZN2nn3hid6system27CheckFirmwareUpdateRequiredEPNS1_28FirmwareUpdateRequiredReasonENS1_11UniquePadIdE +0000000000285eb4 g DF .text 0000000000000010 nvgr_is_stereo +000000000008d01c g DF .text 0000000000000080 _ZN2nn2os21WaitConditionVariableEPNS0_21ConditionVariableTypeEPNS0_9MutexTypeE +00000000001b6844 g DF .text 0000000000000008 _ZN2nn3mii6detail25CalculateSizeAndAlignmentC1Ev +00000000007cc9c0 w DO .rodata 00000000000000fa _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service17IApplicationProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000026f864 g DF .text 0000000000000014 NvRmMemAlloc +000000000000a530 w DF .text 0000000000000004 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE7GfMultHEPNS4_5BlockE +00000000009515a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000175070 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E41_nn_sf_sync_SetErrorReportSharePermissionEi +0000000000359700 g DF .text 0000000000000098 _ZNKSt3__115__codecvt_utf16IDsLb1EE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_ +00000000001b67dc g DF .text 0000000000000004 _ZN2nn3mii6detail15BufferAllocatorD1Ev +0000000000314734 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3fgm2sf9IDebuggerEE19FunctionForBoolTypeEv +00000000001cac34 g DF .text 0000000000000024 _ZN2nn5swkbd6detail18InlineKeyboardImpl17SetFooterScalableEb +00000000000bcecc w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E22_nn_sf_sync_GetRequestENS0_3OutINS5_10RequestUrlEvEENSQ_INS5_11CallbackUriEvEE +000000000018db0c g DF .text 000000000000017c _ZN2nn5audio36ReverbGetRequiredDelayLineBufferSizeEii +00000000003a8750 g DF .text 0000000000000010 dgettext +00000000000b6964 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_GetSessionIdENS0_3OutINSK_4UuidEvEE +000000000039f8a8 g DF .text 0000000000000070 __ctzsi2 +000000000009f598 w DF .text 0000000000000158 _ZN2nn2sf4hipc6server34HipcServerSessionManagerWithDomain15HipcManagerImpl22CloneCurrentObjectImplENS0_3OutINS0_12NativeHandleEvEEPNS2_24HipcServerSessionManagerE +00000000002869f4 g DF .text 000000000000000c NvRmGpuAddressSpaceAllocationRemap +0000000000361a44 w DF .text 0000000000000004 _ZdaPvm +0000000000319970 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object12AddReferenceEv +000000000009063c g DF .text 0000000000000040 _ZN2nn2os15AllocateTlsSlotEPNS0_7TlsSlotEPFvmE +0000000000091498 g DF .text 0000000000000004 nnosInitializeMultiWaitHolderForMessageQueue +00000000007d8420 w DO .rodata 0000000000000114 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000017a360 g DF .text 0000000000000028 _ZN2nn3ssl6detail14ServiceSession13IsInitializedEv +000000000023281c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E37_nn_sf_sync_EndPermitVibrationSessionEv +0000000000031b68 g DF .text 000000000000003c nnutilZlib_deflateSetHeader +000000000021962c g DF .text 000000000000017c _ZN2nn3hid6detail16GetKeyboardStateEPNS0_13KeyboardStateE +0000000000158b70 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc24GetEnvironmentIdentifierEPNS0_21EnvironmentIdentifierE +00000000000c8de8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_RequestForApplicationToGetForegroundEv +000000000094fb60 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000823ec0 w DO .rodata 000000000000002a _ZTSNSt3__114codecvt_bynameIcc11__mbstate_tEE +00000000000be4fc w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +00000000000c6658 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000e0b20 g DF .text 0000000000000174 celt_preemphasis +00000000001956a0 w DF .text 0000000000000168 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi5ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_24OutRawClientArgumentTypeILm4ELm4EEEj +000000000016d638 g DF .text 0000000000000080 _ZN2nn8settings6detail23SetNxControllerSettingsEPKNS0_6system20NxControllerSettingsEi +00000000001a7b90 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_10MixCommandE +00000000001a3520 g DF .text 0000000000000018 _ZN2nn5audio6server10PoolMapperC2EjPNS1_14MemoryPoolInfoEib +00000000003e3b74 g DF .text 0000000000000024 pthread_attr_setinheritsched +00000000009affe8 g DO .bss 0000000000000008 scratch_ptr +000000000014d47c g DF .text 00000000000000f4 _ZN2nn3ngc6detail3Set6ImportEPNS1_12BinaryReaderE +000000000006c8b8 g DF .text 0000000000000024 _ZN2nn2fs6detail27StorageServiceObjectAdapter5FlushEv +0000000000187928 g DF .text 000000000000004c _ZN2nn5audio19SetReverbColorationEPNS0_10ReverbTypeEf +00000000001c9108 g DF .text 00000000000000a4 _ZN2nn5swkbd24ReadCloseResultAndStringENS_6applet19LibraryAppletHandleEPNS0_11CloseResultEPNS0_6StringE +0000000000398618 g DF .text 0000000000000008 __cxa_get_exception_ptr +000000000094ed90 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000323e08 g DF .text 0000000000000018 _ZNSt3__112__rs_defaultC2ERKS0_ +00000000008223f0 g DO .rodata 0000000000000004 _ZNSt3__18ios_base3outE +00000000000093c0 w DF .text 0000000000000008 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEEC1Ev +0000000000168664 g DF .text 0000000000000050 _ZN2nn8settings6system36GetExternalSteadyClockInternalOffsetEv +0000000000804a50 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi19EE4MaskE +000000000022b420 g DF .text 0000000000000054 _ZN2nn3hid44IsUnintendedHomeButtonInputProtectionEnabledERKj +000000000024f194 g DF .text 000000000000005c _ZN2nn3hid21ShowControllerSupportEPNS0_27ControllerSupportResultInfoERKNS0_20ControllerSupportArgE +0000000000264484 g DF .text 000000000000009c NvOsLogPrintf +00000000001b9418 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw9GetGlassYEv +0000000000329a7c w DF .text 0000000000000088 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEEC2EPNS_15basic_streambufIcS2_EE +000000000008996c g DF .text 0000000000000068 _ZN2nn7nlibsdk4heap11CentralHeap17WalkAllocatedPtrsEPFiPvmS3_ES3_ +0000000000090454 g DF .text 0000000000000008 _ZN2nn2os20GetThreadNamePointerEPKNS0_10ThreadTypeE +00000000007c87f0 w DO .rodata 0000000000000106 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000000c1088 g DF .text 00000000000000c4 _ZN2nn7account34NetworkServiceAccountAdministrator31DebugUnlinkNintendoAccountAsyncEPNS0_12AsyncContextE +000000000016651c g DF .text 0000000000000028 _ZN2nn5prepo6detail19PlayReportGenerator22IncrementKeyValueCountEPhm +00000000001227e8 g DF .text 000000000000003c _ZN2nn7friends17NotificationQueue10InitializeEv +00000000001d5548 g DF .text 0000000000000044 _ZN2nn2vi6detail17IndirectLayerImpl14GetLayerHandleEPmPNS0_13IndirectLayerEPNS1_18IndirectLayerTableE +00000000001d43bc g DF .text 0000000000000020 _ZN2nn2vi11CreateLayerEPPNS0_5LayerEPNS0_7DisplayE +000000000004b540 w DF .text 0000000000000058 _ZN2nn2fs26FileStorageBasedFileSystemD0Ev +00000000000b4210 g DF .text 0000000000000124 _ZN2nn7account44CreateExternalNetworkServiceAccountRegistrarEPNS0_38ExternalNetworkServiceAccountRegistrarEPvm +00000000001885c8 g DF .text 000000000000000c _ZN2nn5audio36GetI3dl2ReverbLateReverbHfDecayRatioEPKNS0_15I3dl2ReverbTypeE +00000000002645f4 g DF .text 0000000000000020 app_Realloc +000000000009cb0c g DF .text 0000000000000070 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase11ProcessAutoEPNS_2os19MultiWaitHolderTypeE +0000000000111744 g DF .text 00000000000000c0 opus_packet_pad +00000000007e9230 g DO .rodata 0000000000000008 _ZN2nn5audio14MemoryPoolType15SizeGranularityE +00000000001a18d0 g DF .text 00000000000001b8 _ZN2nn5audio6server11InfoUpdater11UpdateSinksERNS1_11SinkContextEPNS1_14MemoryPoolInfoEi +000000000003f304 g DF .text 0000000000000084 _ZN2nn4util10TVSNPrintfEPcmPKcSt9__va_list +0000000000155a70 g DF .text 0000000000000070 _ZN2nn4nifm18SetExclusiveClientENS0_8ClientIdE +00000000002638b4 g DF .text 0000000000000004 NvOsThreadYield +000000000080b5e0 g DO .rodata 000000000000001b _ZTSN2nn3hid15VibrationWriterE +000000000094d260 w DO .data 0000000000000018 _ZTIN2nn2am7service24ITransferStorageAccessorE +00000000001bad90 g DF .text 000000000000005c _ZN2nn3mii6detail10NicknameLe7ConvertEPNS0_8NicknameERKS2_ +00000000001b9574 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw16SetFavoriteColorEi +000000000017b63c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E31_nn_sf_sync_SetSessionCacheModeENS6_16SessionCacheModeE +00000000001cd770 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_GetIndirectDisplayTransactionServiceENS0_3OutINS0_13SharedPointerIN3nns9hosbinder16IHOSBinderDriverEEEvEE +000000000081ffa0 w DO .rodata 0000000000000018 _ZTSN2nn4gpio11IPadSessionE +000000000035415c g DF .text 00000000000000a0 _ZNKSt3__16locale9has_facetERNS0_2idE +00000000001837d0 g DF .text 0000000000000004 _ZN2nn3aoc8FinalizeEv +00000000007e8e70 w DO .rodata 00000000000000b9 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000318a4c w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +000000000082208c g DO .rodata 0000000000000001 _ZNSt3__16chrono12steady_clock9is_steadyE +000000000006c11c g DF .text 00000000000000b4 _ZN2nn2fs18FormatSdCardDryRunEv +000000000011ebd0 g DF .text 00000000000001d8 _ZN2nn7friends17SendFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdENS0_11RequestTypeERKNS0_7MiiNameERKNS0_16MiiImageUrlParamESB_SE_ +00000000001b32d0 g DF .text 000000000000001c _ZN2nn2ec6detail19ShopPageReturnValueC1Ev +00000000003c2ec0 w DF .text 0000000000000018 toupper_l +00000000001dd334 g DF .text 000000000000007c FSS_set_cmap +0000000000118810 g DF .text 0000000000000020 _ZNK2nn5codec22OpusMultiStreamDecoder17GetWorkBufferSizeEiiii +000000000018ab3c g DF .text 0000000000000098 _ZN2nn5audio22SetSplitterDestinationEPNS0_19AudioRendererConfigEPNS0_12SplitterTypeEii +00000000001bafb8 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw12GetGlassTypeEv +0000000000953bb0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +0000000000947f50 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +000000000094e0f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000329874 w DF .text 0000000000000008 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE4syncEv +000000000011ae70 g DF .text 0000000000000028 _ZN2nn3err15ShowErrorRecordEPKvm +00000000001ca0f8 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard29SetFinishedInitializeCallbackEPFvvE +0000000000230f08 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E30_nn_sf_sync_GetFirmwareVersionENS0_3OutINS5_6system15FirmwareVersionEvEEjNS_4util10BitFlagSetILi32ENSL_10DeviceTypeEEE +0000000000062804 g DF .text 00000000000002c0 _ZN2nn2fs9MountHostEPKcS2_ +000000000011dc58 w DF .text 0000000000000004 _ZN2nn7friends6detail17ShimLibraryGlobalD2Ev +000000000023a9c8 g DF .text 0000000000000044 _ZN2nn8irsensor8FinalizeERKNS0_14IrCameraHandleE +00000000000c57c4 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE31_nn_sf_sync_GetWindowControllerENS0_3OutINS0_13SharedPointerINS6_17IWindowControllerEEEvEE +00000000000bd6f0 g DF .text 00000000000000ec _ZN2nn7account12AsyncContextaSEOS1_ +00000000002732e4 g DF .text 00000000000000fc NvRmStreamPushGatherIncr +00000000002cc52c g DF .text 00000000000001dc _ZN7android6Region8validateERKS0_PKcb +00000000007f0780 w DO .rodata 00000000000000af _ZTSN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_EE +00000000007e7060 w DO .rodata 0000000000000174 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +000000000002a520 g DF .text 0000000000000010 _ZN2nn5image6detail4jpeg9jzero_farEPvm +00000000002d228c g DF .text 00000000000000ac _ZN7android10VectorImpl13insertArrayAtEPKvmm +00000000000d8760 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000000dd8c0 g DF .text 000000000000000c opus_get_version_string +00000000008223e0 g DO .rodata 0000000000000004 _ZNSt3__18ios_base3appE +000000000004e0e8 g DF .text 0000000000000034 _ZNK2nn2fs6detail18FileSystemAccessor18GetCommonMountNameEPcm +000000000011dfd8 g DF .text 00000000000000d8 _ZN2nn7friends21GetFriendDetailedInfoEPNS0_18FriendDetailedInfoERKNS_7account3UidENS3_23NetworkServiceAccountIdE +000000000019ccfc w DF .text 0000000000000018 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E20_nn_sf_sync_GetStateENS0_3OutIivEE +0000000000362fd8 w DF .text 000000000000018c _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7reserveEm +00000000000914a0 g DF .text 0000000000000004 nnosFinalizeMultiWait +00000000000cec10 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000039f884 g DF .text 0000000000000024 __ctzdi2 +000000000013a664 g DF .text 00000000000000d0 _ZN2nn3nfc14StartDetectionERKNS0_12DeviceHandleENS0_11NfcProtocolE +00000000001a686c g DF .text 0000000000000008 _ZN2nn5audio6server12VoiceContext14SetActiveCountEi +00000000007c3050 w DO .rodata 0000000000000165 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000003c3bd8 g DF .text 0000000000000050 __assert_fail +0000000000177454 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm36ELm4ELl0EEEEEELm36ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm36ELm4EvEEj +00000000001340d4 g DF .text 0000000000000038 _ZN2nn4htcs6detail25virtual_socket_collectionC2Ev +0000000000223790 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm16EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +000000000017a3c8 g DF .text 0000000000000014 _ZN2nn3ssl6detail10SslApiBaseD1Ev +000000000036d7e4 g DF .text 000000000000001c _ZNSt3__118__libcpp_tl_createEPN2nn2os7TlsSlotEPFvmE +00000000000b7f58 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E26_nn_sf_sync_GetSystemEventENS0_3OutINS0_12NativeHandleEvEE +00000000007d4062 g DO .rodata 000000000000000c silk_Resampler_2_3_COEFS_LQ +0000000000285ea8 g DF .text 000000000000000c nvgr_is_protected +00000000002cc420 g DF .text 0000000000000008 _ZNK7android6Region5mergeERKS0_ii +000000000036d6e8 g DF .text 000000000000001c _ZNSt3__132__libcpp_recursive_mutex_trylockEPN2nn2os9MutexTypeE +000000000097d7c0 g DO .data 0000000000000018 _ZTISt12out_of_range +0000000000234a94 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E35_nn_sf_sync_SetAppletResourceUserIdENS_6applet20AppletResourceUserIdE +0000000000319abc w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm3EE27InitializeShimLibraryHolderINS_3pcv19IArbitrationManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS5_EEE_clESH_ +00000000003d1cc0 g DF .text 0000000000000018 ffs +00000000003c272c g DF .text 0000000000000030 iswalnum +000000000015bb50 g DF .text 0000000000000130 _ZN2nn2oe27SetPerformanceConfigurationENS0_15PerformanceModeEi +0000000000230d68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E35_nn_sf_sync_DeactivateCaptureButtonEv +00000000003187e4 g DF .text 000000000000006c _ZN2nn3pcv8PowerOffENS0_18PowerControlTargetE +0000000000a82ad8 w DO .bss 0000000000000008 program_invocation_short_name +0000000000077540 g DF .text 00000000000000b8 nnmem_nlib_log_print +0000000000363b1c w DF .text 0000000000000044 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmRKS5_mm +00000000002a6238 g DF .text 0000000000000038 android_atomic_add +00000000003c2b20 g DF .text 000000000000003c __iswgraph_l +0000000000198a40 g DF .text 00000000000000d4 _ZN2nn5audio22GetAudioOutBufferCountEPKNS0_8AudioOutE +0000000000335a00 w DF .text 0000000000000480 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedIjEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000000b7d88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E40_nn_sf_sync_GetUserLastOpenedApplicationENS0_3OutINS_13ApplicationIdEvEENSP_IjvEERKNS5_3UidE +00000000009ef7a8 g DO .bss 0000000000000008 _ZN2nn4time30g_pEphemeralNetworkSystemClockE +000000000015d4f8 g DF .text 000000000000007c _ZN2nn4pctl21IsAllFeaturesDisabledEPb +00000000009495d8 g DO .data 0000000000000020 _ZTVN2nn7account8NotifierE +00000000001d055c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_UnregisterSharedBufferImporterAruidENS_2vi7fbshare18SharedBufferHandleENS_6applet20AppletResourceUserIdE +0000000000187858 g DF .text 0000000000000098 _ZN2nn5audio18SetReverbDecayTimeEPNS0_10ReverbTypeENS_8TimeSpanE +0000000000978d60 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +00000000007d7c00 w DO .rodata 0000000000000106 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000144f78 g DF .text 0000000000000070 _ZN2nn3ngc6detail14ContentsReader17GetFilterFilePathEPcNS0_26ProfanityFilterPatternListEj +000000000032949c w DF .text 000000000000000c _ZNKSt3__115basic_streambufIwNS_11char_traitsIwEEE6getlocEv +00000000001868e4 g DF .text 00000000000000f0 _ZN2nn5audio19SetDelayInputOutputEPNS0_9DelayTypeEPKaS4_i +00000000001d3680 g DF .text 0000000000000090 _ZN2nn2vi22GetCompositorErrorInfoEPNS0_15CompositorErrorEiPNS0_7DisplayE +00000000002aa618 g DF .text 000000000000005c _ZN7android10BufferItemD1Ev +0000000000074b00 g DF .text 0000000000000060 nnmem_nlib_wcslen +000000000035614c g DF .text 0000000000000054 _ZNSt3__112ctype_bynameIwED0Ev +00000000001c5664 g DF .text 0000000000000054 _ZN2nn3mii8Database10InitializeEv +000000000024ed14 g DF .text 000000000000001c _ZN2nn6capsrv12LibraryState25GetMovieReadStreamSessionEv +000000000097ba20 w DO .data 0000000000000038 _ZTINSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000007c24c0 w DO .rodata 0000000000000024 _ZTSN2nn7account4http15IOAuthProcedureE +000000000024ebc8 w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm2EE27InitializeShimLibraryHolderINS_6capsrv2sf29IScreenShotApplicationServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +000000000031633c g DF .text 00000000000000d0 _ZN2nn3i2c15HasDeviceForDevEitNS0_14AddressingModeENS0_9SpeedModeE +000000000097c580 g DO .data 0000000000000028 _ZTVNSt12experimental19bad_optional_accessE +0000000000151dc4 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E38_nn_sf_sync_EnumerateNetworkInterfacesERKNS0_8OutArrayINS6_2sf20NetworkInterfaceInfoEEENS0_3OutIivEEj +0000000000090468 g DF .text 0000000000000060 _ZN2nn2os20ChangeThreadPriorityEPNS0_10ThreadTypeEi +00000000002580a8 g DF .text 0000000000000100 nvcecRead +000000000094e270 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEEE +0000000000091354 g DF .text 0000000000000004 nnosReleaseSemaphore +0000000000091400 g DF .text 0000000000000004 nnosWaitSystemEvent +00000000000cf848 w DF .text 0000000000000344 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm100EE27InitializeShimLibraryHolderINS_2am7service24IApplicationProxyServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +0000000000951080 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +000000000008f49c g DF .text 0000000000000020 _ZN2nn2os11UnlockMutexEPNS0_9MutexTypeE +0000000000046de0 g DF .text 0000000000000090 _ZN2nn2fs6detail30OutputAccessLogForPreconditionEbNS_2os4TickES3_PKcNS0_15DirectoryHandleES5_z +00000000007dd100 w DO .rodata 0000000000000018 _ZTSN2nn3nfp6detail6IDebugE +0000000000081f30 g DF .text 0000000000000058 nnmem_nlib_fd_pwrite +0000000000366efc w DF .text 0000000000000088 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE13find_first_ofEPKwmm +0000000000160820 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_GetDefaultRatingOrganizationENS0_3OutIivEE +0000000000144844 g DF .text 0000000000000008 _ZN2nn3ngc19ProfanityFilterBase24GetPatternBitsFromRegionEbb +00000000003b83f8 w DF .text 0000000000000090 strtold_l +00000000000b73b4 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas18IGuestLoginRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +00000000008253d0 g DO .rodata 0000000000000028 _ZTSN10__cxxabiv123__fundamental_type_infoE +00000000003ab1d4 g DF .text 0000000000000004 pthread_setschedprio +0000000000395db0 g DF .text 000000000000000c _ZNKSt9bad_alloc4whatEv +00000000003a5d1c g DF .text 0000000000000074 __atomic_exchange_1 +00000000001b75e0 g DF .text 0000000000000018 _ZN2nn3mii6detail16GetNoselineColorENS0_9GammaTypeE +0000000000314c4c g DF .text 000000000000008c _ZN2nn4gpio10InitializeEv +0000000000361b38 w DF .text 0000000000000008 _ZdlPvmSt11align_val_t +00000000003a5d90 g DF .text 0000000000000074 __atomic_exchange_2 +00000000002a148c g DF .text 00000000000000b0 _ZN7android6Parcel14acquireObjectsEv +0000000000978310 w DO .data 0000000000000018 _ZTIN2nn4gpio11IPadSessionE +00000000003a5e04 g DF .text 0000000000000074 __atomic_exchange_4 +000000000097b1b0 g DO .data 0000000000000018 _ZTINSt3__114__codecvt_utf8IwEE +00000000003a5e78 g DF .text 0000000000000074 __atomic_exchange_8 +0000000000286960 g DF .text 000000000000000c NvRmGpuAddressSpaceFlushDeferredMappings +00000000007c40c0 w DO .rodata 00000000000000fa _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000c7098 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_ReportMultimediaErrorEjRKNS0_8InBufferE +00000000003448d4 g DF .text 00000000000002f4 _ZNSt3__118__time_get_storageIcEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +0000000000986d88 g DO .data 0000000000000008 stdout +0000000000395a9c g DF .text 00000000000000c0 __cxa_guard_acquire +00000000003a1e80 g DF .text 0000000000000034 __floatdidf +0000000000958e28 w DO .data 0000000000000010 _ZTIN2nn5audio6server10BaseAspectINS1_16CommandGeneratorEEE +00000000000969b8 g DF .text 0000000000000068 _ZN2nn2os6detail38InternalConditionVariableImplByHorizon4WaitEPNS1_23InternalCriticalSectionE +000000000017afd4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E30_nn_sf_sync_GetConnectionCountENS0_3OutIjvEE +00000000001b76b8 g DF .text 0000000000000018 _ZN2nn3mii6detail22GetFacelineColorToVer3ENS0_13FacelineColorE +000000000022e71c g DF .text 0000000000000044 _ZN2nn3hid5debug19ConnectUsbPadsAsyncEv +0000000000183784 g DF .text 0000000000000048 _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImpl13GetServerTimeEPNS_4time9PosixTimeE +0000000000188f40 g DF .text 0000000000000040 _ZN2nn5audio17AcquireMemoryPoolEPNS0_19AudioRendererConfigEPNS0_14MemoryPoolTypeEPvm +00000000002588cc g DF .text 0000000000000008 nvdcSetCmu_v2 +00000000000ea88c g DF .text 00000000000000cc celt_sqrt +00000000009533b8 g DO .data 0000000000000040 _ZTVN2nn3ngc6detail17MemoryInputStreamE +0000000000946418 w DO .data 0000000000000008 _ZN2nn2sf4cmif6server6detail30CmifProcessFunctionTableGetterINS0_4hipc6detail12IHipcManagerEvE7s_TableE +000000000014ac68 g DF .text 00000000000000a4 _ZN2nn3ngc6detail11InputStream11CheckBufferEv +000000000009b8c8 g DF .text 00000000000001e0 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor11SetupHeaderEPvmRKNS2_21HipcMessageHeaderInfoE +0000000000118ffc g DF .text 0000000000000054 _ZN2nn5codec6detail25SetBitRateControlInternalEP11OpusEncoderNS0_18OpusBitRateControlE +00000000003a96b0 w DF .text 0000000000000088 fopen64 +0000000000201ffc g DF .text 0000000000000058 FsLtt_init +00000000003610f8 g DF .text 0000000000000024 _ZNSt3__15mutex4lockEv +0000000000274ac0 g DF .text 0000000000000008 NvRmChannelSetModuleBandwidth +00000000002cac44 g DF .text 000000000000003c _ZN7android19GraphicBufferMapper16unregisterBufferEPK13native_handle +000000000009139c g DF .text 0000000000000004 nnosTryLockMutex +0000000000113b7c g DF .text 00000000000000a4 opus_multistream_decoder_get_size +000000000018af24 g DF .text 0000000000000044 _ZN2nn5audio20GetSplitterMixVolumeEPKNS0_12SplitterTypeEiPKNS0_12FinalMixTypeEii +000000000016f820 g DF .text 0000000000000070 _ZN2nn8settings6detail16GetSleepSettingsEPNS0_6system13SleepSettingsE +00000000002d0e74 g DF .text 0000000000000038 _ZTv0_n24_N7android6ThreadD1Ev +0000000000204628 g DF .text 00000000000003a0 fill_outline +000000000022c524 g DF .text 0000000000000064 _ZN2nn3hid13GetNpadStatesEPNS0_17NpadJoyRightStateEiRKj +0000000000360f2c g DF .text 000000000000001c _ZNSt3__18__sp_mut6unlockEv +00000000001c3608 g DF .text 000000000000003c _ZN2nn3mii6detail16Ver3StoreDataRaw7SetNameERKNS0_8NicknameE +00000000002ce2a0 g DF .text 000000000000007c _ZN7android8String16C2EPKDsm +0000000000822110 g DO .rodata 0000000000000017 _ZTSNSt3__112future_errorE +000000000039f174 g DF .text 0000000000000044 __ashrti3 +0000000000230a08 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14HidDebugServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000035a658 g DF .text 0000000000000008 _ZNKSt3__120__codecvt_utf8_utf16IDsE16do_always_noconvEv +0000000000952620 w DO .data 0000000000000018 _ZTIN2nn3nfc6detail5IUserE +000000000033dd3c g DF .text 00000000000000c8 _ZNSt3__114__num_put_base14__format_floatEPcPKcj +0000000000044fb8 g DF .text 0000000000000048 _ZN2nn4diag21UnregisterLogObserverEPNS0_17LogObserverHolderE +000000000004d104 g DF .text 0000000000000024 _ZN2nn2fs6detail12FileAccessor12OperateRangeEPvmNS0_11OperationIdEllPKvm +00000000001afc74 g DF .text 0000000000000060 _ZN2nn5audio3dsp17ApplyUniformGain2EPiPKiii +0000000000329f84 w DF .text 0000000000000030 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPFRNS_8ios_baseES5_E +000000000011b74c g DF .text 00000000000001a8 _ZN2nn3err14SystemErrorArgC2ENS0_9ErrorCodeEPKcS4_RKNS_8settings12LanguageCodeE +0000000000187b14 g DF .text 000000000000001c _ZN2nn5audio16GetReverbDryGainEPKNS0_10ReverbTypeE +00000000000cfcf8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_OpenApplicationProxyENS0_3OutINS0_13SharedPointerINS6_17IApplicationProxyEEEvEEmONS0_12NativeHandleE +000000000028a8f8 g DF .text 0000000000000008 NvRmGpuNvgpuGetGpuChannelFd +000000000009149c g DF .text 0000000000000004 nnosInitializeMultiWait +0000000000162844 w DF .text 0000000000000154 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl4EEENSG_ILm1ELm1ELl0EEEEEELm12ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENSQ_ILm1ELm1EvEEj +00000000000c9998 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE23_nn_sf_sync_RequestExitEv +0000000000179a78 g DF .text 000000000000001c _ZN2nn3ssl10Connection10CipherInfoC2Ev +00000000000824d4 w DF .text 0000000000000004 nnmem_nlib_free +000000000033443c w DF .text 0000000000000304 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRb +00000000000fe248 g DF .text 0000000000000130 silk_resampler_private_up2_HQ +00000000001b674c g DF .text 0000000000000054 _ZN2nn3mii12IsSpecialMiiERKNS0_8CharInfoE +0000000000336bf0 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRd +0000000000337058 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRe +000000000004ac58 g DF .text 000000000000001c _ZN2nn2fs11FileStorageC2Ev +00000000000c0044 g DF .text 0000000000000104 _ZN2nn7account28NetworkServiceAccountManager50RefreshCachedNintendoAccountInfoAsyncIfTimeElapsedEPbPNS0_12AsyncContextENS_8TimeSpanE +0000000000336788 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRf +000000000095a030 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000032c5f4 w DF .text 0000000000000008 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED1Ev +00000000000c80d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_AcquireLastForegroundCaptureBufferExENS0_3OutIbvEENSK_INS0_12NativeHandleEvEE +0000000000805908 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout7FinnishE +0000000000804e30 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi50EE4MaskE +0000000000334c70 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRl +0000000000199648 g DF .text 0000000000000008 _ZN2nn5audio14GetAudioInNameEPKNS0_7AudioInE +0000000000335e80 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRm +0000000000947f90 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001599cc g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc37IsChangeEnvironmentIdentifierDisabledEPb +00000000002cacd8 g DF .text 0000000000000060 _ZN7android19GraphicBufferMapper9lockYCbCrEPK13native_handleiRKNS_4RectEP13android_ycbcr +00000000000cb458 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetWriterLockAccessorExENS0_3OutINS0_13SharedPointerINS6_13ILockAccessorEEEvEEi +000000000017ec18 g DF .text 0000000000000004 _ZN2nn4time29ResumeAutonomicTimeCorrectionEv +00000000001911a8 g DF .text 000000000000003c _ZN2nn5audio34GetAudioRendererRenderingTimeLimitENS0_19AudioRendererHandleE +00000000001cce48 g DF .text 00000000000000d0 _ZN2nn2vi17SetRelayProxyNameEPKc +0000000000399b68 g DF .text 0000000000000020 unw_is_fpreg +00000000000456c4 g DF .text 000000000000001c _ZN2nn4diag6detail5AbortEv +00000000001222ec g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest12GetAccountIdEv +0000000000262d04 g DF .text 00000000000000b4 NvOsHeapAllocatorAllocAlign +0000000000335578 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRt +000000000016a614 g DF .text 0000000000000044 _ZN2nn8settings6system39GetConsoleSixAxisSensorAccelerationGainEPNS1_36ConsoleSixAxisSensorAccelerationGainE +000000000096d960 g DO .data 0000000000000168 _ZTCN7android18GraphicBufferAllocE0_NS_20BnGraphicBufferAllocE +00000000003bacb0 g DF .text 0000000000000030 csin +0000000000122a44 g DF .text 0000000000000030 _ZN2nn7friends12UserPresence14SetDescriptionEPKc +0000000000189d18 g DF .text 000000000000003c _ZN2nn5audio24PerformanceBufferManager15SetDetailTargetEj +00000000001b5900 g DF .text 0000000000000004 _ZN2nn2la31NifmToNetConnectArgumentsWriterD1Ev +00000000003350f4 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRx +00000000001bd1e0 g DF .text 0000000000000010 _ZN2nn3mii6detail18GetGlassTypeToVer3ENS0_9GlassTypeE +00000000002c9fd0 g DF .text 0000000000000250 _ZN7android13GraphicBuffer9unflattenERPKvRmRPKiS4_ +0000000000336304 w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRy +0000000000986db0 g DO .data 0000000000000028 __c_dot_utf8 +0000000000140ff4 g DF .text 000000000000001c _ZN2nn3ngc15ProfanityFilterC2EPvmb +000000000095d348 w DO .data 00000000000002b8 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail15HidSystemServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000000426b0 g DF .text 0000000000000008 _ZN2nn4edid6detail21DetailedTimingVisitorEPKNS0_15DisplayModeInfoEPKNS0_17DisplayTimingInfoEPKNS0_13ImageSizeInfoEPv +00000000001a6650 g DF .text 0000000000000128 _ZN2nn5audio6server9VoiceInfo26UpdateForCommandGenerationEPNS1_12VoiceContextE +00000000002aad90 g DF .text 0000000000000130 _ZN7android18BufferItemConsumerC1ERKNS_2spINS_22IGraphicBufferConsumerEEEjib +000000000015d49c g DF .text 000000000000005c _ZN2nn4pctl21PostEnableAllFeaturesEv +0000000000189f50 g DF .text 000000000000002c _ZN2nn5audio26SetPerformanceDetailTargetEPNS0_19AudioRendererConfigEPKNS0_10SubMixTypeE +00000000001e4de0 g DF .text 0000000000000028 fix_arg +00000000003c3964 g DF .text 00000000000001a0 unsetenv +0000000000126118 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_CancelFacedFriendRequestERKNS_7account3UidENSL_23NetworkServiceAccountIdE +00000000001b66f0 g DF .text 0000000000000004 _ZN2nn3mii14VerifyCoreDataERKNS0_8CoreDataE +0000000000816ee0 g DO .rodata 0000000000000019 _ZTSN7android12ConsumerBaseE +00000000007cccf0 w DO .rodata 0000000000000117 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEEE +0000000000232358 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_SetSupportedNpadStyleSetENS_6applet20AppletResourceUserIdENS_4util10BitFlagSetILi32ENS5_12NpadStyleTagEEE +000000000024e864 w DF .text 00000000000001a8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm32ELm1ELl0EEENS7_18BufferArgumentInfoILi0ELi69ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSF_ILm8ELm8ELl8EEENSF_ILm4ELm4ELl4EEEEEELm16ELm32ELb1EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm32ELm1EEENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm4ELm4EvEENSS_ILm8ELm8EvEEST_j +000000000017789c g DF .text 000000000000007c _ZN2nn8settings6detail20ResetXpadKeyboardMapEi +0000000000318cec w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetVoltageValueENS0_3OutIivEEi +000000000023c3c4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E28_nn_sf_sync_SetFunctionLevelENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleENS5_19PackedFunctionLevelE +00000000000c2584 g DF .text 0000000000000048 _ZN2nn7account13ProfileEditor14FlushWithImageEPKvm +0000000000199660 g DF .text 0000000000000008 _ZN2nn5audio22GetAudioInSampleFormatEPKNS0_7AudioInE +00000000002a0790 g DF .text 00000000000000b8 _ZNK7android6Parcel16readStrongBinderEv +00000000000c9f3c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_GetAndInvalidateENS0_3OutINS0_13SharedPointerIS7_EEvEE +00000000009529e0 w DO .data 0000000000000018 _ZTIN2nn3nfp6detail6IDebugE +000000000011d8ac g DF .text 000000000000002c _ZN2nn7friends28DeclareOpenOnlinePlaySessionEv +0000000000356c5c g DF .text 0000000000000008 _ZNKSt3__17codecvtIcc11__mbstate_tE16do_always_noconvEv +000000000016e1c0 g DF .text 0000000000000070 _ZN2nn8settings6detail35GetAutomaticApplicationDownloadFlagEPb +00000000000b9774 w DF .text 0000000000000108 _ZN2nn7account6detail12ObjectHolder11AcquireImplINS0_31IAccountServiceForAdministratorEEENS_6ResultEPPT_PKc +000000000018c114 g DF .text 0000000000000038 _ZN2nn5audio14SetVoiceVolumeEPNS0_9VoiceTypeEf +00000000000d7310 g DF .text 0000000000000094 _ZN2nn4bcat6detail17ShimLibraryGlobal10GetSessionEv +00000000000c9068 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000001a997c g DF .text 000000000000003c _ZN2nn5audio3dsp14ApplyDepopMix1EPiiii +000000000095a318 w DO .data 0000000000000210 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000001bcee4 g DF .text 0000000000000010 _ZN2nn3mii6detail11UtilityImpl16MakeVer3AuthorIdEPNS1_12Ver3AuthorIdE +00000000002cbd6c g DF .text 0000000000000018 _ZN7android6Region12subtractSelfERKS0_ +0000000000253a28 g DF .text 0000000000000060 _ZN2nn3web22ShowOfflineHtmlPageArgC1ERKNS_13ApplicationIdEPKc +0000000000091370 g DF .text 0000000000000004 nnosStartPeriodicTimerEvent +00000000000bf250 g DF .text 0000000000000040 _ZN2nn7account33ExternalNetworkServiceAccountInfoaSEOS1_ +0000000000804d90 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi45EE4MaskE +000000000094c870 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IDebugFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003b32cc g DF .text 0000000000000008 __nnmusl_force_div +000000000013f470 g DF .text 00000000000000a4 _ZN2nn3nfp15SetRegisterInfoERKNS0_12DeviceHandleERKNS0_19RegisterInfoPrivateE +0000000000061b2c g DF .text 000000000000012c _ZN2nn2fs25SetVerifyWriteEnalbleFlagEb +0000000000324948 g DF .text 0000000000000010 _ZNSt3__111__libcpp_dbC1Ev +00000000000c9ca8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_RequestForAppletToGetForegroundEv +0000000000186e20 g DF .text 0000000000000018 _ZN2nn5audio6AddAuxEPNS0_19AudioRendererConfigEPNS0_7AuxTypeEPNS0_10SubMixTypeEPvS7_m +00000000002321bc w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E38_nn_sf_sync_SetAccelerometerParametersENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleEff +00000000001bb4a0 g DF .text 0000000000000084 _ZN2nn3mii6detail25StoreLittleEndianNicknameEPtiRKNS0_8NicknameE +000000000003b690 g DF .text 0000000000000008 _ZNK2nn4util16BinaryFileHeader11GetFileSizeEv +000000000022fe50 g DF .text 0000000000000044 _ZN2nn3hid15VibrationPlayer7SetLoopEb +0000000000327288 g DF .text 00000000000000b8 _ZNSt3__17promiseIvE10get_futureEv +0000000000945850 g DO .data 0000000000000018 _ZTIN2nn2os6detail27MultiWaitHolderOfTimerEventE +00000000001869f8 g DF .text 0000000000000018 _ZN2nn5audio12GetDelayTimeEPKNS0_9DelayTypeE +0000000000186bc4 g DF .text 000000000000001c _ZN2nn5audio21GetDelayChannelSpreadEPKNS0_9DelayTypeE +000000000014e12c g DF .text 0000000000000078 _ZN2nn3ngc6detail9SparseSet6TurnOnEm +0000000000804210 w DO .rodata 000000000000005a _ZTSN2nn3hid6detail8RingLifoINS0_6system18CaptureButtonStateELi16ENS1_13AtomicStorageIS4_EEEE +000000000011a770 g DF .text 000000000000002c _ZN2nn3err20ShowApplicationErrorERKNS0_19ApplicationErrorArgE +00000000003d24dc g DF .text 0000000000000008 getopt_long_only +000000000019ac78 g DF .text 0000000000000970 _ZN2nn5audio6server17AudioRenderSystem10InitializeERKNS0_6detail30AudioRendererParameterInternalEjPvmRKNS_6applet20AppletResourceUserIdEi +00000000001ccd1c g DF .text 000000000000012c _ZN2nn2vi15FinalizeMinimumEv +0000000000396690 g DF .text 000000000000000c _ZNKSt9exception4whatEv +000000000023ed2c g DF .text 0000000000000070 _ZN22nerd_gillette_internal5otete7jaimev223GetDirectionFromAngloidEPfS2_f +000000000014ddec g DF .text 000000000000007c _ZN2nn3ngc6detail9SparseSetD2Ev +00000000009477b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000001cb878 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl19SetMovedTabCallbackEPFvPNS0_11MovedTabArgEE +0000000000256000 g DF .text 000000000000000c _ZN2nn3web6detail23SharePageReturnValue2_018SetShareExitReasonENS0_15ShareExitReasonE +000000000031782c g DF .text 0000000000000044 _ZN2nn3pcv13IsInitializedEv +000000000094e080 w DO .data 0000000000000018 _ZTIN2nn2am7service17IOverlayFunctionsE +0000000000359a80 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDiLb0EE16do_always_noconvEv +0000000000214414 g DF .text 0000000000000078 _ZN2nn3hid6detail34CancelAnalogStickManualCalibrationENS0_6system11UniquePadIdENS2_19AnalogStickPositionE +0000000000250804 g DF .text 0000000000000024 _ZN2nn3ldn14MakeSubnetMaskERA4_Kh +00000000000456bc g DF .text 0000000000000004 _ZN2nn4diag13GetSymbolNameEPcmm +0000000000133f70 g DF .text 000000000000001c _ZN2nn4htcs18GetDefaultHostNameEv +00000000002ab344 g DF .text 0000000000000108 _ZN7android11BufferQueue21ProxyConsumerListenerC2ERKNS_2wpINS_16ConsumerListenerEEE +00000000000926f8 g DF .text 00000000000000f8 _ZN2nn2os6detail17MemoryHeapManager20AddToFreeSpaceUnsafeEmm +000000000012a070 w DF .text 0000000000000214 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl8EEENSG_ILm8ELm8ELl24EEENSG_ILm4ELm4ELl0EEENSG_ILm16ELm8ELl32EEENSC_18BufferArgumentInfoILi0ELi25ELm72EEEEEELm48ELm0ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSU_ILm8ELm8EvEENSU_ILm4ELm4EvEESV_NS2_24BufferClientArgumentTypeEj +00000000003160c0 g DF .text 0000000000000018 nngpioBindInterrupt +00000000001396bc g DF .text 0000000000000094 _ZN2nn3nfc6detail10CheckErrorERKNS_6ResultE +000000000014d2ec g DF .text 00000000000000ac _ZN2nn3ngc6detail3Set5ResetEv +00000000008233d0 g DO .rodata 0000000000000023 _ZTSNSt3__120__codecvt_utf8_utf16IDsEE +00000000003e79f4 g DF .text 0000000000000034 __nnmusl_pthread_attr_setstack +000000000024ddbc g DF .text 0000000000000104 _ZN2nn5album22SaveAndShareScreenshotEPKvmNS0_9ImageSizeENS0_16ImageOrientationENS0_17AlbumReportOptionERKNS_7account3UidEPKc +0000000000151bcc w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15IGeneralServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +000000000006f818 g DF .text 000000000000005c _ZN2nn4lmem17GetFrameHeapStateEPNS0_6detail8HeapHeadE +00000000001d6fa4 g DF .text 0000000000000004 _ZN2nn2vi6buffer11BufferQueueD1Ev +0000000000230410 g DF .text 0000000000000030 _ZN2nn3hid15VibrationWriterC1Ev +000000000011bb0c g DF .text 00000000000000ac _ZN2nn3err6detail20ParseErrorCodeStringEPNS0_9ErrorCodeEPKc +00000000001696b4 g DF .text 0000000000000044 _ZN2nn8settings6system14GetMiiAuthorIdEPNS_4util4UuidE +00000000009551d8 w DO .data 0000000000000498 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +0000000000056ed4 w DF .text 00000000000001e4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi69ELm0EEENSG_ILm8ELm8ELl16EEENSG_ILm4ELm4ELl0EEEEEELm24ELm0ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeESU_NST_ILm4ELm4EvEEj +0000000000321938 w DF .text 00000000000002cc _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIyyEEPyEEbT0_S5_T_ +0000000000179db8 g DF .text 0000000000000044 nnsslContextCreate +000000000022a024 g DF .text 0000000000000030 _ZN2nn3hid15KeyCodeComposer14SetDeadKeyModeEb +000000000080c750 w DO .rodata 0000000000000026 _ZTSN2nn3hid26IActiveVibrationDeviceListE +00000000000b60cc w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E61_nn_sf_sync_GetNintendoAccountUserResourceCacheForApplicationENS0_3OutINS5_17NintendoAccountIdEvEENSQ_INS5_3nas25NasUserBaseForApplicationEvEERKNS0_9OutBufferE +00000000001b1714 g DF .text 0000000000000080 _ZN2nn2ec6detail19ShowShopPageWrapperERNS1_15ShowShopPageArgERKNS_7account3UidE +00000000000698c0 g DF .text 0000000000000094 _ZN2nn2fs27DisableAutoSaveDataCreationEv +00000000007e1b30 w DO .rodata 0000000000000160 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +0000000000314008 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E18_nn_sf_sync_CancelEv +00000000000c3a40 g DF .text 000000000000041c _ZN2nn2am33InitializeLibraryAppletInterfacesEPKNS0_15AppletAttributeE +000000000003af78 g DF .text 0000000000000008 nnutilZlib_zlibCompileFlags +000000000018b934 g DF .text 0000000000000008 _ZNK2nn5audio12SplitterInfo13GetSampleRateEv +00000000000b07cc g DF .text 0000000000000068 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferI7in_addrEElPhmRKT_ +00000000002637c8 g DF .text 000000000000002c NvOsSemaphoreWaitTimeout +00000000000752d8 g DF .text 0000000000000004 nnmem_nlib_memwide_to_utf8 +00000000007b9cf0 w DO .rodata 0000000000000020 _ZTSN2nn2sm6detail14IUserInterfaceE +0000000000156ee0 g DF .text 0000000000000004 _ZN2nn4nifm17NetworkConnection16GetRequestHandleEv +000000000097b9d8 w DO .data 0000000000000010 _ZTINSt3__114__num_put_baseE +0000000000185888 g DF .text 0000000000000020 _ZN2nn5audio38GetRequiredBufferSizeForAuxI3dl2ReverbEii +00000000002c8124 g DF .text 0000000000000208 sync_wait +00000000007c6570 w DO .rodata 00000000000000ef _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000022fba4 g DF .text 000000000000003c _ZN2nn3hid15VibrationPlayerC1Ev +0000000000292150 g DF .text 0000000000000040 NvWsiNativeDisplayUnref +00000000000412a0 g DF .text 0000000000000008 _ZN2nn4edid20GetSpeakerAllocationEPKNS0_4EdidE +00000000000913ec g DF .text 0000000000000008 nnosAttachWritableHandleToSystemEvent +00000000003ccf94 g DF .text 0000000000000008 lround +0000000000953418 w DO .data 0000000000000060 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001da5e0 g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine13ReleasesGlyphEPv +00000000002cf21c g DF .text 0000000000000148 _ZN7android7String87formatVEPKcSt9__va_list +0000000000337944 w DF .text 0000000000000340 _ZNSt3__19__num_getIcE17__stage2_int_loopEciPcRS2_RjcRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_S2_ +00000000009489b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +0000000000958480 w DO .data 0000000000000018 _ZTIN2nn5audio6detail27IFinalOutputRecorderManagerE +00000000001c3518 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw8SetMoleXEi +00000000008223a4 g DO .rodata 0000000000000004 _ZNSt3__18ios_base5rightE +0000000000253718 g DF .text 00000000000002b0 _ZN2nn3web22ShowOfflineHtmlPageArgC2Ev +00000000000bfd68 g DF .text 0000000000000044 _ZN2nn7account28NetworkServiceAccountManagerD0Ev +0000000000357a08 w DF .text 0000000000000308 _ZNSt3__113utf8_to_utf16ItEENS_9enable_ifIXoosr7is_sameIT_tEE5valuesr7is_sameIS2_jEE5valueENS_12codecvt_base6resultEE4typeEPKhS8_RS8_PS2_SA_RSA_mNS_12codecvt_modeE +0000000000361f80 g DF .text 0000000000000058 _ZNKSt3__123__match_any_but_newlineIwE6__execERNS_7__stateIwEE +00000000003af668 g DF .text 00000000000003bc fma +00000000008251e0 g DO .rodata 0000000000000011 _ZTSSt12out_of_range +00000000000cd1f0 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm64ELm8ELl0EEEEEELm0ELm64ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm64ELm8EEEj +000000000013f0b0 g DF .text 00000000000000e4 _ZN2nn3nfp16InitializeSystemEv +000000000002c024 g DF .text 0000000000000048 _ZN2nn5image6detail15WriteTiffHeaderEPhtRKNS1_10TiffHeaderE +0000000000155938 g DF .text 0000000000000018 nnnifmGetCurrentProxySetting +000000000022cd58 g DF .text 0000000000000044 _ZN2nn3hid34ResetSixAxisSensorFusionParametersERKNS0_19SixAxisSensorHandleE +000000000094d5f0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IHomeMenuFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000174e30 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_SetBacklightSettingsExERKNS5_6system19BacklightSettingsExE +00000000001c7ecc g DF .text 0000000000000098 _ZN2nn2pl22SetUsbDetachedForDebugEb +000000000008d21c g DF .text 0000000000000058 _ZN2nn2os16GetIdleTickCountEv +0000000000003200 g DF .text 00000000000000ac _ZNK2nn6crypto6detail10EccP256Key8SignHashEPvmPKvmS5_m +00000000000d1ed0 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object12AddReferenceEv +000000000013ab30 g DF .text 0000000000000028 _ZN2nn3nfp6client23IsCreatedDebugInterfaceEv +000000000015e378 g DF .text 0000000000000104 _ZN2nn4pctl13UnlinkPairingEb +000000000017ce24 g DF .text 0000000000000008 _ZN2nn3ssl6detail15BuiltinDataInfo5GetIdEv +0000000000822d91 w DO .rodata 0000000000000001 _ZNSt3__110moneypunctIcLb1EE4intlE +00000000002292ec g DF .text 0000000000000064 _ZN2nn3hid6system31GetXcdHandleForNpadWithIrSensorEPmj +0000000000216244 g DF .text 0000000000000060 _ZN2nn3hid6detail27UnsetDebugPadAutoPilotStateEv +00000000003b8d0c g DF .text 00000000000000b4 __memcpy_fast +000000000017ead4 g DF .text 0000000000000010 _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTaskD2Ev +000000000007b758 g DF .text 0000000000001cb8 nnmem_nlib_vsnwprintf_fallback +00000000007b7f9d g DO .rodata 0000000000000100 nnmem_nlib_popcnt_array +000000000012621c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E21_nn_sf_sync_BlockUserERKNS_7account3UidENSL_23NetworkServiceAccountIdEi +00000000001986c4 g DF .text 0000000000000008 _ZN2nn5audio23GetAudioOutSampleFormatEPKNS0_8AudioOutE +00000000000c5fc4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_GetAcquiredSleepLockEventENS0_3OutINS0_12NativeHandleEvEE +00000000000912f8 g DF .text 0000000000000004 nnosDestroyThread +000000000022ee8c g DF .text 0000000000000024 _ZN2nn3hid14VibrationMixerD0Ev +0000000000979710 w DO .data 0000000000000038 _ZTTNSt3__114basic_iostreamIcNS_11char_traitsIcEEEE +000000000005fc60 g DF .text 00000000000000b4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter12DoDeleteFileEPKc +000000000009bbd0 g DF .text 000000000000000c _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor13SetMoveHandleEij +00000000003c26d4 g DF .text 000000000000001c isspace +00000000007ca190 w DO .rodata 000000000000014e _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22IGlobalStateControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003babf8 g DF .text 000000000000003c cprojf +0000000000294efc g DF .text 0000000000000008 _ZN7android7IBinder11localBinderEv +00000000001c6104 g DF .text 0000000000000038 _ZN2nn3mii6detail21ServiceProviderClient8FinalizeEv +0000000000359444 g DF .text 0000000000000014 _ZNKSt3__115__codecvt_utf16IwLb1EE13do_max_lengthEv +00000000000fccf4 g DF .text 0000000000000060 silk_lin2log +00000000000d60c0 g DF .text 00000000000000a0 _ZN2nn4bcat22DeliveryCacheDirectory4OpenEPKc +00000000003588ac g DF .text 0000000000000110 _ZNKSt3__114__codecvt_utf8IDsE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_ +00000000003bac34 g DF .text 0000000000000070 cprojl +0000000000314778 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_8DebuggerEEEEES7_E12GetProxyInfoEv +0000000000187a44 g DF .text 000000000000001c _ZN2nn5audio17GetReverbLateGainEPKNS0_10ReverbTypeE +00000000002d0ba8 g DF .text 0000000000000138 _ZN7android7String810appendPathEPKc +00000000002a2f54 g DF .text 0000000000000104 _ZN7android24defaultHOSServiceManagerEv +00000000000c7c3c w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm8ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEESR_j +00000000001552ac g DF .text 000000000000001c _ZN2nn4nifm10InitializeEv +0000000000173d80 g DF .text 00000000000001f8 _ZN2nn8settings6detail31CreateSystemSettingsServerProxyEPNS_2sf13SharedPointerINS0_21ISystemSettingsServerEEE +000000000023e74c g DF .text 0000000000000128 _ZN22nerd_gillette_internal5otete7jaimev127DecodeShapeAndSilhouetteROKERNS1_13ShapeInPacketEPNS0_11OteteFloat2ERmmPKhmPmRKNS1_17IntensityInPacketE +00000000001d9c70 g DF .text 0000000000000070 _ZN2nn6fontll18ScalableFontEngine10InitializeEPvj +00000000002a0560 g DF .text 0000000000000038 _ZNK7android6Parcel10readDoubleEPd +0000000000189450 g DF .text 00000000000000b8 _ZN2nn5audio17MemoryPoolManager7AcquireEPvm +000000000095a530 w DO .data 0000000000000018 _ZTIN2nn5visrv2sf22IManagerDisplayServiceE +00000000001c8b3c w DF .text 00000000000001a8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENSE_ILi1ELi6ELm0EEENSE_ILi2ELi6ELm0EEENS7_17InRawArgumentInfoILm8ELm1ELl0EEEEEELm8ELm8ELb0EEESK_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEENSQ_ILm4ELm4EEENSP_24BufferClientArgumentTypeEST_ST_NSP_23InRawClientArgumentTypeILm8ELm1EvEEj +00000000000c5c64 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_GetApplicationCreatorENS0_3OutINS0_13SharedPointerINS6_19IApplicationCreatorEEEvEE +00000000000d6900 g DF .text 0000000000000174 _ZN2nn4bcat17DeliveryCacheFile5CloseEv +00000000008254cc g DO .rodata 0000000000000004 _ZTSPDh +000000000004aac8 g DF .text 0000000000000034 _ZNK2nn2fs11RomPathTool10PathParser18GetAsDirectoryNameEPNS1_12RomEntryNameE +000000000082551c g DO .rodata 0000000000000004 _ZTSPDi +000000000031833c g DF .text 0000000000000094 _ZN2nn3pcv11GetFuseInfoEPjPii +000000000094e328 w DO .data 0000000000000128 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21IApplicationFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000002a661c g DF .text 0000000000000050 _ZNK7android22IGraphicBufferConsumer10BufferItem10getFdCountEv +00000000000a8554 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEEEEELm4ELm8ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESP_NSN_23InRawClientArgumentTypeILm4ELm4EvEENSN_24BufferClientArgumentTypeEj +000000000011c2b8 g DF .text 0000000000000098 _ZN2nn3err6detail29DefaultErrorMessageDataExistsEj +0000000000825408 g DO .rodata 0000000000000004 _ZTSPDn +0000000000001568 g DF .text 0000000000000004 _ZN2nn6crypto11IsSameBytesEPKvS2_m +00000000003e0574 g DF .text 0000000000000010 lldiv +00000000007cf260 w DO .rodata 0000000000000112 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000001a4dc8 g DF .text 00000000000000c8 _ZN2nn5audio6server14DeviceSinkInfo6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPNS3_13SinkOutStatusEPKNS3_15SinkInParameterERNS1_10PoolMapperE +00000000001c7f64 g DF .text 0000000000000080 _ZN2nn2pl21RequestSharedFontLoadENS0_14SharedFontTypeE +000000000082550c g DO .rodata 0000000000000004 _ZTSPDs +000000000035a52c g DF .text 0000000000000008 _ZNKSt3__120__codecvt_utf8_utf16IwE11do_encodingEv +000000000035ad04 g DF .text 0000000000000088 _ZNSt3__115numpunct_bynameIcEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +000000000002d86c g DF .text 0000000000000038 _ZN2nn5image6detail15WriteExifHeaderEPvm +0000000000179eb0 g DF .text 0000000000000044 nnsslConnectionDestroy +0000000000236c64 g DF .text 00000000000000b4 _ZN2nn8irsensor6detail18RunMomentProcessorERKNS0_14IrCameraHandleERKNS0_21MomentProcessorConfigE +00000000007d4be7 g DO .rodata 0000000000000004 silk_uniform4_iCDF +0000000000259504 g DF .text 000000000000005c nvdcPutWindow +0000000000956540 w DO .data 0000000000000018 _ZTIN2nn3ntc6detail7service38IEnsureNetworkClockAvailabilityServiceE +000000000018fb58 g DF .text 000000000000003c _ZN2nn5audio13UpsamplerInfoC2Ev +00000000000cdff8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_SetScreenShotPermissionGloballyEb +00000000000885f4 g DF .text 000000000000019c _ZN2nn7nlibsdk4heap14TlsHeapCentral12CalcHeapHashEP8HeapHash +000000000009b66c w DF .text 00000000000000f4 _ZNK2nn2sf4hipc6client22Hipc2ClientMessageBase19GetOutNativeHandlesEPNS0_12NativeHandleE +0000000000117fcc g DF .text 0000000000000170 _ZN2nn5codec11OpusDecoder17DecodeInterleavedEPmPiPsmPKvm +00000000000a19b4 g DF .text 0000000000000018 _ZN2nn6socket10InitializeEPvmmi +0000000000135eb4 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3tma7ISocketEE19FunctionForBoolTypeEv +0000000000317c18 g DF .text 000000000000007c _ZN2nn3pcv16SetMinVClockRateENS0_6ModuleEj +0000000000148d30 g DF .text 000000000000002c _ZN2nn3ngc6detail2BpD2Ev +000000000023af30 g DF .text 0000000000000018 _ZN2nn8irsensor22RunTeraPluginProcessorERKNS0_14IrCameraHandleERKNS0_25TeraPluginProcessorConfigE +000000000015b66c g DF .text 0000000000000060 _ZN2nn2oe44SetUserInactivityDetectionTimeExtendedUnsafeEb +00000000001cd8d8 w DF .text 0000000000000040 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_OpenLayerENS0_3OutIlvEERKNS0_9OutBufferEmRKNS_2vi11DisplayNameENS_6applet20AppletResourceUserIdE +0000000000202214 g DF .text 0000000000000008 FsLtt_numComponents +00000000001a6874 g DF .text 0000000000000040 _ZN2nn5audio6server12VoiceContext8SortInfoEv +0000000000070abc g DF .text 0000000000000060 _ZN2nn4lmem6detail15CreateFrameHeapEPvmiPNS1_8HeapHeadE +000000000008289c g DF .text 0000000000000160 _ZN2nn7nlibsdk4heap12TlsHeapCacheC2EPNS1_14TlsHeapCentralEj +00000000000d13b4 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000000d8e3c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceEEEvi +00000000007e49c0 w DO .rodata 0000000000000029 _ZTSN2nn8settings24ISettingsItemKeyIteratorE +00000000000d7654 g DF .text 000000000000009c _ZN2nn4bcat6detail17ShimLibraryGlobal22CreateDirectoryServiceEPPNS1_3ipc30IDeliveryCacheDirectoryServiceE +000000000001546c g DF .text 00000000000002a0 _ZN2nn5image6detail4jpeg23jpeg_set_linear_qualityEPNS2_20jpeg_compress_structEib +000000000018c0c4 g DF .text 000000000000000c _ZN2nn5audio17GetVoicePlayStateEPKNS0_9VoiceTypeE +00000000002cb440 g DF .text 0000000000000048 _ZN7android6RegionD1Ev +000000000095de10 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000355ad0 g DF .text 0000000000000010 _ZNKSt3__15ctypeIcE9do_narrowEcc +0000000000353b38 g DF .text 0000000000000014 _ZNSt3__16localeC2ERKS0_ +0000000000118c54 g DF .text 0000000000000054 _ZN2nn5codec23GetOpusPacketFrameCountEPiPKhm +0000000000133ec8 g DF .text 000000000000006c _ZN2nn4htcs6detail5fcntlENS_2sf13SharedPointerINS_3tma7ISocketEEEiiRi +0000000000151e64 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E29_nn_sf_sync_SetNetworkProfileENS0_3OutINS_4util4UuidEvEERKNS6_2sf18NetworkProfileDataE +000000000004af20 g DF .text 000000000000006c _ZN2nn2fs11FileStorage7GetSizeEPl +00000000001a3118 g DF .text 0000000000000008 _ZNK2nn5audio6server14MemoryPoolInfo6IsUsedEv +00000000001420e4 g DF .text 000000000000003c _ZN2nn3ngc15ProfanityFilter24MaskProfanityWordsInTextEPiPcj +000000000080c460 w DO .rodata 00000000000000fe _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail9HidServerEEEEEE13ServiceObjectE +00000000003a1d70 g DF .text 0000000000000110 __fixxfti +00000000007d4c6c g DO .rodata 0000000000000020 silk_pitch_lag_iCDF +0000000000091410 g DF .text 0000000000000004 nnosClearSystemEvent +00000000000b3a48 g DF .text 00000000000000a0 _ZN2nn7account26GetUserStateChangeNotifierEPNS0_8NotifierE +0000000000168a7c g DF .text 0000000000000044 _ZN2nn8settings22SetDebugPadKeyboardMapERKNS0_19DebugPadKeyboardMapE +00000000002ab2d8 g DF .text 000000000000006c _ZN7android18BufferItemConsumer22setDefaultBufferFormatEj +00000000003a7f68 g DF .text 0000000000000048 __libc_start_main +00000000003e2020 w DF .text 00000000000000b8 strchrnul +00000000001d8fa4 g DF .text 0000000000000014 _ZN2nn6fontll18ScalableFontEngine24PickKerningFromGposTableEPNS0_15OtfKerningTableEPKvb +0000000000220450 w DF .text 0000000000000004 _ZN2nn3hid6detail19UniquePadConfigLifoD0Ev +00000000002cbf70 g DF .text 0000000000000008 _ZNK7android6Region14mergeExclusiveERKNS_4RectE +000000000009014c g DF .text 0000000000000054 _ZN2nn2os12CreateThreadEPNS0_10ThreadTypeEPFvPvES3_S3_mi +000000000018d618 g DF .text 0000000000000040 _ZNK2nn5audio6common10NodeStates8GetStateEi +000000000009af38 g DF .text 00000000000000b4 _ZN2nn2sf4hipc6client18DuplicateSessionExEPNS_3svc6HandleES4_j +00000000002cc338 g DF .text 0000000000000018 _ZN7android6Region12subtractSelfERKS0_ii +00000000001556a4 g DF .text 0000000000000084 _ZN2nn4nifm30IsAnyForegroundRequestAcceptedEv +00000000001ca0d8 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard12GetMaxHeightEv +0000000000272ab8 g DF .text 0000000000000190 NvRmStreamPushWait +0000000000228980 g DF .text 0000000000000044 _ZN2nn3hid22GetSixAxisSensorHandleEPNS0_26ConsoleSixAxisSensorHandleE +000000000006c1d0 g DF .text 00000000000000a8 _ZN2nn2fs16IsExFatSupportedEv +000000000005fb24 g DF .text 0000000000000028 _ZN2nn2fs6detail30FileSystemServiceObjectAdapterD2Ev +000000000013239c w DF .text 0000000000000214 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSK_ILm4ELm4ELl4EEENSK_ILm8ELm8ELl16EEENSC_20InHandleArgumentInfoILi0ELi1EEENSK_ILm4ELm4ELl8EEEEEELm24ELm4ELb0EEESR_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEES12_NS11_ILm8ELm8EvEENS2_26InHandleClientArgumentTypeES12_j +0000000000182d70 g DF .text 0000000000000004 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTaskD2Ev +000000000018f384 g DF .text 000000000000030c _ZN2nn5audio33ResampleOutputGetNextFrameSize6ChEPNS0_17ResamplerState6ChEiiPi +000000000011b630 g DF .text 0000000000000008 _ZNK2nn3err19ApplicationErrorArg20GetFullScreenMessageEv +00000000007f0ef0 g DO .rodata 000000000000001f _ZTSN2nn5audio6server10ReverbInfoE +000000000003d760 g DF .text 0000000000000004 _ZN2nn4util26StreamingDecompressDeflateEPmS1_PvmPKvmPNS0_30StreamingDecompressZlibContextE +00000000000c8efc w DF .text 0000000000000050 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_PushLaunchParameterEjNS0_13SharedPointerINS6_8IStorageEEE +000000000094c380 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000d7750 g DF .text 0000000000000030 _ZN2nn4bcat6detail17ShimLibraryGlobal36IncrementDeliveryCacheDirectoryCountEv +000000000017d92c g DF .text 0000000000000134 _ZN2nn4time8FinalizeEv +000000000018b8ac g DF .text 0000000000000068 _ZN2nn5audio23SplitterDestinationData14StoreParameterEPNS1_11InParameterE +00000000000bbc40 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E56_nn_sf_sync_ResumeProcedureToLinkNnidWithNintendoAccountENS0_3OutINS0_13SharedPointerINS5_4http15IOAuthProcedureEEEvEERKNSK_4UuidE +0000000000317d10 g DF .text 000000000000007c _ZN2nn3pcv17SetVoltageEnabledENS0_11PowerDomainEb +00000000000b0438 g DF .text 0000000000000070 _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfI7hostentEEmRKT_ +00000000007c4ac0 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001651f4 g DF .text 0000000000000104 _ZN2nn5prepo15GetStorageUsageEPlS1_ +0000000000232ba4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E33_nn_sf_sync_GetSharedMemoryHandleENS0_3OutINS0_12NativeHandleEvEE +000000000032820c g DF .text 0000000000000004 _ZNKSt3__121__horizon_thread_data14get_stack_sizeEv +000000000019bf74 g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem13GetVoiceCountEv +00000000007b1090 w DO .rodata 0000000000000013 _ZTSN2nn2fs3fsa5IFileE +000000000003c394 g DF .text 000000000000005c _ZNK2nn4util8BitArrayeqERKS1_ +00000000002867e0 g DF .text 000000000000000c NvRmGpuDeviceClearSmErrors +00000000002a62e0 g DF .text 0000000000000038 android_atomic_and +00000000001ce690 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_FlipIndirectLayerEm +000000000036c25c g DF .text 0000000000000020 _ZNKSt3__114error_category10equivalentERKNS_10error_codeEi +000000000008cfd4 g DF .text 0000000000000004 _ZN2nn2os20FlushEntireDataCacheEv +000000000021eccc g DF .text 00000000000000ac _ZN2nn3hid6detail33BindConnectionTriggerTimeoutEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000947640 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +000000000011c224 g DF .text 0000000000000094 _ZN2nn3err6detail14CategoryExistsEj +0000000000184eac g DF .text 0000000000000134 _ZN2nn5audio36GetAudioRendererConfigWorkBufferSizeERKNS0_22AudioRendererParameterE +000000000026b1dc g DF .text 0000000000000018 NvRmSurfaceSetDecompressionPolicy +00000000003dc10c g DF .text 0000000000000008 twalk +0000000000049cf0 w DF .text 0000000000000034 _ZN2nn2fs10SubStorage5FlushEv +00000000001a1cc4 g DF .text 0000000000000058 _ZN2nn5audio6server11InfoUpdater15UpdateErrorInfoEPNS1_12BehaviorInfoE +0000000000231f18 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E24_nn_sf_sync_ActivateXpadENS_6applet20AppletResourceUserIdENS5_11BasicXpadIdE +0000000000097980 g DF .text 00000000000000e8 _ZN2nn2ro20UnregisterModuleInfoEPNS0_16RegistrationInfoE +0000000000946fb0 w DO .data 0000000000000018 _ZTIN2nn7account19IAccountServiceBaseE +00000000007e2cc0 w DO .rodata 0000000000000036 _ZTSN2nn4pctl6detail3ipc30IParentalControlServiceFactoryE +00000000009793c0 w DO .data 0000000000000018 _ZTINSt3__120__shared_ptr_pointerIPNS_21__horizon_thread_dataEPFvS2_ENS_9allocatorIS1_EEEE +00000000001d5760 g DF .text 00000000000000f0 _ZN2nn2vi6detail18IndirectLayerTableC1Ev +00000000007adc60 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u814ConstantYellowE +000000000018ab34 g DF .text 0000000000000008 _ZN2nn5audio21GetSplitterSampleRateEPKNS0_12SplitterTypeE +00000000001b4de0 g DF .text 0000000000000088 _ZN2nn2la35PopStorageFromInteractiveOutChannelEPvm +00000000003dd798 g DF .text 000000000000000c fsetpos +00000000000cdf28 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000978b70 w DO .data 0000000000000018 _ZTIN2nn3pcv17IImmediateManagerE +00000000007d50bb g DO .rodata 0000000000000011 silk_shell_code_table_offsets +00000000003c30b0 g DF .text 000000000000006c wcswidth +00000000000ffd1c g DF .text 0000000000000014 silk_stereo_encode_mid_only +00000000001896e4 g DF .text 0000000000000074 _ZN2nn5audio10MixManagerC1EPNS0_7MixInfoEiii +000000000035bf0c g DF .text 0000000000000094 _ZNKSt3__120__time_get_c_storageIcE3__rEv +0000000000049c68 w DF .text 0000000000000088 _ZN2nn2fs10SubStorage5WriteElPKvm +00000000002b3a48 g DF .text 0000000000000004 _ZN7android12ConsumerBase23onSidebandStreamChangedEv +00000000002cb134 g DF .text 0000000000000068 _ZNK7android4Rect9intersectERKS0_PS0_ +00000000003e3dc8 g DF .text 00000000000000f8 mktime +0000000000123178 g DF .text 0000000000000008 _ZNK2nn7friends11UserSetting21GetPresencePermissionEv +00000000001a1f1c g DF .text 0000000000000004 _ZN2nn5audio6server18PerformanceManagerD2Ev +00000000003c3d64 g DF .text 0000000000000008 catgets +00000000000befc0 g DF .text 0000000000000008 _ZN2nn7account41CachedNintendoAccountInfoForSystemServiceC1Ev +00000000001b62e4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetGlassTypeEv +0000000000152b74 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +0000000000947ab0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000011b554 g DF .text 00000000000000cc _ZN2nn3err19ApplicationErrorArg15SetLanguageCodeERKNS_8settings12LanguageCodeE +0000000000142120 g DF .text 0000000000000020 _ZNK2nn3ngc15ProfanityFilter18CheckArgumentsTextEPKDs +0000000000158ed8 g DF .text 00000000000000dc _ZN2nn3nsd6detail3ipc7ResolveEPNS0_4FqdnERKS3_ +000000000017cf6c g DF .text 000000000000007c _ZN2nn4time28AdjustableNetworkSystemClock14GetCurrentTimeEPNS0_9PosixTimeE +000000000029ea64 g DF .text 00000000000000d4 _ZN7android6Parcel5writeEPKvm +00000000000c6ed8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_CreateManagedDisplayLayerENS0_3OutImvEE +00000000000e05a4 g DF .text 0000000000000448 opus_custom_decoder_ctl +0000000000007568 g DF .text 00000000000001d4 _ZN2nn6crypto6detail10Sha256Impl13ProcessBlocksEPKhm +00000000001a2fe8 g DF .text 0000000000000018 _ZN2nn5audio6server7AuxInfo26UpdateForCommandGenerationEv +000000000018ab24 g DF .text 0000000000000008 _ZN2nn5audio27GetSplitterDestinationCountEPKNS0_12SplitterTypeE +0000000000231e98 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E25_nn_sf_sync_ActivateMouseENS_6applet20AppletResourceUserIdE +00000000003e7f24 g DF .text 0000000000000058 __nnmusl___tls_get_addr +000000000018d138 g DF .text 0000000000000010 _ZN2nn5audio6common10EdgeMatrix10InitializeEPvmi +00000000001b9450 g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw11GetMoleTypeEv +00000000000c1b10 g DF .text 0000000000000030 _ZN2nn7account31NintendoAccountLinkageProcedureC2EOS1_ +00000000000453e8 g DF .text 0000000000000058 _ZN2nn4diag21RegisterAbortObserverEPNS0_19AbortObserverHolderE +00000000001d30e4 g DF .text 0000000000000098 _ZN2nn2vi20GetDisplayResolutionEPiS1_PKNS0_7DisplayE +00000000000d9760 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +000000000095bf48 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_3tmp23SixAxisSensorCountStateELi32ENS1_13AtomicStorageIS4_EEEE +0000000000255804 g DF .text 00000000000000c4 _ZN2nn3web16ShowSharePageArg13SetAlbumEntryERKNS_6capsrv10AlbumEntryE +000000000036b2fc g DF .text 0000000000000044 _ZNSt3__112strstreambufC2El +00000000000cb250 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IHomeMenuFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000000fcb78 g DF .text 000000000000006c silk_gains_ID +000000000015c3ac g DF .text 0000000000000058 _ZN2nn2oe28SetResumeNotificationEnabledEb +00000000000cdc48 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE39_nn_sf_sync_GetProcessWindingControllerENS0_3OutINS0_13SharedPointerINS6_25IProcessWindingControllerEEEvEE +000000000023f704 g DF .text 0000000000000128 _ZN22nerd_gillette_internal5otete7jaimev227DecodeShapeAndSilhouetteROKERNS0_7jaimev113ShapeInPacketEPNS0_11OteteFloat2ERmmPKhmPmRKNS2_17IntensityInPacketE +000000000024fd78 g DF .text 0000000000000034 _ZN2nn3ldn15OpenAccessPointEv +0000000000361c3c g DF .text 0000000000000004 _ZNSt3__113random_deviceD1Ev +0000000000296efc g DF .text 000000000000009c _ZNK7android7IMemory11fastPointerERKNS_2spINS_7IBinderEEEl +00000000000b9f54 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE34_nn_sf_sync_StoreSaveDataThumbnailERKNS5_3UidENS_13ApplicationIdERKNS0_8InBufferE +0000000000168780 g DF .text 0000000000000044 _ZN2nn8settings6system28GetNetworkSystemClockContextEPNS_4time18SystemClockContextE +000000000006011c g DF .text 0000000000000138 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter17DoRenameDirectoryEPKcS4_ +00000000000426b8 g DF .text 0000000000000058 _ZN2nn4edid6detail25ModeExtensionBlockVisitorEPKhmPv +00000000003dd898 g DF .text 000000000000008c ftell +00000000000c5dbc w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ICommonStateGetterENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001680e8 g DF .text 0000000000000044 _ZN2nn8settings6system27SetBluetoothDevicesSettingsEPKNS1_24BluetoothDevicesSettingsEi +00000000001b75c0 g DF .text 0000000000000020 _ZN2nn3mii6detail15GetEyeBlueColorENS0_11CommonColorENS0_9GammaTypeE +00000000002ce088 g DF .text 0000000000000060 _ZN7android8String16C2ERKS0_mm +00000000000a1880 g DF .text 0000000000000004 _ZN2nn6socket4SendEiPKvmi +0000000000185bd0 g DF .text 0000000000000030 _ZN2nn5audio15BehaviorManagerC2Ej +00000000003ddcf8 w DF .text 0000000000000090 _IO_getc +00000000002356e4 w DF .text 00000000000001e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi10ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSM_24BufferClientArgumentTypeENSM_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000100508 g DF .text 0000000000000068 silk_LTP_scale_ctrl_FIX +000000000014c138 g DF .text 0000000000000148 _ZN2nn3ngc6detail9SbvSelect5ResetEv +00000000003cfd04 g DF .text 0000000000000048 __polevll +000000000095a670 w DO .data 0000000000000018 _ZTIN2nn5visrv2sf23IApplicationRootServiceE +0000000000803bb0 w DO .rodata 0000000000000022 _ZTSN2nn3hid6detail15NpadFullKeyLifoE +00000000000057b4 w DF .text 00000000000001fc _ZN2nn6crypto6detail7AesImplILm24EE10InitializeEPKvmb +00000000001b9258 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw13GetBeardColorEv +000000000021c510 g DF .text 0000000000000074 _ZN2nn3hid6detail17StopSixAxisSensorERKNS0_19SixAxisSensorHandleE +00000000002c3920 g DF .text 0000000000000020 _ZNK7android14SurfaceControl8validateEv +0000000000947040 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_EE +00000000000c3e5c g DF .text 0000000000000160 _ZN2nn2am31FinalizeLibraryAppletInterfacesEv +00000000001d533c g DF .text 00000000000000ac _ZN2nn2vi13ObjectManager28FindValidDisplayHolderByNameEPKc +000000000095b8d0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail15TouchScreenLifoE +000000000014b6a8 g DF .text 0000000000000048 _ZN2nn3ngc6detail17MemoryInputStream11FillBuffer_EPvm +00000000003df704 g DF .text 00000000000000c4 vsnprintf +00000000002c8c34 g DF .text 000000000000002c _ZN7android11DisplayEDIDD2Ev +00000000003d2edc g DF .text 0000000000000108 wcrtomb +000000000039993c g DF .text 0000000000000064 unw_get_reg +0000000000183a78 g DF .text 000000000000003c _ZN2nn3aoc19PrepareAddOnContentEi +00000000001b92c8 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw15GetMustacheTypeEv +000000000039cc4c g DF .text 0000000000000008 _Unwind_GetIPInfo +000000000006c884 g DF .text 0000000000000034 _ZN2nn2fs6detail27StorageServiceObjectAdapter5WriteElPKvm +0000000000118b7c g DF .text 0000000000000040 _ZN2nn5codec32GetOpusPacketSampleCountInPacketEPKhmi +000000000006731c g DF .text 00000000000001b8 _ZN2nn2fs20DeleteSystemSaveDataENS0_15SaveDataSpaceIdEmRKNS0_6UserIdE +00000000000bf3c8 g DF .text 0000000000000008 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarC1EPNS0_4baas28IFloatingRegistrationRequestE +0000000000958b00 w DO .data 0000000000000018 _ZTIN2nn2sf4impl6detail16ImplTemplateBaseINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_EE +00000000007b6400 w DO .rodata 000000000000006d _ZTSN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEEE +00000000000cf1ac w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSG_ILm1ELm1ELl1EEEEEELm0ELm2ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEESR_j +00000000002c87a0 g DF .text 00000000000000e0 sync_close +00000000001e2aac g DF .text 000000000000002c unload_cmap_cache +0000000000234710 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E12GetProxyInfoEv +0000000000075954 g DF .text 00000000000001a4 nnmem_nlib_memcplen +000000000013f8a0 g DF .text 0000000000000104 _ZN2nn3nfp19StartGameDataEraserEPNS0_7TagInfoEPNS0_12DeviceHandleERKNS0_24AmiiboSettingsStartParamE +0000000000156968 g DF .text 000000000000001c _ZN2nn4nifm21SetRequestKeptInSleepENS0_13RequestHandleEb +00000000002163d8 g DF .text 0000000000000070 _ZN2nn3hid5debug6detail24InitializeFirmwareUpdateEv +00000000001ce59c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_SetLayerZEml +000000000006fd64 g DF .text 0000000000000094 _ZN2nn4lmem6detail13CreateExpHeapEPvmi +000000000021ef68 g DF .text 0000000000000030 _ZN2nn3hid6detail31FinalizeSharedMemoryForRingLifoEPNS_2os16SharedMemoryTypeE +0000000000956d50 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags16LongSizePreDelayE +000000000035bddc g DF .text 0000000000000090 _ZNKSt3__120__time_get_c_storageIcE3__cEv +0000000000978900 w DO .data 0000000000000128 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000003a9114 g DF .text 0000000000000084 setstate +000000000095db40 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_EE +00000000003c32e8 g DF .text 000000000000000c __ctype_b_loc +000000000009c040 g DF .text 0000000000000068 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase16RegisterPortImplEPNS4_15PortForAllInOneENS_3svc6HandleE +00000000001b4304 g DF .text 00000000000000b8 _ZN2nn7friends18ShowUserDetailInfoERKNS_7account3UidERKNS1_23NetworkServiceAccountIdERKNS0_15InAppScreenNameESA_ +0000000000396ac0 g DF .text 0000000000000024 _ZNSt8bad_castD0Ev +000000000039fecc g DF .text 0000000000000274 __divsc3 +00000000003cd6a0 g DF .text 0000000000000118 nexttowardf +00000000001b98bc g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw11SetHairFlipEi +0000000000357d24 g DF .text 0000000000000008 _ZNKSt3__17codecvtIDsc11__mbstate_tE16do_always_noconvEv +000000000006f7c4 g DF .text 0000000000000054 _ZN2nn4lmem27GetFrameHeapAllocatableSizeEPNS0_6detail8HeapHeadEi +000000000032c668 w DF .text 0000000000000064 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4swapERS3_ +0000000000286f00 g DF .text 0000000000000024 NvRmGpuTaskSchedulingGroupSetInterleave +00000000000be048 w DF .text 0000000000000330 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm17EE27InitializeShimLibraryHolderINS_7account24IBaasAccessTokenAccessorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS5_EEE_clESH_ +00000000003cd7b8 g DF .text 0000000000000004 nexttowardl +00000000003bafac g DF .text 0000000000000270 csinhf +0000000000825290 g DO .rodata 0000000000000021 _ZTSN10__cxxabiv116__shim_type_infoE +00000000000bfdac g DF .text 0000000000000048 _ZN2nn7account28NetworkServiceAccountManager4SwapERS1_ +000000000019cd64 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E16_nn_sf_sync_StopEv +00000000000c9e0c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000d481c g DF .text 00000000000000dc _ZN2nn6applet26RequestToLaunchApplicationENS_3ncm13ApplicationIdENS0_13StorageHandleE +000000000017022c g DF .text 0000000000000070 _ZN2nn8settings6detail22GetTelemetryDirtyFlagsEPNS_4util10BitFlagSetILi128ENS0_6system18TelemetryDirtyFlagEEE +000000000018c0d0 g DF .text 0000000000000038 _ZN2nn5audio13SetVoicePitchEPNS0_9VoiceTypeEf +000000000019e964 g DF .text 0000000000000138 _ZN2nn5audio6server13CommandBuffer22GenerateDownMixCommandEiPKaS4_PKij +00000000003bb21c g DF .text 000000000000005c csinhl +00000000003c3c58 g DF .text 0000000000000030 fegetexceptflag +000000000016fa50 g DF .text 0000000000000070 _ZN2nn8settings6detail17GetLockScreenFlagEPb +0000000000264e50 g DF .text 0000000000000058 _ZN2nv16FinalizeGraphicsEv +00000000003b32fc g DF .text 0000000000000008 __nnmusl_force_sub +000000000002f624 g DF .text 0000000000000020 _ZN2nn5image11ExifBuilder11SetSoftwareEPKcm +00000000007c8b90 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000ea584 g DF .text 0000000000000050 isqrt32 +000000000018bfb8 g DF .text 0000000000000040 _ZN2nn5audio19SetVoiceDestinationEPNS0_19AudioRendererConfigEPNS0_9VoiceTypeEPNS0_12SplitterTypeE +000000000035a9b4 g DF .text 0000000000000008 _ZNKSt3__18numpunctIwE16do_decimal_pointEv +000000000024f870 g DF .text 00000000000000f8 _ZN2nn3ldn17InitializeMonitorEv +00000000003652ec w DF .text 0000000000000030 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC2ERKS5_RKS4_ +00000000003c2cec w DF .text 000000000000003c iswpunct_l +00000000000d2e78 g DF .text 0000000000000008 _ZN2nn6applet26GetLibraryAppletExitReasonENS0_19LibraryAppletHandleE +00000000007ac650 g DO .rodata 0000000000000014 _ZN2nn4util6detail15CosCoefficientsE +000000000025a824 g DF .text 0000000000000008 nvdcScrncaptGetInfo +000000000018c7fc g DF .text 0000000000000084 _ZN2nn5audio16VoiceInfoManager16GetFreeVoiceInfoEv +0000000000341e74 w DF .text 000000000000005c _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE12__get_minuteERiRS4_S4_RjRKNS_5ctypeIcEE +00000000003c31d8 w DF .text 000000000000001c towctrans_l +00000000007cb430 w DO .rodata 0000000000000103 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000adc40 g DF .text 0000000000000024 _ZN2nn6socket8resolver11GetNameInfoEPK8sockaddrjPcmS5_mi +0000000000256960 g DF .text 0000000000000090 _ZN2nn3web14ShowWebPageArg21SetJsExtensionEnabledEb +00000000000a18b8 g DF .text 0000000000000004 _ZN2nn6socket6SocketEiii +000000000014b5f8 w DF .text 0000000000000004 _ZN2nn3ngc6detail11InputStreamD2Ev +000000000029bce0 g DF .text 0000000000000128 _ZN7android12MemoryDealerC1EmPKcj +0000000000329254 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE7seekposENS_4fposI11__mbstate_tEEj +00000000002c8f4c g DF .text 0000000000000008 _ZNK7android5Fence16getFlattenedSizeEv +0000000000160d00 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E28_nn_sf_sync_GetUnlinkedEventENS0_3OutINS0_12NativeHandleEvEE +00000000001b66f8 g DF .text 0000000000000020 _ZN2nn3mii26CompareStoreDataForMiiEditERKNS0_9StoreDataES3_ +00000000007e5a30 w DO .rodata 0000000000000152 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +00000000003ab0e0 g DF .text 0000000000000004 __pthread_key_create +0000000000239924 g DF .text 0000000000000028 _ZN2nn8irsensor6detail15IrSensorSession17GetIrCameraStatusERKNS0_14IrCameraHandleE +00000000002b4e44 g DF .text 0000000000000008 _ZN7android19IGraphicBufferAllocD2Ev +00000000003c2908 g DF .text 00000000000001b4 wctype +00000000000bf8e8 g DF .text 00000000000000a0 _ZN2nn7account36EnsureNetworkServiceAccountAvailableERKNS0_10UserHandleE +0000000000234f38 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E45_nn_sf_sync_ResetAnalogStickManualCalibrationENS5_6system11UniquePadIdEl +0000000000364ff4 w DF .text 0000000000000098 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEPKc +0000000000327fc0 g DF .text 0000000000000090 _ZNSt3__120__threads_data_queue23reclaim_exhausted_nodesEv +00000000007c8ff0 w DO .rodata 0000000000000108 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000016e804 g DF .text 0000000000000070 _ZN2nn8settings6detail24SetPtmFuelGaugeParameterERKNS0_6system21PtmFuelGaugeParameterE +00000000001a5b6c g DF .text 0000000000000060 _ZN2nn5audio6server9VoiceInfo15UpdatePlayStateEh +00000000002c75b4 g DF .text 0000000000000084 _ZN7android21SurfaceComposerClient24clearAnimationFrameStatsEv +0000000000188558 g DF .text 0000000000000028 _ZN2nn5audio33GetI3dl2ReverbLateReverbDecayTimeEPKNS0_15I3dl2ReverbTypeE +000000000082544c g DO .rodata 0000000000000004 _ZTSPKa +00000000000098b8 w DF .text 0000000000000558 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE13EncryptUpdateEPvmPKvm +000000000003bff0 g DF .text 0000000000000088 _ZN2nn4util8BitArray3NotEPS1_RKS1_ +00000000007dd900 w DO .rodata 0000000000000021 _ZTSN2nn3nfp6detail14ISystemManagerE +000000000082541c g DO .rodata 0000000000000004 _ZTSPKb +000000000018f6dc g DF .text 00000000000002a0 _ZN2nn5audio19InitializeResamplerEPNS0_13ResamplerTypeEPvmiii +0000000000314040 w DF .text 00000000000001c8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSI_ILm8ELm8ELl8EEEEEELm16ELm0ELb1EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEENST_ILm8ELm8EvEEj +0000000000825434 g DO .rodata 0000000000000004 _ZTSPKc +00000000002c6ee8 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient9enableVRRERKNS_2spINS_7IBinderEEEb +00000000008254ec g DO .rodata 0000000000000004 _ZTSPKd +000000000032cc28 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERb +00000000008254f8 g DO .rodata 0000000000000004 _ZTSPKe +000000000029704c g DF .text 0000000000000054 _ZNK7android7IMemory4sizeEv +0000000000825210 g DO .rodata 0000000000000012 _ZTSSt13runtime_error +00000000008254e0 g DO .rodata 0000000000000004 _ZTSPKf +00000000003ab0b8 g DF .text 0000000000000004 pthread_cond_destroy +0000000000286298 g DF .text 0000000000000060 nvgr_set_gpu_mapping +000000000032d7cc w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERd +0000000000825504 g DO .rodata 0000000000000004 _ZTSPKg +0000000000164ce8 g DF .text 000000000000010c _ZN2nn5prepo21GetTransmissionStatusEPNS0_18TransmissionStatusE +000000000032e78c w DF .text 0000000000000150 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE8readsomeEPwl +000000000032d8e8 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERe +0000000000825440 g DO .rodata 0000000000000004 _ZTSPKh +000000000032d6b0 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERf +0000000000825470 g DO .rodata 0000000000000004 _ZTSPKi +000000000017d340 g DF .text 000000000000008c _ZN2nn4time25AdjustableUserSystemClock21GetSystemClockContextEPNS0_18SystemClockContextE +000000000082547c g DO .rodata 0000000000000004 _ZTSPKj +000000000017500c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E46_nn_sf_sync_GetServiceDiscoveryControlSettingsENS0_3OutINS5_6system31ServiceDiscoveryControlSettingsEvEE +000000000016c2d0 g DF .text 0000000000000070 _ZN2nn8settings6detail28GetNetworkSystemClockContextEPNS_4time18SystemClockContextE +000000000032e3c0 w DF .text 00000000000001bc _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE6ignoreElj +000000000032cfc0 w DF .text 0000000000000164 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERi +0000000000825488 g DO .rodata 0000000000000004 _ZTSPKl +000000000032d124 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERj +0000000000825494 g DO .rodata 0000000000000004 _ZTSPKm +00000000008254b8 g DO .rodata 0000000000000004 _ZTSPKn +000000000032d240 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERl +00000000008254c4 g DO .rodata 0000000000000004 _ZTSPKo +0000000000176f48 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm24ELm1ELl0EEEEEELm24ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm24ELm1EvEEj +0000000000291f7c g DF .text 000000000000018c NvWsiNativeDisplayRef +000000000032d35c w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERm +0000000000160b30 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_GetPairingAccountInfoENS0_3OutINS6_22PairingAccountInfoBaseEvEERKNS6_15PairingInfoBaseE +00000000001c3558 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetReserved2Ei +0000000000825458 g DO .rodata 0000000000000004 _ZTSPKs +000000000032b780 w DF .text 0000000000000208 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE7getlineEPclc +0000000000825464 g DO .rodata 0000000000000004 _ZTSPKt +00000000009504d8 g DO .data 0000000000000068 _ZTVN2nn5codec11OpusDecoderE +000000000032cd44 w DF .text 0000000000000160 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERs +0000000000825400 g DO .rodata 0000000000000004 _ZTSPKv +000000000032cea4 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERt +0000000000825428 g DO .rodata 0000000000000004 _ZTSPKw +000000000014063c g DF .text 0000000000000118 _ZN2nn3nfp7RestoreERKNS0_12DeviceHandleE +000000000032c8bc w DF .text 0000000000000108 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5flushEv +00000000008254a0 g DO .rodata 0000000000000004 _ZTSPKx +00000000000d9268 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000217e3c g DF .text 000000000000002c _ZN2nn3hid6detail19GetXpadPlayerNumberEPiRKNS0_9JoyXpadIdE +0000000000228eb8 g DF .text 0000000000000044 _ZN2nn3hid17InitializeGestureEv +00000000008254ac g DO .rodata 0000000000000004 _ZTSPKy +000000000022b6ec g DF .text 0000000000000058 _ZN2nn3hid6system16GetNpadPowerInfoERKj +0000000000250398 g DF .text 00000000000000e0 _ZN2nn3ldn14ConnectPrivateERKNS0_13NetworkConfigERKNS0_14SecurityConfigERKNS0_17SecurityParameterERKNS0_10UserConfigEi +000000000029f940 g DF .text 0000000000000040 _ZN7android6Parcel19writeFileDescriptorEib +000000000032d478 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERx +000000000036c9d4 g DF .text 00000000000000d8 _ZNSt3__112system_errorC2EiRKNS_14error_categoryERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +0000000000093940 g DF .text 0000000000000060 _ZN2nn2os6detail37MultiWaitHolderOfMessageQueueNotEmpty20RemoveFromObjectListEv +000000000032d594 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERy +000000000039f938 g DF .text 0000000000000280 __divdc3 +0000000000222f68 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm7EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +0000000000180b5c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E54_nn_sf_sync_CalculateMonotonicSystemClockBaseTimePointENS0_3OutIlvEERKNSL_18SystemClockContextE +0000000000095b6c g DF .text 0000000000000048 _ZN2nn2os6detail26ThreadManagerImplByHorizon11StartThreadEPKNS0_10ThreadTypeE +000000000016858c g DF .text 0000000000000044 _ZN2nn8settings6system30SetExternalSteadyClockSourceIdERKNS_4util4UuidE +0000000000171128 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_GetSerialNumberENS0_3OutINS5_7factory12SerialNumberEvEE +0000000000a258d0 g DO .bss 0000000000000020 _ZN2nn2vi13ObjectManager11m_LayerLockE +00000000001685d0 g DF .text 0000000000000050 _ZN2nn8settings6system19GetShutdownRtcValueEv +000000000009158c g DF .text 0000000000000068 _ZN2nn2os6detail23CreateInterProcessEventEPNS1_21InterProcessEventTypeENS0_14EventClearModeE +0000000000399adc g DF .text 000000000000000c unw_step +000000000019ce6c w DF .text 00000000000000bc _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImplC2EPS2_ +0000000000165db0 g DF .text 0000000000000078 _ZN2nn5prepo6detail9VerifyKeyEPKcm +0000000000942678 w DO .data 0000000000000010 _ZTIN2nn2sf4impl6detail22ServiceObjectImplBase2E +00000000002a645c g DF .text 0000000000000008 set_sched_policy +000000000000adc4 g DF .text 0000000000000094 _ZN2nn5image6detail4jpeg19jinit_arith_encoderEPNS2_20jpeg_compress_structE +0000000000081ae0 g DF .text 000000000000004c nnmem_nlib_thread_setname +00000000001c3318 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetEyeColorEi +00000000009590a0 g DO .data 0000000000000018 _ZTIN2nn5audio6server10ReverbInfoE +00000000001fe9b4 g DF .text 0000000000000078 get_dropout_control +000000000018c47c g DF .text 000000000000002c _ZN2nn5audio14GetVoiceNodeIdEPKNS0_9VoiceTypeE +000000000036d734 g DF .text 0000000000000018 _ZNSt3__122__libcpp_mutex_destroyEPN2nn2os9MutexTypeE +00000000003631b0 w DF .text 000000000000004c _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE2atEm +0000000000149290 g DF .text 0000000000000084 _ZNK2nn3ngc6detail2Bp7EncloseEj +000000000023227c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E38_nn_sf_sync_ResetAccelerometerPlayModeENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +000000000018b228 g DF .text 000000000000003c _ZN2nn5audio12SplitterInfo10InitializeEi +0000000000235ec4 g DF .text 00000000000001f8 _ZN2nn3hid6detail29CreateHidTemporaryServerProxyEPNS_2sf13SharedPointerINS0_19IHidTemporaryServerEEE +00000000003a0140 g DF .text 00000000000001f8 __divsf3 +0000000000150ff0 g DF .text 000000000000008c _ZN2nn4nifm6detail13RequestClient23GetLibaryAppletArgumentEPNS_6applet8AppletIdEPNS3_17LibraryAppletModeEPmPvm +000000000017f454 g DF .text 0000000000000008 _ZN2nn4time26StandardNetworkSystemClock9to_time_tERKNSt3__16chrono10time_pointINS0_17SystemClockTraitsENS3_8durationIlNS2_5ratioILl1ELl1EEEEEEE +00000000002c57d4 g DF .text 0000000000000014 _ZNK7android21SurfaceComposerClient10connectionEv +000000000022e384 g DF .text 000000000000005c _ZN2nn3hid6system14ListUniquePadsEPNS1_11UniquePadIdEi +000000000095d690 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail15HidSystemServerEEEEEE13ServiceObjectE +0000000000954278 w DO .data 00000000000002e0 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc23IParentalControlServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000001d98dc w DF .text 0000000000000374 _ZNSt3__127__insertion_sort_incompleteIRPFbRKN2nn6fontll15OtfKerningTable11KerningPairES6_EPS4_EEbT0_SB_T_ +00000000001c0588 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetGlassScaleEv +0000000000117a00 g DF .text 0000000000000004 _ZN2nn5codec30HardwareOpusMultiStreamDecoderD2Ev +000000000014ab0c g DF .text 0000000000000050 _ZN2nn3ngc6detail11InputStream5CloseEv +00000000003b3304 g DF .text 0000000000000008 __nnmusl_force_subf +000000000004d4b0 g DF .text 00000000000000ac _ZN2nn2fs6detail18FileSystemAccessor10CreateFileEPKcli +00000000000660c4 g DF .text 0000000000000198 _ZN2nn2fs14MountRomOnFileEPKcNS0_10FileHandleEPvm +00000000009502e0 g DO .data 0000000000000018 silk_LTP_vq_gain_ptrs_Q7 +00000000001a55b4 g DF .text 000000000000006c _ZN2nn5audio6server10WaveBufferC2Ev +0000000000329838 w DF .text 0000000000000010 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5pbumpEi +0000000000358e00 g DF .text 0000000000000018 _ZNKSt3__114__codecvt_utf8IDiE13do_max_lengthEv +00000000001749f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_SetInitialLaunchSettingsERKNS5_6system21InitialLaunchSettingsE +00000000003c4ce8 g DF .text 00000000000000b4 __nl_langinfo +00000000007c19b0 w DO .rodata 0000000000000173 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEEE +000000000024bda4 g DF .text 0000000000000004 _ZN2nn3kpr15KeyCodeComposerC1Ev +0000000000082218 g DF .text 0000000000000074 nnmem_nlib_is_dir +00000000007c76c0 w DO .rodata 000000000000010c _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000be8fc w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000c73b0 w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSG_ILm4ELm4ELl8EEENSG_ILm4ELm4ELl12EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEEST_ST_ST_j +00000000001c86a0 g DF .text 0000000000000154 _ZN2nn2pl13GetSharedFontEPiPNS0_14SharedFontDataEiNS_8settings12LanguageCodeE +00000000001a0c28 g DF .text 0000000000000024 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_10MixCommandE +0000000000126090 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_RejectFriendRequestERKNS_7account3UidENS5_9RequestIdE +00000000001bfbbc g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw16GetEyebrowAspectEv +00000000002c7638 g DF .text 000000000000008c _ZN7android21SurfaceComposerClient22getAnimationFrameStatsEPNS_10FrameStatsE +0000000000144930 g DF .text 0000000000000024 _ZN2nn3ngc6memsetEPvim +0000000000946158 w DO .data 0000000000000068 _ZTVN2nn2sf4hipc6server18Hipc2ServerMessageE +00000000003a1eb4 g DF .text 00000000000000bc __floatdisf +0000000000156700 g DF .text 000000000000009c _ZN2nn4nifm28GetCurrentAccessPointChannelEPt +00000000007f7d98 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail22RandomMiiHairTypeTableE +00000000003c2574 g DF .text 0000000000000014 __isalpha_l +0000000000090050 g DF .text 0000000000000070 _ZN2nn2os16ReleaseSemaphoreEPNS0_13SemaphoreTypeEi +000000000006fac8 g DF .text 000000000000004c _ZN2nn4lmem20AllocateFromUnitHeapEPNS0_6detail8HeapHeadE +000000000008f3b0 g DF .text 000000000000006c _ZN2nn2os9LockMutexEPNS0_9MutexTypeE +00000000002d18b0 g DF .text 000000000000001c strcmp16 +000000000008ea64 g DF .text 00000000000000b4 _ZN2nn2os15JamMessageQueueEPNS0_16MessageQueueTypeEm +00000000002397d4 g DF .text 0000000000000054 _ZNK2nn8irsensor6detail15IrSensorSession13GetMomentLifoERKNS0_14IrCameraHandleE +00000000009a9138 g DO .bss 0000000000000008 _ZN2nn2ro6detail17g_pManualLoadListE +000000000007da30 g DF .text 00000000000000d8 nnmem_nlib_strto_uint64_fallback +0000000000236140 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEES6_E17GetCmifBaseObjectEv +00000000000bb338 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE42_nn_sf_sync_SetSystemProgramIdentificationERKNS5_27SystemProgramIdentificationEm +00000000001c33b8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw16SetEyebrowRotateEi +000000000025d190 g DF .text 0000000000000004 NvOsFtruncate +00000000000b25d8 g DF .text 0000000000000028 _ZN2nn7account6detail25CheckInternetAvailabilityEv +00000000007c3960 g DO .rodata 000000000000001c _ZTSN2nn7account12AsyncContextE +000000000094da80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service19ILibraryAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000009aac04 g DO .bss 0000000000000001 _ZN2nn6socket8resolver3tls27g_DidAlreadyAllocateTlsSlotE +00000000000b9a34 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE28_nn_sf_sync_GetUserExistenceENS0_3OutIbvEERKNS5_3UidE +00000000001c9f0c g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard12SetInputTextERKNS0_9InputTextE +000000000035e744 g DF .text 0000000000000070 _ZNSt3__112ctype_bynameIcED2Ev +0000000000286908 g DF .text 000000000000001c NvRmGpuAddressSpaceCreate +0000000000174514 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_GetTvSettingsENS0_3OutINS5_6system10TvSettingsEvEE +00000000001d2f34 g DF .text 0000000000000094 _ZN2nn2vi17GetZOrderCountMinEPKNS0_7DisplayE +00000000002c8d0c g DF .text 0000000000000008 _ZNK7android11DisplayEDID7getSizeEv +00000000003a1b68 g DF .text 000000000000005c __fixunsxfdi +0000000000234b1c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E37_nn_sf_sync_SetAruidValidForVibrationENS_6applet20AppletResourceUserIdEb +0000000000255cd0 g DF .text 000000000000005c _ZNK2nn3web20SharePageReturnValue14GetLastUrlSizeEv +0000000000048c04 g DF .text 0000000000000194 _ZN2nn2fs24HierarchicalRomFileTable8FindOpenEPNS1_12FindPositionEi +000000000021f8e4 g DF .text 0000000000000008 _ZN2nn3hid6detail20SharedMemoryAccessor33SetResultActivationUpperLimitOverENS_6ResultE +00000000003e0ed4 g DF .text 0000000000000094 strtoimax +000000000020fcbc g DF .text 00000000000002a0 squeeze_table_ptrs +0000000000286954 g DF .text 000000000000000c NvRmGpuAddressSpaceGetInfo +00000000002398d0 g DF .text 0000000000000054 _ZNK2nn8irsensor6detail15IrSensorSession17GetTeraPluginLifoERKNS0_14IrCameraHandleE +000000000017dcf0 g DF .text 0000000000000080 _ZN2nn4time11IsValidDateEiii +00000000001f9db0 g DF .text 0000000000000080 get_glyph_parms +0000000000223904 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm2EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +00000000003240ec g DF .text 0000000000000018 _ZNSt3__118condition_variable10notify_allEv +0000000000958e78 w DO .data 0000000000000028 _ZTVN2nn5audio6server10EffectInfoILNS0_10EffectTypeE1ENS0_20BufferMixerParameterEEE +00000000003c2674 g DF .text 0000000000000030 ispunct +0000000000049458 g DF .text 00000000000000e0 _ZN2nn2fs24HierarchicalRomFileTable14GetGrandparentEPjPNS1_8EntryKeyEPNS1_17DirectoryRomEntryEjNS0_11RomPathTool12RomEntryNameEPKc +000000000004c55c g DF .text 0000000000000064 _ZN2nn2fs15RomFsFileSystem27DoCleanDirectoryRecursivelyEPKc +000000000029f610 g DF .text 0000000000000090 _ZN7android6Parcel15writeWeakBinderERKNS_2wpINS_7IBinderEEE +0000000000353b0c g DF .text 000000000000002c _ZNSt3__16localeC1Ev +000000000039d8a8 g DF .text 000000000000007c __floatditf +0000000000040a24 g DF .text 000000000000018c _ZN2nn4util37GetLengthOfConvertedStringUtf8ToUtf32EPiPKc +0000000000224428 w DF .text 000000000000018c _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm4EEEEEiPT_i +0000000000351314 g DF .text 0000000000000078 _ZNSt3__16locale7classicEv +0000000000121e8c g DF .text 0000000000000008 _ZNK2nn7friends11BlockedUser11GetNicknameEv +00000000003cb1f4 g DF .text 000000000000070c __lgammaf_r +0000000000316fd8 w DF .text 00000000000001dc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi34ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000003c2b5c g DF .text 0000000000000028 iswlower +00000000007e10b0 w DO .rodata 0000000000000160 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000232174 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E44_nn_sf_sync_GetSixAxisSensorFusionParametersENS0_3OutIfvEESL_NS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +000000000027af98 g DF .text 00000000000000dc NvBlitQuery +00000000008043b0 w DO .rodata 000000000000004f _ZTSN2nn3hid6detail8RingLifoINS1_15UniquePadConfigELi1ENS1_13AtomicStorageIS3_EEEE +000000000095c7b0 g DO .data 0000000000000018 _ZTIN2nn3hid14VibrationMixerE +0000000000a80c70 w DO .bss 0000000000000010 _ZNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2idE +000000000002e5d4 g DF .text 0000000000000018 _ZN2nn5image11JpegDecoder24SetResolutionDenominatorEi +0000000000119050 g DF .text 000000000000003c _ZN2nn5codec6detail22SetApplicationInternalEP11OpusEncoderNS0_15OpusApplicationE +00000000001bc864 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw13GetBeardColorEv +00000000003625dc g DF .text 000000000000002c _ZNSt11logic_errorC1ERKS_ +000000000008d17c g DF .text 000000000000004c _ZN2nn2os19GetCurrentStackInfoEPmS1_ +00000000000b2498 g DF .text 0000000000000028 _ZN2nn7account6detail18OAuthProcedureBaseD2Ev +00000000000bf2a4 g DF .text 0000000000000040 _ZNK2nn7account33ExternalNetworkServiceAccountInfo11GetNicknameEPNS0_8NicknameE +00000000001c31e8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetRoomIndexEi +0000000000228374 g DF .text 0000000000000048 _ZN2nn3hid6system30EnableAppletToGetSixAxisSensorERKNS_6applet20AppletResourceUserIdEb +00000000003652ec w DF .text 0000000000000030 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC1ERKS5_RKS4_ +00000000003a17b0 g DF .text 0000000000000028 __fixsfdi +00000000001b6730 g DF .text 000000000000001c _ZN2nn3mii19IsEnabledSpecialMiiEv +0000000000326364 g DF .text 0000000000000014 _ZSt17rethrow_exceptionSt13exception_ptr +000000000039fbb8 g DF .text 000000000000025c __divdf3 +00000000000b5390 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_7profile8IProfileEEEvi +00000000007c60f0 w DO .rodata 00000000000000fa _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000c1940 g DF .text 0000000000000018 _ZN2nn7account8NotifierC1EPNS0_6detail9INotifierE +00000000001c74a4 g DF .text 0000000000000010 _ZN2nn3mii11AppletInput10InitializeENS0_10AppletModeEi +0000000000330b14 w DF .text 0000000000000120 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE3putEc +00000000003d2ae0 g DF .text 00000000000002cc mbsrtowcs +000000000017ab90 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E31_nn_sf_sync_SetInterfaceVersionEj +00000000003ab23c g DF .text 000000000000003c __clock_gettime +000000000022ebdc g DF .text 000000000000007c _ZN2nn3hid23GetActualVibrationValueEPNS0_14VibrationValueERKNS0_21VibrationDeviceHandleE +0000000000239a34 g DF .text 0000000000000008 _ZN2nn8irsensor6detail15IrSensorSession20IsSharedMemoryMappedEv +000000000031c07c w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIaaEEPaEEjT0_S5_S5_S5_S5_T_ +000000000004b4a4 w DF .text 0000000000000038 _ZN2nn2fs17FileHandleStorageD0Ev +0000000000950298 g DO .data 0000000000000018 silk_LTP_gain_iCDF_ptrs +0000000000231f3c w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E22_nn_sf_sync_GetXpadIdsENS0_3OutIlvEERKNS0_8OutArrayINS5_11BasicXpadIdEEE +00000000001bc844 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetNoseTypeEv +0000000000805270 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi84EE4MaskE +000000000006d1e0 g DF .text 000000000000009c _ZN2nn3htc32BindHostConnectionEventForSystemEPNS_2os11SystemEventE +00000000003dc750 g DF .text 0000000000000018 __fpurge +00000000002327fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E39_nn_sf_sync_BeginPermitVibrationSessionENS_6applet20AppletResourceUserIdE +000000000004b75c g DF .text 00000000000000c0 _ZN2nn2fs6detail13IsAbortNeededENS_6ResultE +00000000000c2910 g DF .text 000000000000004c _ZN2nn2am27GetProcessWindingControllerEv +0000000000157b90 g DF .text 000000000000000c _ZN2nn4nifm6detail16SsidListAccessorC2Ev +00000000000fd234 g DF .text 000000000000036c silk_resampler_init +00000000003ab0c4 w DF .text 0000000000000004 pthread_cond_timedwait +000000000016b5e0 g DF .text 0000000000000070 _ZN2nn8settings6detail18GetAccountSettingsEPNS0_6system15AccountSettingsE +00000000002d0eac g DF .text 0000000000000034 _ZN7android6ThreadD0Ev +000000000036cdcc g DF .text 0000000000000058 _ZNSt3__16thread4joinEv +00000000000cc584 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_GetMainAppletStorageIdENS0_3OutINS_3ncm9StorageIdEvEE +00000000000f126c g DF .text 00000000000000c0 silk_LPC_inverse_pred_gain +000000000015ef8c g DF .text 0000000000000008 _ZN2nn4pctl11PairingInfoC2Ev +000000000008f4bc g DF .text 0000000000000018 _ZN2nn2os28IsMutexLockedByCurrentThreadEPKNS0_9MutexTypeE +000000000014ad0c g DF .text 0000000000000240 _ZN2nn3ngc6detail11InputStream5Read_EPvm +000000000009642c g DF .text 0000000000000048 _ZN2nn2os6detail30InterProcessEventImplByHorizon6SignalEj +000000000023a6e4 g DF .text 000000000000000c _ZN2nn8irsensor6detail15IrSensorSession35ThrowResultActivationUpperLimitOverEv +00000000003a0338 g DF .text 0000000000000030 __divsi3 +0000000000140934 g DF .text 0000000000000128 _ZN2nn3nfp15GetRegisterInfoEPNS0_12RegisterInfoERKNS0_12DeviceHandleE +000000000009e7c4 w DF .text 00000000000000c8 _ZN2nn2sf4hipc6server18Hipc2ServerMessage19SetOutNativeHandlesEPNS0_12NativeHandleE +00000000000c8870 w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSG_ILm4ELm4ELl4EEEEEELm0ELm8ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENSQ_ILm4ELm4EEEj +00000000001b624c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor15GetEyebrowColorEv +00000000001cda64 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E51_nn_sf_sync_GetIndirectLayerImageRequiredMemoryInfoENS0_3OutIlvEESH_ll +0000000000124178 g DF .text 000000000000015c _ZN2nn7friends6detail24NormalizeInAppScreenNameEPNS0_15InAppScreenNameERKS2_ +00000000003c3ce4 g DF .text 000000000000003c feupdateenv +0000000000331144 w DF .text 000000000000004c _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryC1ERS3_ +000000000097bd90 w DO .data 0000000000000038 _ZTINSt3__110moneypunctIcLb1EEE +00000000000b54c0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E12GetProxyInfoEv +00000000000cdb20 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE32_nn_sf_sync_GetDisplayControllerENS0_3OutINS0_13SharedPointerINS6_18IDisplayControllerEEEvEE +000000000012a948 g DF .text 0000000000000200 _ZN2nn2fs31QueryMountAddOnContentCacheSizeEPmi +00000000003642c4 w DF .text 00000000000000a4 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5eraseEmm +00000000001c33e8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetNoseTypeEi +000000000031a074 g DF .text 0000000000000058 _ZN2nn3pwm9GetPeriodEPNS0_14ChannelSessionE +0000000000364e58 w DF .text 000000000000008c _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEmmPKcm +000000000017cfe8 g DF .text 000000000000000c _ZN2nn4time28AdjustableNetworkSystemClock6AdjustEv +00000000002d2b40 g DF .text 0000000000000058 _ZN7android10VectorImpl4pushEv +0000000000122854 g DF .text 000000000000003c _ZN2nn7friends17NotificationQueue14GetSystemEventEv +000000000013de80 g DF .text 000000000000014c _ZN2nn3nfp29StartNicknameAndOwnerSettingsEPNS0_12DeviceHandleEPbPNS0_12RegisterInfoERKNS0_24AmiiboSettingsStartParamERKNS0_7TagInfoERKS4_ +000000000011e878 g DF .text 00000000000001ac _ZN2nn7friends17SendFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdENS0_11RequestTypeERKNS0_15ApplicationInfoERKNS0_15InAppScreenNameESE_ +0000000000090bb8 g DF .text 0000000000000040 _ZN2nn2os20AttachTransferMemoryEPNS0_18TransferMemoryTypeEmjb +00000000000b482c w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account29IAccountServiceForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +000000000035c16c g DF .text 0000000000000084 _ZNSt3__110__time_getC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000000985fc g DF .text 000000000000020c _ZN2nn2ro6detail16GetExceptionInfoEPNS1_13ExceptionInfoEm +000000000019c144 g DF .text 000000000000002c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl21GetRenderingTimeLimitENS_2sf3OutIivEE +0000000000123580 g DF .text 0000000000000008 _ZNK2nn7friends11UserSetting20GetPlayLogPermissionEv +0000000000314dcc g DF .text 0000000000000080 _ZN2nn4gpio17OpenSessionForDevEPNS0_14GpioPadSessionEi +0000000000105c38 g DF .text 0000000000001c7c silk_pitch_analysis_core +00000000001beed8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw9GetGenderEv +0000000000944550 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf16IProgramRegistryE +000000000094b950 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service30IAllSystemAppletProxiesServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000c1ae0 g DF .text 0000000000000030 _ZN2nn7account31NintendoAccountLinkageProcedureC1ERKNS0_3UidEPNS0_3nas40IOAuthProcedureForNintendoAccountLinkageE +00000000000c0584 g DF .text 0000000000000018 _ZN2nn7account34NetworkServiceAccountAdministratorC2Ev +000000000017eec0 g DF .text 0000000000000004 _ZN2nn4time19GetClockSnapshotRefERNS0_13ClockSnapshotE +00000000000c192c g DF .text 0000000000000014 _ZN2nn7account8Notifier4SwapERS1_ +000000000014c2b0 g DF .text 0000000000000160 _ZN2nn3ngc6detail9SbvSelect16ReleaseAllocatorEv +00000000003a2084 g DF .text 0000000000000180 __floattidf +000000000004236c g DF .text 0000000000000344 _ZN2nn4edid6detail17GetDetailedTimingEPNS0_15DisplayModeInfoEPNS0_17DisplayTimingInfoEPNS0_13ImageSizeInfoEPKhm +00000000001671e8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +000000000025d0b8 g DF .text 0000000000000004 NvOsFtell +00000000003e3370 g DF .text 0000000000000004 wcsncasecmp_l +0000000000028080 g DF .text 0000000000000320 _ZN2nn5image6detail4jpeg14jpeg_idct_12x6EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000003290fc w DF .text 0000000000000048 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEaSERKS3_ +0000000000096ed8 g DF .text 0000000000000008 _ZN2nn2os6detail36InternalCriticalSectionImplByHorizonC1Ev +000000000035a218 w DF .text 0000000000000308 _ZNSt3__113utf8_to_utf16IjEENS_9enable_ifIXoosr7is_sameIT_tEE5valuesr7is_sameIS2_jEE5valueENS_12codecvt_base6resultEE4typeEPKhS8_RS8_PS2_SA_RSA_mNS_12codecvt_modeE +0000000000355338 g DF .text 0000000000000098 _ZNKSt3__15ctypeIwE10do_toupperEw +00000000000900c8 g DF .text 0000000000000028 _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEPNS0_13SemaphoreTypeE +00000000001d7b4c g DF .text 0000000000000184 _ZN2nn6fontll6detail10ReadClass1EPiPNS0_15OtfKerningTableEPKvtttttt +00000000007cde00 w DO .rodata 0000000000000013 _ZTSN2nn3apm8ISessionE +00000000003631fc w DF .text 0000000000000034 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendEPKc +000000000012c8c0 g DF .text 000000000000029c _ZN2nn2fs26GetApplicationSaveDataSizeEPlS1_NS_3ncm13ApplicationIdENS0_12SaveDataTypeERKNS_7account3UidE +000000000022832c g DF .text 0000000000000048 _ZN2nn3hid6system25SetAruidValidForVibrationERKNS_6applet20AppletResourceUserIdEb +00000000001b1eb8 g DF .text 0000000000000138 _ZN2nn2ec6detail28ShowShopSubscriptionListImplENS1_10LaunchModeENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdE +00000000000b7de8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E33_nn_sf_sync_DebugSetUserStateOpenERKNS5_3UidE +00000000002cdaec g DF .text 0000000000000060 _ZN7android7RefBaseD2Ev +0000000000328fb8 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5sgetnEPcl +00000000003e3bc8 g DF .text 0000000000000008 pthread_mutexattr_destroy +00000000008114c0 w DO .rodata 0000000000000026 _ZTSN2nn3ldn6detail19IUserServiceCreatorE +0000000000343028 w DF .text 000000000000018c _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm +00000000001c32c8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetFaceMakeEi +00000000001661f4 g DF .text 00000000000000cc _ZN2nn5prepo6detail19PlayReportGenerator6AddKeyEPmPKcPhmm +00000000003a4858 g DF .text 000000000000001c __subtf3 +00000000003ab0e4 w DF .text 0000000000000004 pthread_key_delete +000000000014b610 w DF .text 0000000000000004 _ZN2nn3ngc6detail16NullOutputStreamD0Ev +0000000000095d54 g DF .text 000000000000006c _ZNK2nn2os6detail26ThreadManagerImplByHorizon11GetThreadIdEPKNS0_10ThreadTypeE +00000000007d4ba0 g DO .rodata 0000000000000019 silk_stereo_pred_joint_iCDF +000000000032bfd0 w DF .text 000000000000013c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5ungetEv +00000000007c6be0 w DO .rodata 0000000000000023 _ZTSN2nn2am7service16IAudioControllerE +000000000024fc78 g DF .text 000000000000003c _ZN2nn3ldn14GetNetworkInfoEPNS0_11NetworkInfoE +0000000000398950 g DF .text 0000000000000084 __cxa_current_primary_exception +000000000013b898 w DF .text 00000000000001c8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm256EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +0000000000215048 g DF .text 00000000000000c8 _ZN2nn3hid6detail22BindCaptureButtonEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000003a7f58 w DF .text 0000000000000004 __init_ssp +00000000001175e8 g DF .text 0000000000000004 _ZN2nn5codec19HardwareOpusDecoderD2Ev +000000000097dcd0 g DO .data 0000000000000010 _ZTIa +000000000097b8b0 g DO .data 0000000000000018 _ZTINSt3__115numpunct_bynameIcEE +000000000097db90 g DO .data 0000000000000010 _ZTIb +000000000097dc30 g DO .data 0000000000000010 _ZTIc +000000000039fe14 g DF .text 0000000000000048 __divdi3 +000000000097e0e0 g DO .data 0000000000000010 _ZTId +00000000000b7478 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E38_nn_sf_sync_GetLinkedNintendoAccountIdENS0_3OutINS5_17NintendoAccountIdEvEE +0000000000174cd4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_SetNxControllerSettingsERKNS0_7InArrayINS5_6system20NxControllerSettingsEEE +000000000024bf5c g DF .text 0000000000000004 _ZN2nn3kpr15KeyCodeComposer5FlushEv +000000000097e130 g DO .data 0000000000000010 _ZTIe +000000000008d5e8 w DF .text 000000000000015c _ZN2nn2os6detail20SignalLightEventImplEPNS0_14LightEventTypeE +00000000000c1b94 g DF .text 0000000000000024 _ZN2nn7account31NintendoAccountLinkageProcedure4SwapERS1_ +0000000000324b08 g DF .text 00000000000001b0 _ZNSt3__111__libcpp_db11__insert_icEPvPKv +000000000097e090 g DO .data 0000000000000010 _ZTIf +00000000003d1d00 g DF .text 00000000000000b4 __getopt_msg +00000000009550f0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +000000000097e180 g DO .data 0000000000000010 _ZTIg +00000000000a18cc g DF .text 0000000000000004 _ZN2nn6socket6SelectEiP6fd_setS2_S2_P7timeval +000000000097dc80 g DO .data 0000000000000010 _ZTIh +0000000000181680 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E26_nn_sf_sync_ToCalendarTimeENS0_3OutINSL_12CalendarTimeEvEENST_INSL_2sf22CalendarAdditionalInfoEvEENSL_9PosixTimeERKNSL_12TimeZoneRuleE +000000000097ddc0 g DO .data 0000000000000010 _ZTIi +00000000001654e0 g DF .text 0000000000000154 _ZN2nn5prepo10PlayReport4SaveEv +000000000097de10 g DO .data 0000000000000010 _ZTIj +00000000002cd4f8 g DF .text 0000000000000024 _ZN7android12NativeHandleC2EP13native_handleb +000000000097de60 g DO .data 0000000000000010 _ZTIl +00000000001b6324 g DF .text 000000000000009c _ZNK2nn3mii8CreateId7IsValidEv +000000000097deb0 g DO .data 0000000000000010 _ZTIm +000000000012cca4 g DF .text 0000000000000040 _ZN2nn2fs18IsSaveDataExistingERKNS_7account3UidE +000000000097dfa0 g DO .data 0000000000000010 _ZTIn +00000000000c1e3c g DF .text 0000000000000030 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureC1EOS1_ +0000000000358b50 g DF .text 000000000000000c _ZNKSt3__114__codecvt_utf8IDsE10do_unshiftER11__mbstate_tPcS4_RS4_ +000000000097dff0 g DO .data 0000000000000010 _ZTIo +00000000003a1f70 g DF .text 0000000000000040 __floatdixf +000000000002c144 g DF .text 00000000000004bc _ZN2nn5image6detail8WriteIfdEPhtPKNS1_12ValuedIfdTagERKNS1_9IfdHeaderERKNS1_8BinaryIoE +0000000000253b18 g DF .text 0000000000000008 _ZN2nn3web22ShowOfflineHtmlPageArg17SetPointerEnabledEb +000000000097dd20 g DO .data 0000000000000010 _ZTIs +00000000000e963c g DF .text 0000000000000328 ec_enc_done +000000000016919c g DF .text 00000000000000ac _ZN2nn8settingseqERKNS0_12LanguageCodeES3_ +0000000000237204 g DF .text 00000000000000c8 _ZN2nn8irsensor6detail22RunClusteringProcessorERKNS0_14IrCameraHandleERKNS0_25ClusteringProcessorConfigE +000000000097be10 w DO .data 0000000000000038 _ZTINSt3__110moneypunctIwLb1EEE +000000000097dd70 g DO .data 0000000000000010 _ZTIt +000000000011d1b8 g DF .text 0000000000000150 _ZN2nn7friends13GetFriendListEPiPNS0_6FriendERKNS_7account3UidEiiRKNS0_12FriendFilterE +0000000000167c1c g DF .text 0000000000000050 _ZN2nn8settings6system29IsForceMuteOnHeadphoneRemovedEv +0000000000174124 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E39_nn_sf_sync_SetBluetoothDevicesSettingsERKNS0_7InArrayINS5_6system24BluetoothDevicesSettingsEEE +000000000017a27c g DF .text 00000000000000b4 _ZN2nn3ssl6detail14ServiceSession10InitializeEj +0000000000022348 g DF .text 0000000000000380 _ZN2nn5image6detail4jpeg23jinit_master_decompressEPNS2_22jpeg_decompress_structE +0000000000823cb0 w DO .rodata 0000000000000019 _ZTSNSt3__111__money_getIcEE +000000000097dae8 g DO .data 0000000000000010 _ZTIv +000000000015c8f8 g DF .text 0000000000000068 _ZN2nn2oe15ExitApplicationEv +000000000097dbe0 g DO .data 0000000000000010 _ZTIw +000000000097df00 g DO .data 0000000000000010 _ZTIx +000000000097df50 g DO .data 0000000000000010 _ZTIy +00000000003cfad0 g DF .text 0000000000000034 __fpclassifyf +00000000001a52b4 g DF .text 0000000000000014 _ZN2nn5audio6server12SplitterInfoC1Ei +00000000003421ec w DF .text 000000000000005c _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_weekdayERiRS4_S4_RjRKNS_5ctypeIcEE +00000000007fe200 g DO .rodata 00000000000004b0 _ZN2nn3mii6detail27RandomMiiFacelineColorTableE +0000000000064a20 g DF .text 000000000000016c _ZN2nn2fs11GetRightsIdEPNS0_8RightsIdEPKc +00000000000cb5cc w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22IGlobalStateControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +0000000000152230 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E28_nn_sf_sync_GetTelemetryInfoENS0_3OutINS5_13TelemetryInfoEvEE +000000000029e970 g DF .text 0000000000000008 _ZNK7android6Parcel12objectsCountEv +0000000000030fcc g DF .text 0000000000000004 nnutilZlib_crc32_combine64 +00000000001caff8 g DF .text 000000000000004c _ZN2nn5swkbd6detail18InlineKeyboardImpl13FinishApplet_Ev +00000000003cfb04 g DF .text 0000000000000058 __fpclassifyl +0000000000118bbc g DF .text 0000000000000058 _ZN2nn5codec32GetOpusPacketSampleCountInPacketEPiPKhmi +000000000008f05c g DF .text 00000000000000e8 _ZN2nn2os21TimedPeekMessageQueueEPmPKNS0_16MessageQueueTypeENS_8TimeSpanE +0000000000254898 g DF .text 00000000000004f4 _ZN2nn3web21ShowSystemDataPageArgC2Ev +000000000008e524 g DF .text 0000000000000044 _ZN2nn2os33AttachWritableHandleToSystemEventEPNS0_15SystemEventTypeEjbNS0_14EventClearModeE +00000000001b32fc g DF .text 0000000000000008 _ZNK2nn2ec6detail19ShopPageReturnValue14GetLastUrlSizeEv +00000000002309e8 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3hid15IHidDebugServerEED2Ev +000000000024c018 g DF .text 0000000000000658 _ZN2nn3kpr6detail22EnqueueKeyCodeComposerEPNS1_22KeyCodeComposerStorageEPKti +00000000001de0ec g DF .text 000000000000001c FS_get_cmap_variant +00000000007ae5b0 g DO .rodata 0000000000000040 _ZN2nn4util18MatrixRowMajor4x4f16ConstantIdentityE +000000000022acfc g DF .text 0000000000000060 _ZN2nn3hid14GetMouseStatesEPNS0_10MouseStateEi +0000000000230c68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E29_nn_sf_sync_DeactivateGestureEv +0000000000805650 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi115EE4MaskE +0000000000822dcc g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5spaceE +000000000097ac30 g DO .data 0000000000000018 _ZTINSt3__16locale5facetE +000000000036d360 w DF .text 0000000000000048 _ZNSt3__121__thread_specific_ptrINS_15__thread_structEE16__at_thread_exitEm +0000000000395cf4 g DF .text 000000000000004c _ZSt9terminatev +000000000003c630 w DF .text 0000000000000004 _ZN2nn4util6detail13ZlibAllocator4FreeEPvS3_ +0000000000064658 g DF .text 00000000000000b4 _ZN2nn2fs23RegisterUpdatePartitionEv +00000000003296bc w DF .text 0000000000000054 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEC2ERKS3_ +000000000024cc70 g DF .text 0000000000000060 _ZN2nn5album12LibraryState8FinalizeEv +000000000008a234 g DF .text 0000000000000054 _ZNK2nn3mem17StandardAllocator16ClearThreadCacheEv +0000000000122ce4 g DF .text 0000000000000008 _ZNK2nn7friends14FriendPresence9GetStatusEv +0000000000296d10 g DF .text 0000000000000008 _ZN7android10IInterfaceD1Ev +0000000000090f80 g DF .text 0000000000000050 _ZN2nn2os32SetMemoryAllocatorForThreadLocalEPFPvmmEPFvS1_mE +0000000000334380 w DF .text 0000000000000050 _ZNKSt3__17collateIwE10do_compareEPKwS3_S3_S3_ +00000000001d05a0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_GetSharedLayerLayerStacksENS0_3OutIjvEENS_2vi7fbshare17SharedLayerHandleE +0000000000298a24 g DF .text 0000000000000030 _ZN7android11IMemoryHeapD1Ev +00000000003283ec w DF .text 000000000000001c _ZNKSt3__120__shared_ptr_pointerIPNS_21__horizon_thread_dataEPFvS2_ENS_9allocatorIS1_EEE13__get_deleterERKSt9type_info +0000000000159344 g DF .text 00000000000000e4 _ZN2nn3nsd6detail3ipc19GetNasRequestFqdnExEPNS_6ResultEPNS0_4FqdnE +0000000000a684b0 g DO .bss 0000000000000020 _ZN7android9SingletonINS_15ComposerServiceEE5sLockE +000000000011d470 g DF .text 0000000000000054 _ZN2nn7friends16UpdateFriendInfoEPNS0_6FriendEPKNS_7account23NetworkServiceAccountIdEi +00000000000733d4 g DF .text 000000000000019c nnmem_nlib_memchr_lt_generic +0000000000188338 g DF .text 0000000000000028 _ZN2nn5audio33GetI3dl2ReverbReflectionDelayTimeEPKNS0_15I3dl2ReverbTypeE +000000000012e6c0 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm32ELm1ELl0EEEEEELm0ELm32ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm32ELm1EEEj +0000000000184b8c g DF .text 0000000000000008 _ZN2nn5audio15AudioBufferListINS0_14AudioOutBufferEE5clearEv +0000000000234900 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E28_nn_sf_sync_ActivateIrSensorEjbNS_6applet20AppletResourceUserIdE +00000000001d9d78 g DF .text 000000000000001c _ZN2nn6fontll18ScalableFontEngine10GetKerningEPiS2_jj +0000000000804dd0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi47EE4MaskE +00000000001fe508 g DF .text 0000000000000468 fsg_RunPreProgram +00000000003c3188 w DF .text 0000000000000050 wctrans_l +000000000019d2ec g DF .text 0000000000000010 _ZN2nn5audio6server13CommandBufferC1EPvmmRKNS1_14MemoryPoolInfoERNS1_30CommandProcessingTimeEstimatorE +0000000000264528 g DF .text 0000000000000004 NvOsStrncpy +00000000001bb1c0 g DF .text 00000000000000c8 _ZN2nn3mii6detail20CalculateAndSetCrc16EPvi +00000000002504ac g DF .text 000000000000003c _ZN2nn3ldn20GetSecurityParameterEPNS0_17SecurityParameterE +000000000080b468 g DO .rodata 0000000000000004 _ZN2nn3hid6system12NpadSystemId5OtherE +00000000000e8ba0 g DF .text 000000000000023c ec_dec_uint +00000000002569f0 g DF .text 0000000000000094 _ZN2nn3web14ShowWebPageArg17SetDisplayUrlKindENS0_17WebDisplayUrlKindE +0000000000328594 w DF .text 0000000000000024 _ZNSt3__19basic_iosIcNS_11char_traitsIcEEED0Ev +00000000000d4e64 g DF .text 000000000000000c _ZN2nn4bcat6detail25DeliveryCacheProgressImpl22NotifyStartProcessListEv +00000000000b2f70 g DF .text 0000000000000228 _ZN2nn7account13ListOpenUsersEPiPNS0_3UidEi +0000000000095dc0 g DF .text 000000000000004c _ZN2nn2os6detail26ThreadManagerImplByHorizon19SuspendThreadUnsafeEPNS0_10ThreadTypeE +00000000000acc38 g DF .text 00000000000001fc _ZN2nn6socket8resolver18GetHostStringErrorEj +00000000002502a8 g DF .text 00000000000000f0 _ZN2nn3ldn14ConnectPrivateERKNS0_13NetworkConfigERKNS0_14SecurityConfigERKNS0_17SecurityParameterERKNS0_10UserConfigEiNS0_13ConnectOptionE +00000000000427f4 g DF .text 0000000000000028 _ZN2nn4edid6detail16AudioDataVisitorEPKhmPv +000000000017a388 g DF .text 000000000000000c _ZN2nn3ssl6detail14ServiceSession17GetServiceSessionEv +00000000003c4da8 g DF .text 0000000000000034 __loc_is_allocated +000000000003cec4 g DF .text 0000000000000334 _ZN2nn4util6ResDic5BuildEv +000000000023046c g DF .text 0000000000000004 _ZN2nn3hid15VibrationWriter20OnNextSampleRequiredEPNS0_14VibrationValueEPNS_4util13IntrusiveListINS0_23VibrationNodeConnectionENS4_27IntrusiveListBaseNodeTraitsIS6_S6_EEEE +0000000000076dc4 g DF .text 000000000000028c nnmem_nlib_utf8_to_utf16 +0000000000950378 g DO .data 0000000000000010 silk_LBRR_flags_iCDF_ptr +000000000006b11c g DF .text 00000000000000a8 _ZN2nn2fs16SaveDataExporter4PullEPmPvm +000000000029dbdc g DF .text 000000000000002c _ZN7android6ParcelC2Ev +00000000007c9600 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000181198 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISteadyClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object7ReleaseEv +00000000007c2d80 w DO .rodata 000000000000016d _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000017502c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E46_nn_sf_sync_SetServiceDiscoveryControlSettingsENS5_6system31ServiceDiscoveryControlSettingsE +00000000000955c4 g DF .text 0000000000000048 _ZN2nn2os6detail27TransferMemoryImplByHorizon5UnmapEjPvm +0000000000947680 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas21IAuthorizationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +000000000097a808 w DO .data 0000000000000060 _ZTVNSt3__114codecvt_bynameIDic11__mbstate_tEE +00000000003c26a4 w DF .text 0000000000000030 ispunct_l +00000000001c58a8 g DF .text 0000000000000034 _ZN2nn3mii8Database6ImportEPKvm +0000000000328408 w DF .text 0000000000000004 _ZNSt3__120__shared_ptr_pointerIPNS_21__horizon_thread_dataEPFvS2_ENS_9allocatorIS1_EEE21__on_zero_shared_weakEv +00000000001aff40 g DF .text 0000000000000008 _ZN2nn5audio3dsp20DspExceptionNotifierD1Ev +00000000001d431c g DF .text 0000000000000054 _ZN2nn2vi28GetIndirectLayerNativeWindowEPPvPNS0_13IndirectLayerE +0000000000357520 g DF .text 00000000000000f4 _ZNKSt3__17codecvtIwc11__mbstate_tE9do_lengthERS1_PKcS5_m +000000000018de3c g DF .text 0000000000000008 _ZN2nn5audio19Axfx2AllPassSetCoefEPNS0_14Axfx2DelayLineEf +00000000002a0e44 g DF .text 00000000000001a4 _ZNK7android6Parcel8readBlobEmPNS0_12ReadableBlobE +000000000016d160 g DF .text 00000000000000c4 _ZN2nn8settings6detail23BindFatalDirtyFlagEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000003294cc w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE7pubsyncEv +0000000000361844 g DF .text 0000000000000124 _ZNSt3__111__call_onceERVmPvPFvS2_E +000000000017a0a4 g DF .text 0000000000000024 nnsslConnectionDoHandshakeWithBuffer +000000000025a794 g DF .text 0000000000000090 nvdcClose +000000000010c5f4 g DF .text 000000000000024c downmix_float +00000000001c3598 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding3Ei +000000000025e39c g DF .text 0000000000000080 NvUPtrHash +00000000003cf1dc g DF .text 000000000000012c tanf +00000000001cac58 g DF .text 0000000000000024 _ZN2nn5swkbd6detail18InlineKeyboardImpl26SetAlphaEnabledInInputModeEb +00000000003cf308 g DF .text 00000000000000e0 tanh +00000000001b8b44 g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw9GetHeightEv +0000000000044810 g DF .text 0000000000000004 _ZN2nn4diag12GetBacktraceEPmi +0000000000158fb4 g DF .text 00000000000000f4 _ZN2nn3nsd6detail3ipc9ResolveExEPNS_6ResultEPNS0_4FqdnERKS5_ +0000000000823910 w DO .rodata 0000000000000015 _ZTSNSt3__110__time_getE +000000000009d670 w DF .text 00000000000001cc _ZN2nn2sf4hipc6server17HipcServerMessage17PrepareForProcessERKNS0_4cmif19CmifMessageMetaInfoE +000000000033bbcc w DF .text 000000000000040c _ZNSt3__19__num_getIcE19__stage2_float_loopEcRbRcPcRS4_ccRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjS4_ +00000000003cf4e0 g DF .text 00000000000000e0 tanl +0000000000823210 g DO .rodata 000000000000001d _ZTSNSt3__114__codecvt_utf8IDsEE +0000000000044814 g DF .text 0000000000000018 _ZN2nn4diag12GetBacktraceEPmm +000000000011123c g DF .text 00000000000004d8 opus_repacketizer_out_range_impl +00000000000c1f28 g DF .text 0000000000000068 _ZNK2nn7account49ExternalNetworkServiceAccountIntroducingProcedure15GetProfileImageEPmPvm +00000000007aa884 g DO .rodata 0000000000000044 nnutilZlib_deflate_copyright +00000000003dfc54 g DF .text 0000000000000078 wprintf +00000000000a1a64 g DF .text 0000000000000004 _ZN2nn6socket6CancelEi +0000000000160dc0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E57_nn_sf_sync_ClearFreeCommunicationApplicationListForDebugEv +0000000000188464 g DF .text 000000000000000c _ZN2nn5audio24GetI3dl2ReverbRoomHfGainEPKNS0_15I3dl2ReverbTypeE +0000000000138af8 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3nfc6detail7ISystemEE19FunctionForBoolTypeEv +0000000000160944 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E44_nn_sf_sync_NotifyApplicationDownloadStartedENS_3ncm13ApplicationIdE +000000000022fdd8 g DF .text 0000000000000070 _ZN2nn3hid15VibrationPlayer18SetCurrentPositionEi +000000000003c9b0 g DF .text 00000000000000bc _ZN2nn4util16IntrusiveDicNode10FindRefBitEPKS1_ +00000000000a21f0 g DF .text 000000000000007c _ZN2nn6socket6detail8FinalizeEv +00000000001a5ff4 g DF .text 0000000000000020 _ZNK2nn5audio6server9VoiceInfo22ShouldUpdateWaveBufferEPKNS0_9VoiceInfo18WaveBufferInternalE +0000000000071644 g DF .text 000000000000009c nnmem_nlib_thread_attr_setstack +0000000000076024 g DF .text 000000000000008c nnmem_nlib_utf32nlen_generic +0000000000239210 g DF .text 0000000000000020 _ZNK2nn8irsensor6detail19StatusManagerHolder20IsSharedMemoryMappedEv +00000000003334d8 g DF .text 00000000000000dc _ZNSt3__18ios_base5pwordEi +00000000001812f4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +0000000000186c2c g DF .text 000000000000001c _ZN2nn5audio21GetDelayLowPassAmountEPKNS0_9DelayTypeE +000000000097c2e0 g DO .data 0000000000000010 _ZTINSt3__114__shared_countE +000000000014c07c g DF .text 00000000000000bc _ZN2nn3ngc6detail9SbvSelectD2Ev +00000000000c8d48 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE23_nn_sf_sync_IsCompletedENS0_3OutIbvEE +0000000000178164 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3ssl2sf11ISslServiceEE19FunctionForBoolTypeEv +0000000000329868 w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE7seekposENS_4fposI11__mbstate_tEEj +0000000000822090 g DO .rodata 0000000000000023 _ZTSNSt3__124__libcpp_debug_exceptionE +00000000001175a0 g DF .text 0000000000000024 _ZN2nn5codec19GetAdpcmLoopContextEPNS0_12AdpcmContextEPKNS0_14AdpcmParameterEPKvmi +000000000018980c g DF .text 000000000000007c _ZN2nn5audio10MixManager7ReleaseEPNS0_12FinalMixTypeE +00000000001a26d4 g DF .text 0000000000000018 _ZNK2nn5audio6server12BehaviorInfo27IsLongSizePreDelaySupportedEv +00000000007bf6b0 w DO .rodata 0000000000000161 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000023a7fc g DF .text 0000000000000014 _ZN2nn8irsensor6detail14SessionManagerC2Ev +0000000000395d88 g DF .text 0000000000000004 _ZNSt16bad_array_lengthD1Ev +00000000003a9d78 g DF .text 0000000000000008 remove +00000000001c5034 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding0Ev +00000000003a7ec0 g DF .text 0000000000000040 rewinddir +00000000000f66b4 g DF .text 0000000000000084 silk_VAD_Init +00000000000750c4 g DF .text 0000000000000214 nnmem_nlib_utf8_to_utf32 +00000000000c12ac g DF .text 0000000000000048 _ZN2nn7account42NintendoAccountAuthorizationRequestContextC1EOS1_ +0000000000257ae4 g DF .text 00000000000000a8 _ZN2nn3web22SetEcClientCertEnabledEPNS0_14ShowWebPageArgE +00000000003a9248 g DF .text 0000000000000024 sched_setaffinity +00000000000d2ca8 g DF .text 000000000000011c _ZN2nn6applet35RequestExitLibraryAppletOrTerminateEPNS_2am7service15IAppletAccessorENS_8TimeSpanE +00000000000d82d8 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E62_nn_sf_sync_CreateDeliveryCacheStorageServiceWithApplicationIdENS0_3OutINS0_13SharedPointerINS7_28IDeliveryCacheStorageServiceEEEvEENS_13ApplicationIdE +00000000001477c4 g DF .text 0000000000000050 _ZNK2nn3ngc6detail3Bp_7MemSizeEv +0000000000295a5c g DF .text 000000000000000c _ZN7android9BpRefBase10onFirstRefEv +00000000009430b0 w DO .data 0000000000000028 _ZTIN2nn2sf4hipc6client24HipcClientSessionManagerE +00000000001016ac g DF .text 0000000000000148 silk_corrVector_FIX +00000000001a5524 g DF .text 0000000000000014 _ZN2nn5audio6server15SplitterContext10InitializeEPNS1_12SplitterInfoEiPNS1_23SplitterDestinationDataEi +000000000097c5c8 g DO .data 0000000000000028 _ZTVSt19bad_optional_access +000000000019a538 g DF .text 0000000000000084 _ZN2nn5audio24StartFinalOutputRecorderEPNS0_19FinalOutputRecorderE +00000000000bf218 g DF .text 0000000000000008 _ZN2nn7account33ExternalNetworkServiceAccountInfoC2Ev +00000000001b62f4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor13GetGlassScaleEv +000000000025892c g DF .text 0000000000000054 nvdcDisableCrc +00000000001426b4 g DF .text 0000000000000184 _ZN2nn3ngc15ProfanityFilter24MaskProfanityWordsInTextEPiPtj +000000000018d110 g DF .text 0000000000000008 _ZN2nn5audio6common10EdgeMatrixC2Ev +00000000001c5c90 g DF .text 0000000000000024 _ZN2nn3mii15PrivateDatabase10DeleteFileEv +0000000000367548 g DF .text 0000000000000260 _ZNSt3__14stoiERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPmi +00000000000ce148 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE32_nn_sf_sync_GetCommonStateGetterENS0_3OutINS0_13SharedPointerINS6_18ICommonStateGetterEEEvEE +00000000007ecad0 w DO .rodata 000000000000001d _ZTSN2nn5audio6detail9IAudioOutE +000000000028607c g DF .text 000000000000003c nvgr_inc_write_count +0000000000286780 g DF .text 000000000000000c NvRmGpuDeviceZbcAddDepth +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__17codecvtIcc11__mbstate_tED2Ev +000000000036d944 w DF .text 0000000000000050 _ZNSt3__18valarrayImED2Ev +0000000000329244 w DF .text 0000000000000004 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6setbufEPcl +00000000003a9b08 g DF .text 0000000000000104 open_wmemstream +00000000000913d8 g DF .text 000000000000000c nnosAttachSystemEvent +00000000007d4c08 g DO .rodata 000000000000003c silk_Transition_LP_B_Q28 +00000000000d22a4 g DF .text 0000000000000010 _ZN2nn6applet28SetCreatingSelfLibraryAppletEb +0000000000156914 g DF .text 000000000000001c _ZN2nn4nifm21SetRequestSustainableENS0_13RequestHandleEb +00000000003e7868 g DF .text 0000000000000018 __nnmusl_ReleaseSemaphore +0000000000152078 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E42_nn_sf_sync_IsEthernetCommunicationEnabledENS0_3OutIbvEE +00000000002cad74 g DF .text 00000000000000c8 _ZN7android19GraphicBufferMapper9lockAsyncEPK13native_handleiRKNS_4RectEPPvi +000000000013ee70 g DF .text 0000000000000118 _ZN2nn3nfp14GetDeviceStateERKNS0_12DeviceHandleE +00000000000d9168 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +000000000018ac7c g DF .text 00000000000000a8 _ZN2nn5audio22SetSplitterDestinationEPNS0_19AudioRendererConfigEPNS0_12SplitterTypeEiPNS0_10SubMixTypeE +000000000022b7e0 g DF .text 0000000000000004 _ZN2nn3hid6system19GetNpadBatteryLevelEPiS2_RKj +00000000002307f0 g DF .text 00000000000001f8 _ZN2nn3hid6detail25CreateHidDebugServerProxyEPNS_2sf13SharedPointerINS0_15IHidDebugServerEEE +0000000000948990 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000003dbe74 g DF .text 0000000000000048 tdelete +00000000001cdd4c w DF .text 000000000000018c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSE_ILi1ELi6ELm0EEENSB_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEESP_NSN_24BufferClientArgumentTypeESQ_SP_j +000000000021468c g DF .text 00000000000000b8 _ZN2nn3hid6detail21GetAudioControlStatesEPiPNS0_6system17AudioControlStateEi +000000000007ef64 g DF .text 00000000000000a4 nnmem_nlib_timer_gettime +00000000000461a8 g DF .text 0000000000000074 _ZN2nn4diag6detail18IsSystemSymbolImplEm +000000000036b340 g DF .text 0000000000000054 _ZNSt3__112strstreambufC2EPFPvmEPFvS1_E +00000000000d2294 g DF .text 0000000000000010 _ZN2nn6applet24SetOnRemoveLibraryAppletEPFvNS0_19LibraryAppletHandleEE +0000000000180d08 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISystemClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object12AddReferenceEv +000000000012724c w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSG_ILi1ELi9ELm0EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEESS_j +00000000001451e4 g DF .text 000000000000008c _ZN2nn3ngc6detail11AhoCorasickD1Ev +00000000007e5ef0 w DO .rodata 0000000000000155 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf14ISslConnectionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +000000000036d4bc g DF .text 0000000000000018 _ZNSt3__121__libcpp_condvar_waitEPNSt13__libcxx_shim19__libcxx_shim_ver_132__libcxx_shim_condition_variableEPNS1_19__libcxx_shim_mutexE +0000000000327680 g DF .text 0000000000000010 _ZNSt3__113shared_futureIvED1Ev +000000000022d5d0 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm7EEEvPNS0_16TouchScreenStateIXT_EEE +00000000001a0de4 g DF .text 0000000000000008 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_18PerformanceCommandE +00000000009519d0 w DO .data 0000000000000018 _ZTIN2nn3tma7ISocketE +00000000000d182c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E34_nn_sf_sync_RequestPerformanceModeENS5_15PerformanceModeE +0000000000127808 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm64EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSI_ILm1ELm1ELl0EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENST_ILm1ELm1EvEEj +00000000001b531c g DF .text 0000000000000004 _ZN2nn2la27AppletToNifmArgumentsReaderD1Ev +00000000008223b0 g DO .rodata 0000000000000004 _ZNSt3__18ios_base9showpointE +000000000094d9d0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEEE +000000000036c914 g DF .text 00000000000000c0 _ZNSt3__112system_errorC1ENS_10error_codeE +00000000003999a0 g DF .text 000000000000007c unw_set_reg +00000000003645cc w DF .text 00000000000001f8 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmmc +00000000007b90e0 w DO .rodata 0000000000000059 _ZTSN2nn2sf4hipc6server25HipcServerSessionManagerTINS0_4cmif6server20CmifServerObjectInfoEEE +00000000001d317c g DF .text 00000000000000a0 _ZN2nn2vi23SetDisplayMagnificationEPNS0_7DisplayEiiii +00000000000a00d0 g DF .text 0000000000000048 _ZN2nn2sf4hipc24CloseClientSessionHandleENS_3svc6HandleE +00000000003cc108 g DF .text 0000000000000008 llround +00000000003e2680 g DF .text 0000000000000030 strpbrk +00000000007b0f18 g DO .rodata 0000000000000004 _ZN2nn2fs24HierarchicalRomFileTable12PositionNoneE +0000000000126368 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E24_nn_sf_sync_ClearPlayLogERKNS_7account3UidE +00000000001bff58 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetMouthTypeEv +00000000001694e4 g DF .text 0000000000000050 _ZN2nn8settings6system19IsUsbFullKeyEnabledEv +00000000007f0c50 w DO .rodata 0000000000000038 _ZTSN2nn5audio6server10BaseAspectINS1_16CommandGeneratorEEE +0000000000215730 g DF .text 000000000000007c _ZN2nn3hid6detail18StartSixAxisSensorERKNS0_26ConsoleSixAxisSensorHandleE +0000000000084350 g DF .text 0000000000000438 _ZN2nn7nlibsdk4heap14TlsHeapCentral4InitEPvmb +000000000035f1e0 g DF .text 00000000000000b4 _ZNSt3__17codecvtIwc11__mbstate_tED2Ev +0000000000954e00 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +0000000000174e94 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E37_nn_sf_sync_GetBluetoothAfhEnableFlagENS0_3OutIbvEE +000000000019d158 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E42_nn_sf_sync_SetAudioDeviceOutputVolumeAutoERKNS0_8InBufferEf +000000000019bf7c g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem16GetExecutionModeEv +0000000000800c80 w DO .rodata 0000000000000101 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +0000000000226c48 g DF .text 00000000000000ac _ZN2nn3hid6detail26IsAnalogStickButtonPressedEPbNS0_6system11UniquePadIdENS3_19AnalogStickPositionE +0000000000230674 g DF .text 0000000000000044 _ZN2nn3hid12GetXpadStateEPNS0_14BasicXpadStateERKNS0_11BasicXpadIdE +00000000001a683c g DF .text 0000000000000010 _ZNK2nn5audio6server12VoiceContext7GetInfoEi +00000000007f6190 g DO .rodata 0000000000000006 _ZN2nn3mii6detail22Ver3FacelineColorTableE +0000000000367160 w DF .text 000000000000008c _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEmmPKwm +0000000000046e70 g DF .text 0000000000000090 _ZN2nn2fs6detail30OutputAccessLogForPreconditionEbNS_2os4TickES3_PKcPKvS5_z +000000000005a4b8 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm0ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000cbf44 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE29_nn_sf_sync_GetDebugFunctionsENS0_3OutINS0_13SharedPointerINS6_15IDebugFunctionsEEEvEE +00000000002590b0 g DF .text 00000000000000b0 nvdcDisplayBind +00000000003dd2bc g DF .text 0000000000000054 fputwc +0000000000145150 g DF .text 0000000000000010 _ZNK2nn3ngc6detail16WorkBufAllocator4FreeEPv +000000000002e5bc g DF .text 0000000000000004 _ZN2nn5image11JpegDecoderD2Ev +000000000009be44 g DF .text 00000000000000f0 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBaseC2EPNSt3__115aligned_storageILm48ELm8EE4typeEi +00000000000d2034 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +00000000000aed78 w DF .text 00000000000001c4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl16EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSI_ILm4ELm4ELl4EEENSE_ILi1ELi6ELm0EEENSI_ILm4ELm4ELl8EEEEEELm24ELm12ELb1EEESN_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENST_ILm8ELm8EvEENSS_24BufferClientArgumentTypeESU_SU_NSS_24OutRawClientArgumentTypeILm4ELm4EEESY_SW_SY_j +00000000002360dc w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail18HidTemporaryServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000009591b0 w DO .data 0000000000000018 _ZTIN2nn5audio6server8SinkInfoINS0_6common15DeviceParameterENS1_15DeviceSinkStateEEE +00000000000817e0 g DF .text 000000000000010c nnmem_nlib_cond_wait_for +00000000000b7e20 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_9INotifierEEEvi +00000000001b9144 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetMouthTypeEv +00000000000d4b7c g DF .text 0000000000000054 _ZN2nn6applet17EndVrModeInternalEv +000000000017b680 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E29_nn_sf_sync_FlushSessionCacheEv +000000000018a2e0 g DF .text 0000000000000038 _ZN2nn5audio17GetSampleByteSizeENS0_12SampleFormatE +000000000026c4ac g DF .text 00000000000000c8 NvRmSyncCreateFromSyncpointsWithAttr +000000000016eb14 g DF .text 0000000000000080 _ZN2nn8settings6detail34GetServiceDiscoveryControlSettingsEPNS0_6system31ServiceDiscoveryControlSettingsE +00000000002274f4 g DF .text 0000000000000070 _ZN2nn3hid6detail25EndPermitVibrationSessionEv +00000000003bb674 g DF .text 0000000000000030 ctan +00000000003dd310 g DF .text 00000000000000d4 fputws +000000000095a720 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000005d470 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm64ELm4ELl0EEEEEELm0ELm64ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm64ELm4EEEj +0000000000228074 g DF .text 0000000000000058 _ZN2nn3hid6detail28FlushEnqueuedVibrationValuesEv +00000000000c5d08 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE17GetCmifBaseObjectEv +00000000000411ec g DF .text 0000000000000018 _ZN2nn4diag6detail9nnText_osEPKc +00000000009515f8 w DO .data 0000000000000050 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000022210c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm9EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000002b4168 g DF .text 000000000000004c _ZN7android12ConsumerBase13stillTrackingEiNS_2spINS_13GraphicBufferEEE +00000000001694a0 g DF .text 0000000000000044 _ZN2nn8settings6system13SetLdnChannelEi +000000000034f398 w DF .text 0000000000000060 _ZNKSt3__120__vector_base_commonILb1EE20__throw_out_of_rangeEv +00000000003ab0c4 g DF .text 0000000000000004 __pthread_cond_timedwait +000000000006770c g DF .text 0000000000000020 _ZN2nn2fs16SaveDataIteratorC1EONS_2sf13SharedPointerINS_5fssrv2sf19ISaveDataInfoReaderEEE +00000000000d2380 g DF .text 00000000000000bc _ZN2nn6applet36CreateLibraryAppletHandleOnUnwindingENS_2sf13SharedPointerINS_2am7service22ILibraryAppletAccessorEEE +00000000000f7c00 g DF .text 00000000000005b0 silk_control_encoder +0000000000956fb4 g DO .data 0000000000000010 _ZN2nn5audio15I3dl2ApDelayLenE +0000000000188470 g DF .text 0000000000000048 _ZN2nn5audio25SetI3dl2ReverbHfReferenceEPNS0_15I3dl2ReverbTypeEf +00000000000bec64 w DF .text 000000000000020c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm16ELm8ELl40EEENSI_ILm40ELm1ELl0EEEEEELm56ELm0ELb0EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENST_ILm40ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000801120 w DO .rodata 00000000000000c9 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003138f4 g DF .text 000000000000004c _ZN2nn3fgm7RequestD1Ev +0000000000179fcc g DF .text 0000000000000024 nnsslConnectionGetSocketDescriptor +00000000001b5768 g DF .text 0000000000000008 _ZN2nn2la21CommonArgumentsWriter12SetLaVersionEj +000000000036111c g DF .text 0000000000000020 _ZNSt3__15mutex8try_lockEv +000000000024c6f4 g DF .text 0000000000000060 _ZN2nn3kpr6detail21RemoveKeyCodeComposerEPNS1_22KeyCodeComposerStorageEPti +000000000094e500 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21IApplicationFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001847cc w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSK_ILm8ELm8EvEEj +0000000000948158 w DO .data 00000000000000b0 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas28IFloatingRegistrationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +000000000010d860 g DF .text 00000000000025bc opus_encode_native +0000000000122268 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo31GetExternalApplicationCatalogIdEv +000000000032c6cc w DF .text 00000000000001f0 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE6sentryC1ERS3_b +0000000000823440 w DO .rodata 0000000000000014 _ZTSNSt3__17collateIcEE +000000000014cbf8 g DF .text 0000000000000074 _ZN2nn3ngc6detail3SetD1Ev +0000000000318b04 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_SetPowerEnabledEib +0000000000805110 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi73EE4MaskE +00000000002638b8 g DF .text 0000000000000010 NvOsSleepMS +000000000021a558 g DF .text 0000000000000084 _ZN2nn3hid6detail22SetSupportedNpadIdTypeEPKji +000000000034f164 g DF .text 000000000000015c _ZNSt3__17codecvtIwc11__mbstate_tEC2EPKcm +000000000022be10 g DF .text 0000000000000064 _ZN2nn3hid13GetNpadStatesEPNS0_16NpadFullKeyStateEiRKj +0000000000948aa0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000001b6844 g DF .text 0000000000000008 _ZN2nn3mii6detail25CalculateSizeAndAlignmentC2Ev +00000000007cd1a0 w DO .rodata 0000000000000105 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000215e84 g DF .text 0000000000000174 _ZN2nn3hid6detail16GetDebugPadStateEPNS0_13DebugPadStateE +00000000001d1aac w DF .text 00000000000001b4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl64EEENSF_ILm64ELm1ELl0EEENSF_ILm8ELm8ELl72EEEEEELm80ELm8ELb1EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm8ELm8EvEENSS_ILm64ELm1EvEEST_j +0000000000355e7c g DF .text 0000000000000054 _ZNKSt3__112ctype_bynameIcE10do_toupperEPcPKc +00000000000ae360 g DF .text 0000000000000090 _ZN2nn6socket8resolver3tls6Client22SetCurrentHErrorStringEPKc +000000000097bcc0 w DO .data 0000000000000038 _ZTINSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000000898d8 g DF .text 0000000000000094 _ZN2nn7nlibsdk4heap11CentralHeap5QueryEiz +00000000007cdfe0 w DO .rodata 00000000000000a9 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001b67dc g DF .text 0000000000000004 _ZN2nn3mii6detail15BufferAllocatorD2Ev +0000000000801c20 w DO .rodata 0000000000000105 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000022f9dc g DF .text 0000000000000028 _ZN2nn3hid23VibrationNodeConnectionC2EPNS0_13VibrationNodeES3_ +000000000097d780 g DO .data 0000000000000018 _ZTISt12length_error +000000000039e498 g DF .text 00000000000001b8 __trunctfsf2 +000000000039f918 g DF .text 0000000000000020 __ctzti2 +000000000006ca8c g DF .text 0000000000000084 _ZN2nn2fs15MountSystemDataEPKcNS_3ncm12SystemDataIdE +00000000007e1370 w DO .rodata 0000000000000158 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +00000000002c9d50 g DF .text 0000000000000050 _ZN7android13GraphicBuffer14lockAsyncYCbCrEjP13android_ycbcri +0000000000215ad0 g DF .text 00000000000000b4 _ZN2nn3hid6detail28FinalizeConsoleSixAxisSensorEv +00000000003c59e8 g DF .text 000000000000002c wcscoll +00000000000d889c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E19_nn_sf_sync_GetImplENS0_3OutINS6_25DeliveryCacheProgressImplEvEE +00000000000749e0 g DF .text 0000000000000120 nnmem_nlib_strrchr +00000000000bb544 w DF .text 00000000000000cc _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE38_nn_sf_sync_CreateAuthorizationRequestENS0_3OutINS0_13SharedPointerINS5_3nas21IAuthorizationRequestEEEvEERKNST_13NasClientInfoERKNS5_45NintendoAccountAuthorizationRequestParametersEONS0_12NativeHandleEj +00000000001c6140 w DF .text 0000000000000114 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_3mii6detail14IStaticServiceENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEEENS_6ResultEPNS0_13SharedPointerIT_EENS_3svc6HandleE +00000000007c77d0 w DO .rodata 00000000000000fd _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000031c200 w DF .text 0000000000000308 _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIaaEEPaEEbT0_S5_T_ +00000000009a9180 g DO .bss 0000000000000008 _ZN2nn2ro6detail36g_pLookupGlobalManualFunctionPointerE +000000000014ceb8 g DF .text 0000000000000108 _ZN2nn3ngc6detail3Set16ReleaseAllocatorEv +000000000036d55c g DF .text 00000000000000c4 _ZNSt3__122__libcpp_thread_createEPNS_10shared_ptrINS_21__horizon_thread_dataEEEPFvPvES4_ +000000000008d584 g DF .text 0000000000000028 _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEPNS0_9EventTypeE +000000000017b3f4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E23_nn_sf_sync_SetHostNameERKNS0_8InBufferE +00000000002861b4 g DF .text 0000000000000030 nvgr_decompress_commit +0000000000255ee0 g DF .text 0000000000000104 _ZN2nn3web6detail22ShowSharePageArgDetail14SetCallbackUrlEPhPKc +0000000000042208 g DF .text 0000000000000030 _ZN2nn4edid6detail28GetStandardTimingAspectRatioEPiS2_h +00000000000b6a34 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E32_nn_sf_sync_GetAuthorizationCodeENS0_3OutIjvEERKNS0_9OutBufferE +00000000002866e4 g DF .text 0000000000000014 NvRmGpuDeviceClose +000000000097d6b8 g DO .data 0000000000000028 _ZTVSt12domain_error +00000000007c8a20 w DO .rodata 0000000000000029 _ZTSN2nn2am7service22ILibraryAppletAccessorE +000000000097a7a8 w DO .data 0000000000000060 _ZTVNSt3__114codecvt_bynameIDsc11__mbstate_tEE +000000000097e3a8 g DO .data 0000000000000050 _ZTVN10__cxxabiv120__si_class_type_infoE +00000000001cff94 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_FreeProcessHeapBlockEm +0000000000229480 g DF .text 0000000000000064 _ZN2nn3hid6system18DeactivateIrSensorEjNS_6applet20AppletResourceUserIdE +00000000009502b0 g DO .data 0000000000000018 silk_LTP_gain_BITS_Q5_ptrs +000000000017b6c4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E32_nn_sf_sync_GetRenegotiationModeENS0_3OutINS6_17RenegotiationModeEvEE +00000000008224a0 w DO .rodata 0000000000000031 _ZTSNSt3__115basic_streambufIcNS_11char_traitsIcEEEE +00000000000093c0 w DF .text 0000000000000008 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEEC2Ev +00000000000c8bec w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001ca168 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard27SetDecidedEnterCallbackUtf8EPFvPKNS0_19DecidedEnterArgUtf8EE +0000000000948620 w DO .data 0000000000000018 _ZTIN2nn7account4http15IOAuthProcedureE +000000000017abcc w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSI_ILm8ELm8ELl8EEEEEELm16ELm0ELb1EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEENST_ILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000082170 g DF .text 0000000000000020 nnmem_nlib_dir_close +0000000000174a34 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_SetDeviceNickNameERKNS5_6system14DeviceNickNameE +0000000000361a34 w DF .text 0000000000000004 _ZdlPvRKSt9nothrow_t +00000000001ab874 g DF .text 00000000000002c8 _ZN2nn5audio16ReverbProcess1chEPKNS0_15ReverbParameterEPNS0_11ReverbStateEjPKiPi +00000000000c7c34 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001191ec g DF .text 00000000000000e4 _ZN2nn5codec38CreateHardwareOpusDecoderManagerByHipcEv +00000000001b24f0 g DF .text 000000000000014c _ZN2nn2ec6detail40ShowShopSecretApplicationInformationImplENS1_10LaunchModeENS0_5NsUidERKNS_7account3UidENS0_8SourceIdE +00000000003aafe4 g DF .text 0000000000000010 pthread_attr_getinheritsched +0000000000063890 g DF .text 0000000000000168 _ZN2nn2fs9GetMmcCidEPvm +00000000001b577c g DF .text 0000000000000074 _ZNK2nn2la21CommonArgumentsWriter15PushToInChannelENS_6applet19LibraryAppletHandleE +00000000002203e8 w DF .text 0000000000000004 _ZN2nn3hid6detail16NpadHandheldLifoD0Ev +000000000012dab0 g DF .text 0000000000000148 _ZN2nn4htcs23CreateHtcsManagerByHipcEPNS_2sf30HipcSimpleClientSessionManagerE +0000000000825444 g DO .rodata 0000000000000002 _ZTSa +0000000000825414 g DO .rodata 0000000000000002 _ZTSb +000000000004b488 w DF .text 0000000000000008 _ZN2nn2fs11FileStorageD0Ev +00000000000ce0e8 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IApplicationProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000001804e0 g DF .text 00000000000000c8 _ZN2nn4time6detail7service21ServiceProviderClient35GetRepairStaticServiceSharedPointerEPNS_2sf13SharedPointerINS_7timesrv6detail7service14IStaticServiceEEE +000000000036be0c g DF .text 0000000000000030 _ZTv0_n24_NSt3__110istrstreamD0Ev +000000000082542c g DO .rodata 0000000000000002 _ZTSc +00000000008254e4 g DO .rodata 0000000000000002 _ZTSd +00000000003579a0 g DF .text 0000000000000068 _ZNKSt3__17codecvtIDsc11__mbstate_tE5do_inERS1_PKcS5_RS5_PDsS7_RS7_ +00000000008254f0 g DO .rodata 0000000000000002 _ZTSe +000000000009e1e0 w DF .text 0000000000000020 _ZNK2nn2sf4hipc6server18Hipc2ServerMessage24OverwriteClientProcessIdEPm +00000000007d403a g DO .rodata 0000000000000028 silk_Resampler_1_6_COEFS +0000000000178654 g DF .text 0000000000000094 _ZN2nn3ssl10Connection9SetIoModeENS1_6IoModeE +00000000008254d8 g DO .rodata 0000000000000002 _ZTSf +00000000008254fc g DO .rodata 0000000000000002 _ZTSg +0000000000041a14 g DF .text 000000000000003c _ZN2nn4edid6detail12GetSyncTypesEh +0000000000825438 g DO .rodata 0000000000000002 _ZTSh +00000000003e5c08 g DF .text 0000000000000110 __nnmusl_FileFTruncate +0000000000825468 g DO .rodata 0000000000000002 _ZTSi +00000000000e7b4c g DF .text 000000000000052c celt_iir +00000000001b32d0 g DF .text 000000000000001c _ZN2nn2ec6detail19ShopPageReturnValueC2Ev +0000000000361be0 g DF .text 000000000000005c _ZNSt3__113random_deviceC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +0000000000825474 g DO .rodata 0000000000000002 _ZTSj +00000000001afa90 g DF .text 00000000000000ac _ZN2nn5audio3dsp6detail12ResampleImplEPiPKiiS3_i +0000000000825480 g DO .rodata 0000000000000002 _ZTSl +000000000095dd10 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEEvEE +000000000082548c g DO .rodata 0000000000000002 _ZTSm +000000000023e8fc g DF .text 0000000000000048 _ZN22nerd_gillette_internal5otete7jaimev126DecodeHasFullFrameShapeROKERbPKhmPm +000000000032b528 w DF .text 00000000000001b8 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getERNS_15basic_streambufIcS2_EEc +00000000008254b0 g DO .rodata 0000000000000002 _ZTSn +00000000008223c8 g DO .rodata 0000000000000004 _ZNSt3__18ios_base9basefieldE +00000000008254bc g DO .rodata 0000000000000002 _ZTSo +0000000000046bac g DF .text 000000000000008c _ZN2nn2fs6detail30OutputAccessLogForPreconditionENS_6ResultENS_2os4TickES4_PKcNS0_10FileHandleES6_z +00000000002533c4 g DF .text 0000000000000008 _ZNK2nn3web20LobbyPageReturnValue18GetLobbyExitReasonEv +00000000001522f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E20_nn_sf_sync_ShutdownEv +00000000003e0dac w DF .text 0000000000000094 __strtoul_internal +00000000001d29a0 w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm10EE27InitializeShimLibraryHolderINS_5visrv2sf19IManagerRootServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +00000000002950ec g DF .text 0000000000000128 _ZN7android7BBinder12attachObjectEPKvPvS3_PFvS2_S3_S3_E +0000000000825450 g DO .rodata 0000000000000002 _ZTSs +000000000097b3c8 g DO .data 0000000000000060 _ZTVNSt3__115__codecvt_utf16IDsLb0EEE +000000000082545c g DO .rodata 0000000000000002 _ZTSt +00000000000cbbf8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19ILibraryAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001a551c g DF .text 0000000000000008 _ZNK2nn5audio6server15SplitterContext12GetInfoCountEv +000000000006e640 w DF .text 00000000000001dc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000028678c g DF .text 000000000000000c NvRmGpuDeviceCacheControl +00000000008253f8 g DO .rodata 0000000000000002 _ZTSv +0000000000825420 g DO .rodata 0000000000000002 _ZTSw +00000000002021c0 g DF .text 000000000000002c FsLtt_delete +0000000000825498 g DO .rodata 0000000000000002 _ZTSx +00000000008254a4 g DO .rodata 0000000000000002 _ZTSy +00000000007c9f50 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000015c5e8 g DF .text 0000000000000058 _ZN2nn2oe42SetOperationModeChangedNotificationEnabledEb +00000000001a7d80 w DF .text 0000000000000024 _ZN2nn2sf6detail37UnmanagedEmplacedImplHolderBaseGetterINS_5audio6server24AudioRendererManagerImplEvE5Impl2D0Ev +000000000008f798 g DF .text 00000000000000a0 _ZN2nn2os16AcquireWriteLockEPNS0_20ReaderWriterLockTypeE +00000000000c7784 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IWindowControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001a302c g DF .text 0000000000000010 _ZNK2nn5audio6server13EffectContext7GetInfoEi +0000000000803c40 w DO .rodata 0000000000000023 _ZTSN2nn3hid6detail16NpadHandheldLifoE +00000000003e3ccc g DF .text 000000000000000c difftime +00000000003cf7a4 g DF .text 0000000000000098 __cos +00000000001d0764 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000018286c w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm208EEENSI_ILi1ELi25ELm208EEEEEELm0ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeESU_j +00000000003a1bc4 g DF .text 0000000000000060 __fixunsxfsi +0000000000065bd0 w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE17DoRenameDirectoryEPKcSB_ +00000000000824d8 w DF .text 0000000000000008 nnmem_nlib_calloc +00000000001a3d28 g DF .text 00000000000000a0 _ZN2nn5audio6server10MixContext10InitializeEPPNS1_7MixInfoES4_iPimPvmS7_m +0000000000056644 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeEj +00000000000d7514 g DF .text 000000000000006c _ZN2nn4bcat6detail17ShimLibraryGlobal27UnmountDeliveryCacheStorageEv +00000000001aa42c g DF .text 0000000000000004 _ZN2nn5audio3dsp16UnmapUserPointerENS0_7CpuAddrEm +0000000000232954 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E32_nn_sf_sync_GetNpadInterfaceTypeENS0_3OutIhvEEj +000000000014fd48 g DF .text 0000000000000004 _ZN2nn3ngc6detail11CalcSelect1EjjPKjS3_PKh +0000000000395e44 g DF .text 00000000000000e0 __cxa_vec_new +000000000039e314 g DF .text 0000000000000184 __trunctfdf2 +000000000025c14c g DF .text 0000000000000168 NvMemoryProfilerRegisterHeap +000000000094cfc0 w DO .data 0000000000000018 _ZTIN2nn2am7service8IStorageE +00000000007c6d60 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000018ba40 g DF .text 000000000000000c _ZN2nn5audio23SplitterDestinationData8SetInUseEb +0000000000823310 g DO .rodata 0000000000000022 _ZTSNSt3__115__codecvt_utf16IDiLb0EEE +0000000000065bdc w DF .text 0000000000000044 _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE14DoGetEntryTypeEPNS0_18DirectoryEntryTypeEPKc +00000000000b04a8 g DF .text 0000000000000118 _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferI7hostentEElRT_PKhm +000000000080cbf0 w DO .rodata 000000000000001c _ZTSN2nn3hid16IHidSystemServerE +000000000029c9c8 g DF .text 0000000000000080 _ZN7android10MemoryBaseD0Ev +00000000001bea34 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetMiiVersionEv +00000000003e1b5c g DF .text 0000000000000028 mempcpy +00000000002735d8 g DF .text 0000000000000030 NvRmStreamSetContextSwitch +00000000003cc468 g DF .text 0000000000000174 log10f +00000000009472c0 w DO .data 0000000000000018 _ZTIN2nn7account4baas12IManagerBaseE +0000000000228e40 g DF .text 0000000000000018 _ZN2nn3hid6system18GetFirmwareVersionEPNS1_15FirmwareVersionENS1_11UniquePadIdE +0000000000233ee0 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E17GetCmifBaseObjectEv +00000000003d2dd4 g DF .text 0000000000000108 mbtowc +000000000016d750 g DF .text 0000000000000070 _ZN2nn8settings6detail17SetKeyboardLayoutENS0_14KeyboardLayoutE +000000000017a3c8 g DF .text 0000000000000014 _ZN2nn3ssl6detail10SslApiBaseD2Ev +00000000002ab128 g DF .text 000000000000013c _ZN7android18BufferItemConsumer13releaseBufferERKNS_22IGraphicBufferConsumer10BufferItemERKNS_2spINS_5FenceEEE +0000000000099d18 g DF .text 0000000000000044 _ZN2nn2sf26GetNewDeleteMemoryResourceEv +000000000095d030 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEEvEE +000000000003b5f0 g DF .text 0000000000000024 _ZNK2nn4util16BinaryFileHeader14IsVersionValidEiii +0000000000358de0 g DF .text 0000000000000020 _ZNKSt3__114__codecvt_utf8IDiE9do_lengthER11__mbstate_tPKcS5_m +0000000000174d48 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetExternalRtcResetFlagENS0_3OutIbvEE +00000000003cc5dc g DF .text 000000000000001c log10l +000000000008de1c g DF .text 0000000000000050 _ZN2nn2os20InitializeTimerEventEPNS0_14TimerEventTypeENS0_14EventClearModeE +0000000000978150 w DO .data 0000000000000018 _ZTIN2nn4gpio8IManagerE +0000000000189130 g DF .text 000000000000001c _ZN2nn5audio14MemoryPoolInfo10InitializeEPvm +00000000007ae570 g DO .rodata 0000000000000040 _ZN2nn4util18MatrixRowMajor4x4f12ConstantZeroE +00000000000c58ec w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE32_nn_sf_sync_GetDisplayControllerENS0_3OutINS0_13SharedPointerINS6_18IDisplayControllerEEEvEE +00000000000d119c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object12AddReferenceEv +000000000022c588 g DF .text 000000000000005c _ZN2nn3hid12GetNpadStateEPNS0_11NpadGcStateERKj +0000000000316088 g DF .text 0000000000000004 nngpioOpenSession +000000000022af78 g DF .text 0000000000000054 _ZN2nn3hid6system14IsNfcActivatedEj +000000000018a730 g DF .text 000000000000007c _ZN2nn5audio8SinkInfo16StoreInParameterERNS0_6common15SinkInParameterE +0000000000061480 g DF .text 0000000000000148 _ZN2nn2fs28GetGameCardDeviceCertificateEPvmj +000000000094c9b0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEEE +00000000002c39f0 g DF .text 0000000000000024 _ZN7android14SurfaceControl4hideEv +0000000000216864 g DF .text 0000000000000058 _ZN2nn3hid6system6detail19AbortFirmwareUpdateEv +00000000003a4a90 g DF .text 0000000000000108 __truncsfhf2 +00000000000c1f90 g DF .text 0000000000000034 _ZNK2nn7account49ExternalNetworkServiceAccountIntroducingProcedure26GetNetworkServiceAccountIdEPNS0_23NetworkServiceAccountIdE +00000000000583a0 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001374f4 g DF .text 0000000000000054 _ZN2nn3nfc6client22DestroySystemInterfaceEv +00000000003a1c24 g DF .text 00000000000000c8 __fixunsxfti +00000000003a17d8 g DF .text 000000000000006c __fixsfsi +00000000003e75c0 g DF .text 0000000000000020 __nnmusl_MutexTryLock +000000000025e760 g DF .text 0000000000000074 NvUScalarHash32 +00000000000932f8 g DF .text 000000000000004c _ZN2nn2os6detail13MultiWaitImpl21NotifyAndWakeupThreadEPNS1_19MultiWaitHolderBaseE +00000000009afff0 g DO .bss 0000000000000008 global_stack +000000000016bad0 g DF .text 0000000000000070 _ZN2nn8settings6detail28SetHeadphoneVolumeUpdateFlagEb +000000000018bd44 g DF .text 000000000000000c _ZN2nn5audio15GetSubMixNodeIdEPKNS0_10SubMixTypeE +000000000025152c w DF .text 00000000000000f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm2ELm2ELl0EEEEEELm0ELm2ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm2ELm2EEEj +00000000002aa618 g DF .text 000000000000005c _ZN7android10BufferItemD2Ev +000000000034e6a4 w DF .text 0000000000000634 _ZNSt3__111__money_putIwE8__formatEPwRS2_S3_jPKwS5_RKNS_5ctypeIwEEbRKNS_10money_base7patternEwwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNSE_IwNSF_IwEENSH_IwEEEESQ_i +000000000035e7b4 g DF .text 000000000000004c _ZNSt3__112ctype_bynameIwED1Ev +00000000003136e4 g DF .text 00000000000000d0 _ZN2nn3fgm7Request21SetAndWaitWithTimeoutEjjNS_8TimeSpanE +00000000001b6134 g DF .text 0000000000000028 _ZN2nn3mii21ParamCharInfoAccessorC2ERKNS0_8CharInfoE +00000000001d04bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E52_nn_sf_sync_FinishDetachSharedLayerFromLowLevelLayerENS_2vi7fbshare17SharedLayerHandleE +000000000012eec4 w DF .text 000000000000011c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm66ELm2ELl0EEEEEELm66ELm8ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESN_NSL_23InRawClientArgumentTypeILm66ELm2EvEEj +00000000001364b8 g DF .text 00000000000000a8 _ZN2nn2lm6detail24LogPacketTransmitterBaseC1EPvmPFbPKhmEhhmbb +00000000008054f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi104EE4MaskE +0000000000057d44 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi1ELi70ELm0EEENSG_ILi2ELi69ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSG_ILi0ELi25ELm769EEEEEELm4ELm0ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEST_NS2_23InRawClientArgumentTypeILm4ELm4EvEEST_j +000000000022f7cc g DF .text 0000000000000050 _ZN2nn3hid13VibrationNode19SetCurrentVibrationERKNS0_14VibrationValueE +0000000000165308 g DF .text 00000000000000a0 _ZN2nn5prepo10PlayReportC2EPKc +00000000000ace34 g DF .text 00000000000001fc _ZN2nn6socket8resolver17GetGaiStringErrorEj +000000000018abd4 g DF .text 00000000000000a8 _ZN2nn5audio22SetSplitterDestinationEPNS0_19AudioRendererConfigEPNS0_12SplitterTypeEiPNS0_12FinalMixTypeE +000000000022f68c g DF .text 00000000000000e0 _ZNK2nn3hid13VibrationNode15GetModulationToEPKS1_ +00000000003c3314 g DF .text 0000000000000014 alphasort +0000000000950338 g DO .data 0000000000000040 silk_NLSF_CB_WB +0000000000168d7c g DF .text 0000000000000050 _ZN2nn8settings6system29GetErrorReportSharePermissionEv +000000000018c034 g DF .text 000000000000000c _ZN2nn5audio18GetVoiceSampleRateEPKNS0_9VoiceTypeE +00000000000c7914 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001d9d38 g DF .text 0000000000000010 _ZN2nn6fontll18ScalableFontEngine8SetFlagsENS1_5FlagsE +0000000000001be4 g DF .text 0000000000000064 _ZN2nn6crypto18GenerateSha256HashEPvmPKvm +0000000000804c70 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi36EE4MaskE +0000000000234ce4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E33_nn_sf_sync_SendConnectionTriggerENS_9bluetooth7AddressE +00000000001f0664 g DF .text 00000000000000ac muldiv_64 +00000000000fcc30 g DF .text 0000000000000050 silk_init_encoder +0000000000174f60 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_GetHeadphoneVolumeUpdateFlagENS0_3OutIbvEE +000000000019aa28 g DF .text 0000000000000098 _ZN2nn5audio6server17AudioRenderSystemC2ERNS_2os11SystemEventE +0000000000823820 w DO .rodata 0000000000000045 _ZTSNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +000000000002a424 g DF .text 0000000000000030 _ZN2nn5image6detail4jpeg14jpeg_get_largeEPNS2_18jpeg_common_structEm +000000000009135c g DF .text 0000000000000004 nnosGetCurrentSemaphoreCount +000000000018d658 g DF .text 0000000000000018 _ZN2nn5audio6common10NodeStates15PushTsortResultEi +0000000000251fec w DF .text 0000000000000188 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm32ELm8ELl160EEENSB_ILm68ELm2ELl0EEENSB_ILm32ELm1ELl68EEENSB_ILm48ELm1ELl100EEENSB_ILm4ELm4ELl148EEENSB_ILm4ELm4ELl152EEEEEELm192ELm0ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm32ELm8EvEENSO_ILm68ELm2EvEENSO_ILm32ELm1EvEENSO_ILm48ELm1EvEENSO_ILm4ELm4EvEEST_j +0000000000173040 w DF .text 00000000000000f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEEEEELm0ELm8ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEEj +0000000000975828 g DO .data 0000000000000040 _ZTVN7android14SurfaceControlE +000000000012990c w DF .text 000000000000016c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm64ELm1ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm64ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm64ELm1EEENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000231a80 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm1ELl0EEENSB_ILm4ELm1ELl4EEENSB_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm1EvEESM_NSL_ILm8ELm8EvEEj +0000000000239378 g DF .text 0000000000000028 _ZN2nn8irsensor6detail7SessionC2Ev +00000000003a1844 g DF .text 00000000000000bc __fixsfti +000000000006ee10 g DF .text 0000000000000004 _ZN2nn4lmem12SetFillValueENS0_8FillTypeEj +000000000029dcfc g DF .text 0000000000000008 _ZNK7android6Parcel4dataEv +000000000032b1f4 w DF .text 0000000000000034 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE3getERc +00000000003ab0a8 g DF .text 0000000000000004 pthread_barrier_init +000000000009dd64 w DF .text 000000000000008c _ZN2nn2sf4hipc6server17HipcServerMessage27BeginPreparingForErrorReplyEPNS0_6detail14PointerAndSizeEm +00000000001741fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetAccountSettingsENS0_3OutINS5_6system15AccountSettingsEvEE +00000000001a7d78 w DF .text 0000000000000004 _ZN2nn2sf6detail37UnmanagedEmplacedImplHolderBaseGetterINS_5audio6server24AudioRendererManagerImplEvE5Impl212AddReferenceEv +00000000001d4f68 g DF .text 0000000000000064 _ZN2nn2vi16InitializeMemoryEv +00000000009426c0 w DO .data 0000000000000018 _ZTIN2nn3spl6detail16IRandomInterfaceE +00000000001a2494 g DF .text 0000000000000024 _ZN2nn5audio6server18PerformanceManager15SetFrameAddressEPNS1_25PerformanceFrameAddressesEPai +00000000001260b0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E29_nn_sf_sync_ReadFriendRequestERKNS_7account3UidENS5_9RequestIdE +0000000000055798 w DF .text 0000000000000134 _ZN2nn2sf4cmif6client23CmifDomainClientMessageINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEEE15ProxyBaseObjectD2Ev +00000000007c1ca0 w DO .rodata 0000000000000023 _ZTSN2nn7account4baas14IAdministratorE +00000000007cfe60 w DO .rodata 000000000000015b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000313e80 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000cb6b0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_StartRebootSequenceEv +0000000000093724 g DF .text 0000000000000050 _ZNK2nn2os6detail27MultiWaitHolderOfTimerEvent23GetAbsoluteTimeToWakeupEv +00000000007ceea0 w DO .rodata 0000000000000024 _ZTSN2nn4bcat6detail3ipc12IBcatServiceE +000000000016e8e4 g DF .text 0000000000000070 _ZN2nn8settings6detail38SetPushNotificationActivityModeOnSleepEi +000000000003d520 g DF .text 0000000000000084 _ZN2nn4util40InitializeStreamingDecompressGzipContextEPNS0_30StreamingDecompressZlibContextE +00000000000bd7f8 g DF .text 0000000000000028 _ZN2nn7account12AsyncContextC2EPNS0_6detail13IAsyncContextERKNS0_3UidE +000000000010a330 g DF .text 0000000000000010 opus_decoder_alloc_get_size +000000000021afa0 g DF .text 0000000000000084 _ZN2nn3hid6detail30SetNpadJoyAssignmentModeSingleERKjNS0_17NpadJoyDeviceTypeE +000000000016eaa4 g DF .text 0000000000000070 _ZN2nn8settings6detail15GetSerialNumberEPNS0_6system12SerialNumberE +00000000001a5668 g DF .text 0000000000000024 _ZN2nn5audio6server9VoiceInfoC1Ev +000000000036508c w DF .text 00000000000000b8 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7compareEmmPKc +00000000007d78a0 w DO .rodata 000000000000014e _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc14IFriendServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000186cf8 g DF .text 0000000000000018 _ZN2nn5audio6AddAuxEPNS0_19AudioRendererConfigEPNS0_7AuxTypeEPNS0_12FinalMixTypeEPvS7_m +00000000001d5478 g DF .text 000000000000002c _ZN2nn2vi13ObjectManager20FindValidLayerHolderEPKNS0_5LayerE +00000000001e2850 g DF .text 0000000000000018 FS_get_heap_used +00000000000bf9f0 g DF .text 000000000000002c _ZN2nn7account26GetNetworkServiceAccountIdEPNS0_23NetworkServiceAccountIdERKNS0_10UserHandleE +00000000001a7ba0 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_25DepopForMixBuffersCommandE +00000000003a2204 g DF .text 0000000000000170 __floattisf +00000000000dd434 g DF .text 0000000000000078 resampling_factor +0000000000959ed0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000011b638 g DF .text 0000000000000008 _ZNK2nn3err19ApplicationErrorArg15GetLanguageCodeEv +00000000003a92c0 g DF .text 0000000000000004 sched_get_priority_max +000000000003b2e4 g DF .text 0000000000000010 _ZN2nn4util6Base6416FromBase64StringEPmPvmPKcNS1_4ModeE +000000000009a160 g DF .text 0000000000000044 _ZN2nn2sf6detail21DefaultDeallocateImplEPvmmm +0000000000178810 g DF .text 00000000000000a0 _ZN2nn3ssl10Connection19GetSocketDescriptorEPi +00000000009424b8 g DO .data 0000000000000010 _ZTIN2nn5image13ExifExtractorE +00000000002c4f0c g DF .text 000000000000008c _ZN7android8Composer8setAlphaERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEf +0000000000322c7c w DF .text 00000000000002d4 _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIddEEPdEEbT0_S5_T_ +000000000008e56c g DF .text 0000000000000004 _ZN2nn2os33DetachWritableHandleOfSystemEventEPNS0_15SystemEventTypeE +0000000000319d18 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +000000000017ce90 g DF .text 00000000000000d8 _ZN2nn3ssl5Debug5IoctlEPNS1_6OutputEPNS1_5InputENS1_12IoctlCommandE +00000000001d3a70 g DF .text 000000000000008c _ZN2nn2vi19GetDisplayUnderscanEPiPKNS0_7DisplayE +000000000017e8c8 g DF .text 0000000000000094 _ZN2nn4time25GetTotalLocationNameCountEv +00000000001b7780 g DF .text 0000000000000004 _ZN2nn3mii6detail25ReplaceColorTableForDebugEPKvm +00000000000300fc g DF .text 0000000000000170 _ZNK2nn5image13ExifExtractor15ExtractDateTimeEPm +00000000000d22b4 g DF .text 00000000000000cc _ZN2nn6applet19CreateLibraryAppletEPNS0_19LibraryAppletHandleENS0_8AppletIdENS0_17LibraryAppletModeE +0000000000803c70 w DO .rodata 0000000000000052 _ZTSN2nn3hid6detail8RingLifoINS0_17NpadHandheldStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000016e380 g DF .text 0000000000000088 _ZN2nn8settings6detail30GetAccountNotificationSettingsEPiPNS0_6system27AccountNotificationSettingsEm +00000000002638d4 g DF .text 0000000000000030 NvOsTlsAlloc +000000000016de4c g DF .text 0000000000000070 _ZN2nn8settings6detail21GetAccelerometerScaleEPNS0_7factory18AccelerometerScaleE +00000000001ca1c0 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard8GetImageEPvm +0000000000048714 g DF .text 0000000000000098 _ZN2nn2fs24HierarchicalRomFileTable8OpenFileEPNS0_11RomFileInfoEPKc +00000000002cdc8c g DF .text 00000000000000bc _ZNK7android12SharedBuffer4editEv +0000000000286ee8 g DF .text 000000000000000c NvRmGpuTaskSchedulingGroupControl +000000000035a660 g DF .text 0000000000000020 _ZNKSt3__120__codecvt_utf8_utf16IDsE9do_lengthER11__mbstate_tPKcS5_m +000000000081f550 w DO .rodata 00000000000000f3 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000315210 g DF .text 0000000000000058 _ZN2nn4gpio16GetInterruptModeEPNS0_14GpioPadSessionE +0000000000328d38 w DF .text 00000000000000c4 _ZNSt3__19basic_iosIwNS_11char_traitsIwEEE7copyfmtERKS3_ +00000000007ac63c g DO .rodata 0000000000000014 _ZN2nn4util6detail15SinCoefficientsE +000000000032c5f0 w DF .text 0000000000000004 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEED2Ev +00000000000470f0 g DF .text 0000000000000054 _ZN2nn2fs6detail8IdString8ToStringINS0_16ContentStorageIdEEEPKcT_ +000000000094f910 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000001de050 g DF .text 000000000000006c FSS_get_design_units +000000000095bea8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS1_31AnalogStickCalibrationStateImplELi1ENS1_13AtomicStorageIS3_EEEE +00000000003e7aa4 g DF .text 0000000000000018 __nnmusl_pthread_barrier_destroy +000000000011d0b8 w DF .text 0000000000000094 _ZN2nn7friends6detail17ShimLibraryGlobal14GetSyncSessionEv +000000000039d9a0 g DF .text 00000000000001a4 __floattitf +00000000000b7300 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_4baas18IGuestLoginRequestEEEvi +00000000007d4cc3 g DO .rodata 000000000000000b silk_pitch_contour_NB_iCDF +000000000005899c w DF .text 00000000000001d0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi70ELm0EEENSG_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEST_j +000000000015400c w DF .text 000000000000026c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18OutRawArgumentInfoILm16ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm380EEEEEELm0ELm16ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24OutRawClientArgumentTypeILm16ELm1EEENS2_24BufferClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000231058 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14HidDebugServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +00000000002863c0 g DF .text 0000000000000098 nvgr_scratch_alloc +0000000000169100 g DF .text 0000000000000058 _ZN2nn8settings6system31GetApplicationOwnKeyboardLayoutEPNS0_14KeyboardLayoutE +000000000014f4ec g DF .text 0000000000000018 _ZN2nn3ngc6detail15CompressedArray12SetAllocatorEPNS1_16WorkBufAllocatorE +00000000001bc020 g DF .text 0000000000000008 _ZNK2nn3mii6detail12StoreDataRaw10IsValidCrcEv +0000000000045260 g DF .text 0000000000000004 _ZN2nn4diag13OnResultThrowENS_6ResultERKNS0_10SourceInfoE +000000000004753c g DF .text 0000000000000008 _ZN2nn2fs24HierarchicalRomFileTable36QueryDirectoryEntryBucketStorageSizeEl +000000000094d280 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000160e64 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_RequestPairingAsyncENS0_3OutINS6_9AsyncDataEvEENSL_INS0_12NativeHandleEvEERKNS0_7InArrayIcEE +0000000000168504 g DF .text 0000000000000044 _ZN2nn8settings6system22SetPrimaryAlbumStorageENS1_19PrimaryAlbumStorageE +0000000000007c7c g DF .text 0000000000000420 _ZN2nn6crypto6detail10Sha256Impl16ProcessLastBlockEv +00000000000c114c g DF .text 00000000000000c4 _ZN2nn7account34NetworkServiceAccountAdministrator18UploadProfileAsyncEPNS0_12AsyncContextE +000000000015267c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E40_nn_sf_sync_GetSystemEventReadableHandleENS0_3OutINS0_12NativeHandleEvEE +000000000025e41c g DF .text 0000000000000084 NvUScalarHash64 +000000000095d620 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_EE +0000000000189da0 g DF .text 0000000000000050 _ZN2nn5audio24PerformanceBufferManager13GetBufferSizeEv +00000000000c778c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IWindowControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000001b5900 g DF .text 0000000000000004 _ZN2nn2la31NifmToNetConnectArgumentsWriterD2Ev +00000000002c968c g DF .text 0000000000000110 _ZN7android13GraphicBufferC2EjjijjP13native_handleb +00000000000d5d2c g DF .text 00000000000000a0 _ZN2nn4bcat19UnblockDeliveryTaskENS_13ApplicationIdE +00000000001352cc g DF .text 0000000000000250 _ZN2nn4htcs6detail25virtual_socket_collection6ListenEiiRi +00000000001aa428 g DF .text 0000000000000004 _ZN2nn5audio3dsp12WaitForUnmapEv +0000000000185874 g DF .text 0000000000000008 _ZN2nn5audio17FinalizeAuxBufferEPNS0_13AuxBufferInfoE +00000000008251c0 g DO .rodata 0000000000000011 _ZTSSt12length_error +0000000000170fb4 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object12AddReferenceEv +00000000000bbbb0 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E56_nn_sf_sync_CreateProcedureToLinkNnidWithNintendoAccountENS0_3OutINS0_13SharedPointerINS5_4http15IOAuthProcedureEEEvEE +0000000000239580 g DF .text 00000000000000b0 _ZN2nn8irsensor6detail7Session10DeactivateEv +000000000024bce4 g DF .text 0000000000000044 _ZN2nn3kpr13GetKeyCodeMapEPNS0_10KeyCodeMapE +0000000000294f88 g DF .text 0000000000000008 _ZN7android7BBinder10pingBinderEv +00000000009798a0 w DO .data 0000000000000028 _ZTINSt3__113basic_istreamIwNS_11char_traitsIwEEEE +00000000000c8ca8 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service20IApplicationAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000024bf70 g DF .text 0000000000000008 _ZN2nn3kpr6detail22GetKeyCodeComposerModeERKNS1_22KeyCodeComposerStorageE +00000000000ba8d8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEE17GetCmifBaseObjectEv +00000000001d4ff8 g DF .text 000000000000000c _ZN2nn2vi21AllocateDisplayHolderEv +000000000094be10 w DO .data 0000000000000018 _ZTIN2nn2am7service13ILockAccessorE +000000000014decc g DF .text 0000000000000090 _ZN2nn3ngc6detail9SparseSetC2EOS2_ +000000000009caac g DF .text 0000000000000060 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase27RegisterServerSessionToWaitEPNS2_17HipcServerSessionE +00000000000cdd70 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IOverlayAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_GetOverlayFunctionsENS0_3OutINS0_13SharedPointerINS6_17IOverlayFunctionsEEEvEE +000000000032409c g DF .text 0000000000000020 _ZNSt3__16chrono12steady_clock3nowEv +0000000000362254 g DF .text 000000000000003c _ZNSt3__118shared_timed_mutexC1Ev +000000000022d8d8 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm2EEEiPNS0_16TouchScreenStateIXT_EEEi +00000000000b3fcc g DF .text 000000000000003c _ZN2nn7account15SetUserPositionERKNS0_3UidEi +00000000000c8e08 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_TerminateAllLibraryAppletsEv +000000000016b650 g DF .text 0000000000000070 _ZN2nn8settings6detail18SetAccountSettingsERKNS0_6system15AccountSettingsE +000000000021f2b8 g DF .text 00000000000000e4 _ZN2nn3hid6detail20SharedMemoryAccessor23SetAppletResourceUserIdENS_6applet20AppletResourceUserIdE +000000000014d8d8 g DF .text 0000000000000094 _ZNK2nn3ngc6detail3Sbv7MemSizeEv +000000000018dc88 g DF .text 0000000000000054 _ZN2nn5audio20Axfx2DelayInitializeEPNS0_14Axfx2DelayLineEiPf +000000000023b570 g DF .text 000000000000023c _ZN2nn8irsensor25GetHandAnalysisImageStateEPNS0_22HandAnalysisImageStateEPiilRKNS0_14IrCameraHandleE +000000000004b278 g DF .text 00000000000000bc _ZN2nn2fs17FileHandleStorage4ReadElPvm +00000000001a680c g DF .text 0000000000000014 _ZN2nn5audio6server12VoiceContext10InitializeEPPNS1_9VoiceInfoES4_PNS1_20VoiceChannelResourceEPNS0_10VoiceStateES9_i +000000000008ff14 g DF .text 00000000000000d0 _ZN2nn2os21TimedAcquireSemaphoreEPNS0_13SemaphoreTypeENS_8TimeSpanE +00000000000ce304 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE30_nn_sf_sync_GetAudioControllerENS0_3OutINS0_13SharedPointerINS6_16IAudioControllerEEEvEE +000000000018de44 g DF .text 0000000000000008 _ZN2nn5audio23Axfx2AllPassGetDelayLenEPNS0_14Axfx2DelayLineE +0000000000097878 g DF .text 0000000000000108 _ZN2nn2ro18RegisterModuleInfoEPNS0_16RegistrationInfoEPKv +00000000001260f0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_AddFacedFriendRequestERKNS_7account3UidERKNS5_33FacedFriendRequestRegistrationKeyERKNSL_8NicknameERKNS0_8InBufferE +000000000013c82c w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3nfp6detail7ISystemEED2Ev +000000000003c574 g DF .text 0000000000000030 _ZN2nn4util12CompressGzipEPmPvmPKvmS2_mii +0000000000324948 g DF .text 0000000000000010 _ZNSt3__111__libcpp_dbC2Ev +000000000016d3e4 g DF .text 0000000000000070 _ZN2nn8settings6detail23GetUsbFullKeyEnableFlagEPb +00000000003c2b84 w DF .text 0000000000000028 iswlower_l +000000000004f758 g DF .text 0000000000000148 _ZN2nn2fs15DeleteDirectoryEPKc +00000000000c8d88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE23_nn_sf_sync_RequestExitEv +00000000003dc768 g DF .text 000000000000000c __freadahead +0000000000050d50 g DF .text 0000000000000190 _ZN2nn2fs17MountBcatSaveDataEPKcNS_3ncm13ApplicationIdE +00000000002248f8 w DF .text 00000000000001c4 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm7EEEEEiPT_i +00000000001fbbe8 g DF .text 0000000000000458 do_hints +000000000035fce4 w DF .text 000000000000010c _ZNSt3__125__num_get_signed_integralIlEET_PKcS3_Rji +000000000007d94c g DF .text 00000000000000e4 nnmem_nlib_strto_uint32_fallback +0000000000314038 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000003b88c0 w DF .text 0000000000000080 rawmemchr +00000000001a244c g DF .text 0000000000000034 _ZN2nn5audio6server18PerformanceManager19GetNextHistoryIndexEv +0000000000254d8c g DF .text 0000000000000060 _ZN2nn3web21ShowSystemDataPageArgC2ERKNS_3ncm12SystemDataIdEPKc +00000000009a2780 g DO .bss 0000000000000004 __optpos +0000000000177920 g DF .text 0000000000000004 _ZN2nn3ssl7ContextD1Ev +000000000018fe34 g DF .text 000000000000005c _ZN2nn5audio30RequestSuspendAudioInsForDebugENS_6applet20AppletResourceUserIdE +00000000001c5a50 g DF .text 0000000000000020 _ZNK2nn3mii15PrivateDatabase11IsAvailableEv +00000000000b631c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E18_nn_sf_sync_CancelEv +0000000000357f7c g DF .text 0000000000000104 _ZNKSt3__17codecvtIDic11__mbstate_tE6do_outERS1_PKDiS5_RS5_PcS7_RS7_ +0000000000002844 g DF .text 0000000000000050 _ZN2nn6crypto6detail10bigint_modEPjPKjiS4_i +0000000000118ab0 g DF .text 0000000000000048 _ZN2nn5codec22OpusMultiStreamDecoder10SetContextEPKvm +000000000025cf70 g DF .text 0000000000000004 NvOsFree +0000000000186d10 w DF .text 0000000000000110 _ZN2nn5audio10AddAuxImplINS0_12FinalMixTypeEEENS_6ResultEPNS0_19AudioRendererConfigEPNS0_7AuxTypeEPT_PvSA_m +00000000002a96e8 g DF .text 000000000000011c _ZN7android18BnConsumerListener10onTransactEjRKNS_6ParcelEPS1_j +00000000001bad14 g DF .text 000000000000007c _ZNK2nn3mii6detail10NicknameLe7IsValidEv +00000000000eb1ec g DF .text 0000000000000074 opus_custom_mode_create +0000000000a25930 g DO .bss 0000000000000008 _ZN2nn2vi3dev17g_ExternalLayerIdE +00000000001d6fa4 g DF .text 0000000000000004 _ZN2nn2vi6buffer11BufferQueueD2Ev +0000000000228744 g DF .text 0000000000000044 _ZN2nn3hid6system32BindAudioControlStateChangeEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000230410 g DF .text 0000000000000030 _ZN2nn3hid15VibrationWriterC2Ev +00000000003a8104 g DF .text 0000000000000098 open +00000000000b4c64 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E34_nn_sf_sync_ClearSaveDataThumbnailERKNS5_3UidE +0000000000075d38 g DF .text 0000000000000068 nnmem_nlib_utf16len_ +0000000000119ce4 w DF .text 00000000000001a0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi70ELm0EEENSF_ILi1ELi5ELm0EEEEEELm0ELm16ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_ILm8ELm8EEESP_NSN_24BufferClientArgumentTypeESR_j +0000000000125ea8 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_LoadUserSettingENS0_3OutINS6_15UserSettingImplEvEERKNS_7account3UidE +00000000002349ac w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E29_nn_sf_sync_GetLastActiveNpadENS0_3OutIjvEE +00000000003aefc0 g DF .text 0000000000000084 ceil +00000000001cf26c w DF .text 0000000000000180 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSF_ILm8ELm8ELl8EEEEEELm16ELm8ELb1EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSN_24BufferClientArgumentTypeENSN_23InRawClientArgumentTypeILm8ELm8EvEESS_j +000000000094ddc0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000007c4710 w DO .rodata 0000000000000107 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000016c1f0 g DF .text 0000000000000070 _ZN2nn8settings6detail25GetUserSystemClockContextEPNS_4time18SystemClockContextE +000000000004eab8 g DF .text 0000000000000094 _ZN2nn2fs3fsa8RegisterEPKcONSt3__110unique_ptrINS1_11IFileSystemENS4_14default_deleteIS6_EEEEONS5_INS1_25ICommonMountNameGeneratorENS7_ISB_EEEE +000000000012b228 g DF .text 00000000000005d8 _ZN2nn2fs29EnsureApplicationCacheStorageEPlPNS0_23CacheStorageTargetMediaENS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyE +000000000014ca04 g DF .text 0000000000000084 _ZN2nn3ngc6detail9SbvSelect6ImportEPNS1_12BinaryReaderE +0000000000282f1c g DF .text 00000000000000e0 NvDdkVicConfigureSourceSurface +000000000011b720 g DF .text 000000000000002c _ZN2nn3err14SystemErrorArgC1Ev +000000000022fba4 g DF .text 000000000000003c _ZN2nn3hid15VibrationPlayerC2Ev +000000000017061c g DF .text 0000000000000070 _ZN2nn8settings6detail19GetWebInspectorFlagEPb +00000000002a61ec g DF .text 0000000000000008 ashmem_set_prot_region +0000000000174eb4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E37_nn_sf_sync_SetBluetoothAfhEnableFlagEb +0000000000804910 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi9EE4MaskE +00000000000916d4 g DF .text 0000000000000008 _ZN2nn2os6detail23SignalInterProcessEventEPNS1_21InterProcessEventTypeE +000000000022dc98 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm12EEEiPNS0_16TouchScreenStateIXT_EEEi +00000000001c3528 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw8SetMoleYEi +000000000018130c w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm24ELm8ELl0EEEEEELm0ELm24ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm24ELm8EEEj +00000000003d24e4 g DF .text 00000000000000f4 getsubopt +000000000003bdf0 g DF .text 000000000000004c _ZNK2nn4util8BitArray4noneEv +00000000000c1210 g DF .text 0000000000000028 _ZN2nn7account28NetworkServiceAccountManagerD1Ev +000000000003dce0 g DF .text 000000000000009c _ZN2nn4util6TinyMt23GenerateInitialValueXorEPji +000000000014be14 g DF .text 000000000000006c _ZNK2nn3ngc6detail7SbvRank6ExportEPNS1_12BinaryWriterEj +00000000003470ec w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb1EE16do_positive_signEv +00000000003e61c0 g DF .text 000000000000004c __nnmusl_is_rooted_path +0000000000235080 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E39_nn_sf_sync_CheckFirmwareUpdateRequiredENS0_3OutIlvEENS5_6system11UniquePadIdE +00000000001b76d0 g DF .text 0000000000000010 _ZN2nn3mii6detail24GetFacelineColorFromVer3ENS1_17Ver3FacelineColorE +00000000000908d0 g DF .text 000000000000008c _ZN2nn2os19DestroySharedMemoryEPNS0_16SharedMemoryTypeE +0000000000090b54 g DF .text 0000000000000008 _ZN2nn2os21GetSharedMemoryHandleEPKNS0_16SharedMemoryTypeE +00000000002295d8 g DF .text 0000000000000044 _ZN2nn3hid14InitializeXpadERKNS0_9JoyXpadIdE +000000000018d254 g DF .text 000000000000001c _ZN2nn5audio6common10NodeStates5Stack4pushEi +000000000002f60c g DF .text 0000000000000004 _ZN2nn5image11ExifBuilderD0Ev +00000000000cf798 w DF .text 00000000000000b0 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm100EE27InitializeShimLibraryHolderINS_2am7service30IAllSystemAppletProxiesServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENKUlPvE_clESG_ +000000000019ea9c g DF .text 0000000000000188 _ZN2nn5audio6server13CommandBuffer23GenerateUpsampleCommandEiPNS0_13UpsamplerInfoEiPKaiiij +0000000000978d40 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000089cf0 g DF .text 0000000000000024 _ZN2nn3mem17StandardAllocatorC1EPvmb +000000000011b6b0 g DF .text 0000000000000070 _ZN2nn3err21ReportMultimediaErrorENS_6ResultERKN5movie25MultimediaTelemetryReportE +000000000013f2d0 g DF .text 00000000000000d0 _ZN2nn3nfp12GetAdminInfoEPNS0_9AdminInfoERKNS0_12DeviceHandleE +000000000018bc28 g DF .text 000000000000000c _ZN2nn5audio15GetSubMixVolumeEPKNS0_10SubMixTypeE +00000000003190a0 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi10ELm0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_24BufferClientArgumentTypeESQ_NSO_23InRawClientArgumentTypeILm4ELm4EvEEST_j +000000000094eb10 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +00000000001ce55c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E24_nn_sf_sync_SetLayerSizeEmll +0000000000143a5c g DF .text 0000000000000554 _ZN2nn3ngc19ProfanityFilterBase23ConvertUserInputForWordEPDsiPKDs +00000000002594a8 g DF .text 000000000000005c nvdcGetWindow +00000000000925a0 g DF .text 0000000000000060 _ZNK2nn2os6detail11TickManager13ConvertToTickENS_8TimeSpanE +00000000000c6e90 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_SetScreenShotImageOrientationEi +00000000002b3d78 g DF .text 00000000000000d8 _ZN7android12ConsumerBase19acquireBufferLockedEPNS_22IGraphicBufferConsumer10BufferItemEl +000000000022eb98 g DF .text 0000000000000044 _ZN2nn3hid18SendVibrationValueERKNS0_21VibrationDeviceHandleERKNS0_14VibrationValueE +00000000001d043c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_DestroySharedLayerENS_2vi7fbshare17SharedLayerHandleE +0000000000355e5c g DF .text 0000000000000020 _ZNKSt3__112ctype_bynameIcE10do_toupperEc +000000000036b7a4 g DF .text 000000000000007c _ZNSt3__112strstreambufD0Ev +00000000000af2d4 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm8ELm4ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_24OutRawClientArgumentTypeILm4ELm4EEEj +000000000022ee88 g DF .text 0000000000000004 _ZN2nn3hid14VibrationMixerD1Ev +0000000000071ae4 g DF .text 00000000000000b8 nnmem_nlib_rwlock_wrlock +000000000016dacc g DF .text 0000000000000070 _ZN2nn8settings6detail15GetLanguageCodeEPNS0_12LanguageCodeE +000000000006edb0 g DF .text 0000000000000060 _ZN2nn4init5StartEmmPFvvES2_ +00000000000bf584 g DF .text 0000000000000098 _ZN2nn7account38ExternalNetworkServiceAccountRegistrar34RegisterNetworkServiceAccountAsyncEPNS0_12AsyncContextERKNS0_3UidE +00000000000cbc58 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE12GetProxyInfoEv +0000000000189154 g DF .text 000000000000002c _ZNK2nn5audio14MemoryPoolInfo8ContainsEPKvm +000000000021edd8 g DF .text 00000000000000ac _ZN2nn3hid6detail45BindDeviceRegisteredEventForControllerSupportEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000001d0644 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E45_nn_sf_sync_GetDetachedSharedFrameBufferImageENS0_3OutImvEERKNS0_9OutBufferENS_2vi7fbshare18SharedBufferHandleEl +000000000023d628 g DF .text 00000000000000a0 _ZN22nerd_gillette_internal5otete7jaimev118DecodeIntensityROKERNS1_17IntensityInPacketEPKhmPm +00000000003a2374 g DF .text 0000000000000178 __floattixf +000000000024ccd0 g DF .text 0000000000000008 _ZN2nn5album12LibraryState15GetLibraryMutexEv +00000000001450dc g DF .text 0000000000000038 _ZN2nn3ngc6detail16WorkBufAllocator10InitializeEPvm +00000000001a0470 g DF .text 0000000000000108 _ZN2nn5audio6server16CommandGenerator21GenerateSubMixCommandERNS1_7MixInfoE +000000000022c898 g DF .text 0000000000000044 _ZN2nn3hid6system45BindDeviceRegisteredEventForControllerSupportEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000132f34 g DF .text 0000000000000010 _ZN2nn4htcs13IsInitializedEv +00000000001bd0f0 g DF .text 0000000000000014 _ZN2nn3mii6detail31ModifyVer3CreateIdWiiUAndNormalEPNS1_12Ver3CreateIdE +00000000000c6254 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_GetHdcpAuthenticationStateENS0_3OutIivEE +0000000000329580 w DF .text 000000000000002c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6sbumpcEv +00000000000d6160 g DF .text 00000000000000a4 _ZN2nn4bcat22DeliveryCacheDirectory4OpenERKNS0_13DirectoryNameE +00000000000ac7b0 g DF .text 0000000000000044 _ZN2nn6socket8resolver3tls12GetServerTLSERPv +0000000000153354 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi22ELm1040EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEEj +0000000000160cc0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E44_nn_sf_sync_NotifyWrongPinCodeInputManyTimesEv +00000000009aac00 g DO .bss 0000000000000004 _ZN2nn6socket8resolver3tls9g_TlsSlotE +00000000000b3c28 g DF .text 000000000000004c _ZN2nn7account28GetUserLastOpenedApplicationEPNS_13ApplicationIdEPjRKNS0_3UidE +0000000000214824 g DF .text 000000000000005c _ZN2nn3hid6detail14InitializeXpadERKNS0_11BasicXpadIdE +000000000017a508 g DF .text 0000000000000070 _ZN2nn3ssl8FinalizeEv +00000000002cbaac g DF .text 000000000000004c _ZN7android6Region3setEjj +00000000000c8030 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_AcquireLastForegroundCaptureBufferENS0_3OutINS0_12NativeHandleEvEE +000000000011a4e4 g DF .text 0000000000000008 _ZN2nn3err9ErrorCode19GetInvalidErrorCodeEv +00000000001fe970 g DF .text 0000000000000044 delete_key +00000000002369c8 g DF .text 0000000000000088 _ZN2nn8irsensor6detail11CheckStatusERKNS0_14IrCameraHandleE +000000000095b9f8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_16NpadFullKeyStateELi16ENS1_13AtomicStorageIS3_EEEE +0000000000399b20 g DF .text 0000000000000020 unw_resume +0000000000179dfc g DF .text 0000000000000044 nnsslContextDestroy +00000000001a5620 g DF .text 0000000000000048 _ZN2nn5audio6server10WaveBuffer10InitializeEv +0000000000167d04 g DF .text 0000000000000044 _ZN2nn8settings6system44SetHeadphoneVolumeWarningDisplayedEventCountEi +0000000000361a38 w DF .text 0000000000000004 _ZdlPvm +00000000000750c0 g DF .text 0000000000000004 nnmem_nlib_utf8_to_wide +000000000015db5c g DF .text 0000000000000060 _ZN2nn4pctl28SetCustomSafetyLevelSettingsERKNS0_19RestrictionSettingsE +000000000029963c g DF .text 0000000000000090 _ZN7android9HeapCache9free_heapERKNS_2spINS_7IBinderEEE +000000000009cdb4 w DF .text 0000000000000004 _ZNK2nn2sf4cmif6server20CmifServerObjectInfo19FunctionForBoolTypeEv +000000000095bba0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail14NpadSystemLifoE +0000000000317aa4 g DF .text 000000000000007c _ZN2nn3pcv12SetClockRateENS0_6ModuleEj +000000000026462c g DF .text 000000000000000c app_GetAllocator +000000000032f21c w DF .text 0000000000000004 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPFRS3_S4_E +000000000001a098 g DF .text 00000000000003d0 _ZN2nn5image6detail4jpeg23jinit_color_deconverterEPNS2_22jpeg_decompress_structE +000000000009f2d4 w DF .text 00000000000000c0 _ZN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage13SetOutObjectsEPNS2_20CmifServerObjectInfoE +000000000094ed70 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +000000000009bc20 g DF .text 0000000000000028 _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor10GetPointerEi +0000000000122630 g DF .text 00000000000001b8 _ZN2nn7friends17NotificationQueue10InitializeERKNS_7account3UidE +000000000022f76c g DF .text 0000000000000060 _ZNK2nn3hid23VibrationNodeConnection13GetModulationEv +00000000000b10a0 g DF .text 0000000000000004 _ZN2nn6socket8resolver10serializer13DNSSerializer7hexdumpEPKcPKhl +0000000000111104 g DF .text 0000000000000008 opus_repacketizer_init +00000000002b8988 g DF .text 000000000000003c _ZN7android16ISurfaceComposerC2Ev +00000000000a0e54 w DF .text 00000000000000f4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEEj +000000000007eb7c g DF .text 00000000000002ac nnmem_nlib_timer_settime +00000000000f0f98 g DF .text 0000000000000168 silk_HP_variable_cutoff +0000000000160f0c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E37_nn_sf_sync_FinishRetrievePairingInfoENS0_3OutINS6_15PairingInfoBaseEvEENS6_9AsyncDataE +0000000000188024 g DF .text 000000000000000c _ZN2nn5audio20IsI3dl2ReverbEnabledEPKNS0_15I3dl2ReverbTypeE +000000000009147c g DF .text 0000000000000004 nnosTimedJamMessageQueue +000000000016a3d0 g DF .text 0000000000000068 _ZN2nn8settings5fwdbg12ReadSettingsEPhmNS1_14SettingsTargetE +00000000001881fc g DF .text 0000000000000048 _ZN2nn5audio29SetI3dl2ReverbReflectionsGainEPNS0_15I3dl2ReverbTypeEf +00000000000cb62c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_RequestToEnterSleepEv +000000000011b620 g DF .text 0000000000000008 _ZNK2nn3err19ApplicationErrorArg29GetApplicationErrorCodeNumberEv +00000000001b9600 g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw9SetHeightEi +0000000000041b94 g DF .text 0000000000000008 _ZN2nn4edid6detail23IsVeryLowPowerSupportedEh +00000000001d5980 g DF .text 0000000000000080 _ZN2nn2vi6detail22ServiceReferenceHolder21GetApplicationServiceEPNS_2sf13SharedPointerINS_5visrv2sf26IApplicationDisplayServiceEEE +00000000001b9900 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw10SetEyeTypeEi +00000000003176c4 g DF .text 000000000000004c _ZN2nn3i2c20CommandListFormatter19EnqueueSleepCommandEi +0000000000a208e0 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_3mii6detail21ServiceProviderClient30CreateNifmUserServiceObjectTagEE8_globalsE +0000000000324104 g DF .text 0000000000000048 _ZNSt3__118condition_variable4waitERNS_11unique_lockINS_5mutexEEE +000000000097b108 g DO .data 0000000000000060 _ZTVNSt3__114__codecvt_utf8IwEE +00000000000a9bac w DF .text 0000000000000280 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSL_ILi1ELi33ELm0EEENSL_ILi2ELi33ELm0EEENSL_ILi3ELi34ELm0EEENSL_ILi4ELi34ELm0EEENSL_ILi5ELi34ELm0EEENSJ_ILm24ELm8ELl8EEEEEELm32ELm8ELb0EEEST_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEES11_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeES14_S14_S14_S14_S14_NS12_ILm24ELm8EvEEj +000000000012b1ec g DF .text 000000000000003c _ZN2nn2fs29EnsureApplicationCacheStorageEPlNS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyE +000000000018cbc4 g DF .text 0000000000000060 _ZNK2nn5audio16VoiceInfoManager16IsVoiceInfoValidEPKNS0_9VoiceInfoE +00000000003c58f8 g DF .text 000000000000001c __gettextdomain +00000000003aad38 g DF .text 0000000000000008 __stdio_seek +0000000000091700 g DF .text 00000000000000a0 _ZN2nn2os6detail23SetupThreadObjectUnsafeEPNS0_10ThreadTypeEPFvPvES4_S4_mi +00000000003e78bc g DF .text 0000000000000024 __nnmusl_init_locks +000000000017b140 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000956030 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISystemClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +00000000001bcd28 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw8SetBuildEi +00000000002cb440 g DF .text 0000000000000048 _ZN7android6RegionD2Ev +00000000000cb750 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_ShouldSleepOnBootENS0_3OutIbvEE +000000000015e7d8 g DF .text 0000000000000050 _ZN2nn4pctl18ClearUnlinkedEventEv +000000000019d54c g DF .text 0000000000000158 _ZN2nn5audio6server13CommandBuffer30GenerateAdpcmDataSourceCommandEPKNS1_9VoiceInfoEPNS0_10VoiceStateEij +000000000003b8a4 g DF .text 0000000000000008 _ZN2nn4util15RelocationTable7Section6SetPtrEPv +0000000000038678 g DF .text 0000000000000040 nnutilZlib_inflateSyncPoint +00000000007d01f0 w DO .rodata 0000000000000113 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +000000000035c20c g DF .text 0000000000000630 _ZNSt3__118__time_get_storageIcE9__analyzeEcRKNS_5ctypeIcEE +00000000000b8498 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEE17GetCmifBaseObjectEv +000000000022526c w DF .text 0000000000000214 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm12EEEEEiPT_i +000000000028326c g DF .text 0000000000000290 NvDdkVicApplyClipAndTransform +00000000002ced84 g DF .text 0000000000000034 _ZN7android7String8C1Ev +00000000000c8e28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_AreAnyLibraryAppletsLeftENS0_3OutIbvEE +000000000080d1f0 w DO .rodata 000000000000004b _ZTSNSt3__110__function6__baseIFbRKN2nn8irsensor24TeraPluginProcessorStateEEEE +00000000003620a4 g DF .text 0000000000000048 _ZNSt3__119__shared_mutex_base8try_lockEv +00000000000c1cc4 g DF .text 0000000000000030 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureC1Ev +000000000017205c w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm84ELm4ELl0EEEEEELm0ELm84ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm84ELm4EEEj +000000000024e84c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000173fd0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E12GetProxyInfoEv +0000000000157b40 g DF .text 0000000000000050 _ZN2nn4nifm6detail7strtokcEPcc +00000000001bcd44 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetHairTypeEi +00000000001baf90 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw11GetEyeColorEv +00000000000453a4 g DF .text 000000000000000c _ZN2nn4diag6detail11NotNullImplEm +00000000002c9c88 g DF .text 0000000000000010 _ZN7android13GraphicBuffer6unlockEv +00000000003a1a34 g DF .text 0000000000000044 __fixunssfdi +000000000017419c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_SetExternalSteadyClockSourceIdERKNS_4util4UuidE +00000000001c34d8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetGlassScaleEi +000000000095bde8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail17InputDetectorLifoE +000000000009a3dc g DF .text 0000000000000044 _ZN2nn2sf4cmif6server23CmifServerDomainManager14EntryAllocator15DeallocateEntryEPNS3_5EntryE +0000000000124d8c g DF .text 0000000000000080 _ZN2nn7friends6detail3ipc8FinalizeEv +0000000000270858 g DF .text 0000000000000080 NvRmSyncMergeAndClose +000000000005e97c w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm128ELm4ELl0EEEEEELm0ELm128ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm128ELm4EEEj +000000000008dcec g DF .text 00000000000000dc _ZN2nn2os13SwitchToFiberEPNS0_9FiberTypeE +0000000000953c00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +00000000001706fc g DF .text 00000000000000a8 _ZN2nn8settings6detail18GetAllowedSslHostsEPiPNS0_6system14AllowedSslHostEm +000000000003c8a4 g DF .text 0000000000000038 _ZN2nn4util16IntrusiveDicNode13ExtractRefBitERKNS0_17basic_string_viewIcNSt3__111char_traitsIcEEEEi +0000000000223f34 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm13EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +000000000006534c g DF .text 0000000000000148 _ZN2nn2fs8MountRomEPKcPvm +00000000000a10a4 w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutHandleArgumentInfoILi0ELi2EEENS7_17InRawArgumentInfoILm8ELm1ELl0EEENSD_ILm4ELm4ELl12EEENSD_ILm1ELm1ELl8EEEEEELm16ELm0ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutHandleClientArgumentTypeENSM_23InRawClientArgumentTypeILm8ELm1EvEENSO_ILm4ELm4EvEENSO_ILm1ELm1EvEEj +00000000000947bc g DF .text 000000000000012c _ZN2nn2os6detail11VammManager17FreeAddressRegionEm +00000000001c0480 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetGlassTypeEv +00000000003a92c4 g DF .text 0000000000000004 sched_get_priority_min +00000000000a6bcc w DF .text 0000000000000214 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSE_ILi1ELi34ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSH_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESK_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESR_NSP_24BufferClientArgumentTypeESS_NSP_23InRawClientArgumentTypeILm4ELm4EvEESU_j +00000000001a3054 g DF .text 0000000000000008 _ZNK2nn5audio6server14MemoryPoolInfo13GetCpuAddressEv +00000000002331b0 w DF .text 000000000000012c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSE_ILm4ELm4ELl0EEEEEELm16ELm8ELb1EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_NSM_23InRawClientArgumentTypeILm8ELm8EvEENSP_ILm4ELm4EvEEj +00000000001b9878 g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw12SetHairColorEi +000000000021de30 g DF .text 0000000000000088 _ZN2nn3hid6detail20GetNpadInterfaceTypeEPhS2_RKj +00000000002236a8 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm15EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +0000000000957910 w DO .data 0000000000000018 _ZTIN2nn5audio6detail9IAudioOutE +000000000019d13c w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E35_nn_sf_sync_ListAudioDeviceNameAutoERKNS0_9OutBufferENS0_3OutIivEE +00000000001d5760 g DF .text 00000000000000f0 _ZN2nn2vi6detail18IndirectLayerTableC2Ev +000000000021ef98 g DF .text 0000000000000028 _ZN2nn3hid6detail7SessionC2Ev +000000000014fb68 g DF .text 0000000000000094 _ZN2nn3ngc6detail9SelectPosEjm +0000000000286e70 g DF .text 000000000000000c NvRmGpuRegOpsSessionGetGrContextSize +00000000001519cc w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E12GetProxyInfoEv +00000000002cae3c g DF .text 00000000000000d8 _ZN7android19GraphicBufferMapper14lockAsyncYCbCrEPK13native_handleiRKNS_4RectEP13android_ycbcri +0000000000358550 g DF .text 0000000000000008 _ZNKSt3__17codecvtIDic11__mbstate_tE16do_always_noconvEv +0000000000030cf4 g DF .text 0000000000000004 nnutilZlib_crc32_combine +00000000001a7780 g DF .text 000000000000004c _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl23ListAudioDeviceNameAutoERKNS_2sf9OutBufferENS4_3OutIivEE +0000000000958ee0 w DO .data 0000000000000018 _ZTIN2nn5audio6server10EffectInfoILNS0_10EffectTypeE3ENS0_14DelayParameterEEE +0000000000145420 g DF .text 00000000000000ec _ZNK2nn3ngc6detail11AhoCorasick7MemSizeEPmS3_S3_S3_ +0000000000804bb0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi30EE4MaskE +000000000024f430 g DF .text 0000000000000064 _ZN2nn3hid6system37ShowControllerFirmwareUpdateForSystemERKNS0_27ControllerFirmwareUpdateArgENS1_23ControllerSupportCallerE +000000000008f8c4 g DF .text 00000000000000a0 _ZN2nn2os16ReleaseWriteLockEPNS0_20ReaderWriterLockTypeE +00000000001228e4 g DF .text 0000000000000080 _ZN2nn7friends17NotificationQueue3PopEPNS0_16NotificationInfoE +00000000000b21c8 g DF .text 0000000000000024 _ZN2nn7account6detail18OAuthProcedureBase10GetRequestEPNS0_10RequestUrlEPNS0_11CallbackUriE +00000000000befc0 g DF .text 0000000000000008 _ZN2nn7account41CachedNintendoAccountInfoForSystemServiceC2Ev +000000000024e714 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +00000000002d39a4 g DF .text 00000000000000c4 _ZN7android16SortedVectorImpl6removeEPKv +00000000000d3d88 g DF .text 0000000000000058 _ZN2nn6applet30GetIndirectLayerProducerHandleENS0_23LibraryAppletSelfHandleE +0000000000145bc4 g DF .text 0000000000000030 _ZN2nn3ngc6detail12BinaryReader4InitENS2_13EndianSettingE +0000000000194118 g DF .text 00000000000000e4 _ZN2nn5audio32CreateAudioRendererManagerByHipcEv +0000000000944e00 w DO .data 0000000000000018 _ZTIN2nn3htc4tenv15IServiceManagerE +000000000095be88 w DO .data 0000000000000020 _ZTVN2nn3hid6detail35AnalogStickCalibrationStateImplLifoE +0000000000a29120 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_3hid6detail14HidDebugServerEE8_globalsE +000000000013dcf8 g DF .text 000000000000000c _ZN2nn3nfp6detail25RefMutexForAmiiboSettingsEv +0000000000091130 g DF .text 0000000000000008 _ZN2nn2os23GetCurrentProcessHandleEv +00000000001b5c18 g DF .text 0000000000000028 _ZNK2nn3mii16CharInfoAccessor11GetNicknameEPNS0_8NicknameEi +00000000001b9b3c g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw15SetEyebrowColorEi +00000000001b9370 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetGlassTypeEv +0000000000167f54 g DF .text 0000000000000078 _ZN2nn8settings7factory13GetBatteryLotEPNS1_10BatteryLotE +0000000000172ba4 w DF .text 000000000000026c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_18BufferArgumentInfoILi0ELi25ELm72EEEEEELm0ELm0ELb0EEESF_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSK_24BufferClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000018f6a4 g DF .text 0000000000000038 _ZN2nn5audio25GetResampledOutBufferSizeEPKNS0_13ResamplerTypeEm +00000000003e74b0 g DF .text 000000000000003c __nnmusl_GetTlsValue +000000000029e568 g DF .text 0000000000000054 _ZNK7android6Parcel10scanForFdsEv +000000000014fd4c w DF .text 0000000000000168 _ZN2nn3ngc6detail16CalcSelect1TemplIjEEijjPKT_PKjPKh +00000000003688f8 g DF .text 00000000000001d8 _ZNSt3__14stofERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPm +00000000001fc480 g DF .text 000000000000022c get_glyph_metrics +0000000000319cf4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E26_nn_sf_sync_ReleaseControlEi +000000000004ab30 g DF .text 0000000000000128 _ZN2nn2fs11RomPathTool22GetParentDirectoryNameEPNS1_12RomEntryNameERKS2_PKc +000000000015c7f4 g DF .text 0000000000000084 _ZN2nn2oe31EnterExitRequestHandlingSectionEv +00000000001609a4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E38_nn_sf_sync_SetStereoVisionRestrictionEb +00000000001ce3e4 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +000000000004a9b4 g DF .text 0000000000000060 _ZNK2nn2fs11RomPathTool10PathParser15IsDirectoryPathEv +0000000000947390 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +0000000000361c3c g DF .text 0000000000000004 _ZNSt3__113random_deviceD2Ev +00000000007e92b0 g DO .rodata 0000000000000004 _ZN2nn5audio9VoiceType14PriorityLowestE +000000000021bfd4 g DF .text 00000000000002b0 _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_6system15NpadSystemStateEiRKj +0000000000342d58 w DF .text 0000000000000084 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm +0000000000365200 w DF .text 00000000000000ec _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEPKwm +00000000000214f8 g DF .text 00000000000000e4 _ZN2nn5image6detail4jpeg17jpeg_save_markersEPNS2_22jpeg_decompress_structEij +0000000000195088 w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm52ELm4ELl0EEEEEELm52ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSK_23InRawClientArgumentTypeILm52ELm4EvEEj +00000000000c2878 g DF .text 000000000000004c _ZN2nn2am19GetApplicationProxyEv +000000000032decc w DF .text 0000000000000090 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getERNS_15basic_streambufIwS2_EE +00000000003a92d0 g DF .text 0000000000000004 mkdir +00000000007f283c g DO .rodata 0000000000000004 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue17MessageQueueCountE +000000000017a140 g DF .text 0000000000000024 nnsslConnectionPending +0000000000169670 g DF .text 0000000000000044 _ZN2nn8settings6system23SetNxControllerSettingsEPKNS1_20NxControllerSettingsEi +0000000000319cec w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +00000000001641d4 g DF .text 0000000000000294 _ZN2nn5prepo6detail7msgpack14WriteExtensionEPNS2_17OutputStreamParamEhPKvj +00000000002b2ed8 g DF .text 0000000000000328 _ZN7android12ConsumerBaseC1ERKNS_2spINS_22IGraphicBufferConsumerEEEb +00000000003ab018 g DF .text 0000000000000004 pthread_attr_getstack +0000000000004c30 g D .text 00000000000000ac nndetailCryptoBignumMulAddWords +000000000095bb68 w DO .data 0000000000000020 _ZTVN2nn3hid6detail14NpadSystemLifoE +000000000011e2b8 g DF .text 0000000000000140 _ZN2nn7friends14SyncFriendListEPNS0_12AsyncContextERKNS_7account3UidE +0000000000804b10 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi25EE4MaskE +0000000000346850 g DF .text 0000000000000084 _ZNSt3__110__time_putC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000000624f0 g DF .text 00000000000000e8 _ZN2nn2fs34CheckGameCardPartitionAvailabilityEjNS0_17GameCardPartitionE +0000000000134508 g DF .text 0000000000000170 _ZN2nn4htcs6detail25virtual_socket_collection6InsertEiNS_2sf13SharedPointerINS_3tma7ISocketEEE +00000000003ab108 g DF .text 0000000000000004 __pthread_errno +0000000000285e60 g DF .text 0000000000000010 nvgr_is_yuv +00000000007adaac g DO .rodata 0000000000000004 _ZN2nn4util6detail16FloatSqrt0Point5E +0000000000145288 g DF .text 00000000000000ec _ZN2nn3ngc6detail11AhoCorasick16ReleaseAllocatorEv +00000000000befd4 g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService13GetScreenNameEPm +0000000000315660 g DF .text 0000000000000064 _ZN2nn4gpio33SetWakeEventActiveFlagSetForDebugENS0_11GpioPadNameEb +00000000000e8828 g DF .text 0000000000000118 ec_dec_init +000000000004cc74 g DF .text 0000000000000014 _ZN2nn2fs6detail17DirectoryAccessorC1EONSt3__110unique_ptrINS0_3fsa10IDirectoryENS3_14default_deleteIS6_EEEERNS1_18FileSystemAccessorE +0000000000137114 w DF .text 00000000000001cc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi33ELm0EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +0000000000167200 w DF .text 00000000000001e4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi9ELm0EEENSG_ILi1ELi5ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeESS_NS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000000d0e98 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +0000000000180c4c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +00000000001a7fc0 g DF .text 00000000000001a8 _ZN2nn5audio3dsp17WriteAuxBufferDspEPNS0_10AuxInfoDspEmjPKijjj +0000000000228d30 g DF .text 0000000000000018 _ZN2nn3hid5debug19StartFirmwareUpdateENS0_6system11UniquePadIdE +00000000000d7780 g DF .text 0000000000000030 _ZN2nn4bcat6detail17ShimLibraryGlobal36DecrementDeliveryCacheDirectoryCountEv +0000000000175178 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E51_nn_sf_sync_SetConsoleSixAxisSensorAccelerationGainERKNS5_6system36ConsoleSixAxisSensorAccelerationGainE +0000000000314740 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_8DebuggerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +0000000000a39410 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_8irsensor6detail14IrSensorServerEE8_globalsE +000000000006f278 g DF .text 0000000000000054 _ZN2nn4lmem30SetExpHeapUseMarginOfAlignmentEPNS0_6detail8HeapHeadEb +00000000000d9740 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E20_nn_sf_sync_GetCountENS0_3OutIivEE +000000000013551c g DF .text 0000000000000248 _ZN2nn4htcs6detail25virtual_socket_collection5FcntlEiiiRi +0000000000287014 g DF .text 000000000000000c NvRmGpuSwizzlerBegin +000000000011110c g DF .text 0000000000000020 opus_repacketizer_create +00000000000ce034 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service17IApplicationProxyEEEvi +00000000001da758 g DF .text 0000000000002bdc get_ref_lines +000000000097ac48 g DO .data 0000000000000088 _ZTVNSt3__15ctypeIwEE +00000000003a15f0 g DF .text 0000000000000030 __ffsdi2 +0000000000948b88 g DO .data 0000000000000010 _ZTIN2nn7account12AsyncContextE +0000000000228560 g DF .text 0000000000000044 _ZN2nn3hid6system34CancelAnalogStickManualCalibrationENS1_11UniquePadIdENS1_19AnalogStickPositionE +000000000004b41c g DF .text 0000000000000068 _ZN2nn2fs17FileHandleStorage12OperateRangeEPvmNS0_11OperationIdEllPKvm +00000000001b5dfc g DF .text 000000000000011c _ZN2nn3mii8Nickname17ReplaceFontRegionENS0_10FontRegionEi +0000000000217244 g DF .text 00000000000000b4 _ZN2nn3hid6detail18FinalizeHomeButtonEv +00000000000bbf7c w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE24_nn_sf_sync_PrepareAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000081d1c g DF .text 0000000000000030 nnmem_nlib_debug_backtrace +00000000002307a8 g DF .text 0000000000000048 _ZN2nn3hid5debug23UnsetXpadAutoPilotStateERKNS0_11BasicXpadIdE +00000000000a18c4 g DF .text 0000000000000004 _ZN2nn6socket4ReadEiPvm +0000000000947b78 w DO .data 00000000000000b8 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas24IManagerForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000001fa0a4 g DF .text 000000000000047c fs_NewTransformation +000000000034c33c w DF .text 0000000000000308 _ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIwS3_NS_9allocatorIwEEEE +00000000000b3f98 g DF .text 0000000000000034 _ZN2nn7account10DeleteUserERKNS0_3UidE +0000000000186aa8 g DF .text 000000000000004c _ZN2nn5audio20SetDelayFeedbackGainEPNS0_9DelayTypeEf +00000000001c31b8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw9SetNgWordEi +0000000000396abc g DF .text 0000000000000004 _ZNSt8bad_castD1Ev +00000000003a0368 g DF .text 00000000000005b0 __divtc3 +0000000000314738 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_8DebuggerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000003a9d84 g DF .text 000000000000000c __nnmusl_stderr_lock_init +0000000000947c50 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEEE +000000000032df5c w DF .text 00000000000001bc _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getERNS_15basic_streambufIwS2_EEw +00000000000ca108 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000802640 w DO .rodata 00000000000000c2 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000097b850 g DO .data 0000000000000018 _ZTINSt3__112ctype_bynameIwEE +0000000000150dec g DF .text 0000000000000028 _ZN2nn4nifm6detail13RequestClient11SetSharableEb +00000000002d23c8 g DF .text 00000000000002e4 _ZN7android10VectorImpl5_growEmm +00000000007ec600 w DO .rodata 0000000000000025 _ZTSN2nn5audio6detail16IAudioOutManagerE +00000000003a9da8 g DF .text 000000000000000c __nnmusl_stdin_lock_finalize +000000000014fbfc g DF .text 000000000000014c _ZN2nn3ngc6detail9SelectPosEmm +0000000000313ddc w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_InitializeENS0_3OutINS0_13SharedPointerINS6_8IRequestEEEvEE +00000000000b0f58 g DF .text 000000000000003c _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferItEElRT_PKhm +00000000002a1268 g DF .text 0000000000000008 _ZNK7android6Parcel7ipcDataEv +0000000000978be0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000a15f4 w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSD_ILi1ELi5ELm0EEEEEELm8ELm0ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_24BufferClientArgumentTypeESO_j +000000000017d208 g DF .text 000000000000007c _ZN2nn4time25AdjustableUserSystemClock14GetCurrentTimeEPNS0_9PosixTimeE +0000000000126c04 w DF .text 0000000000000204 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSG_ILm8ELm8ELl16EEENSC_18BufferArgumentInfoILi0ELi25ELm72EEENSJ_ILi1ELi25ELm72EEENSG_ILm8ELm8ELl24EEEEEELm32ELm0ELb1EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSU_ILm8ELm8EvEENS2_24BufferClientArgumentTypeESX_SW_j +000000000018bcd8 g DF .text 0000000000000054 _ZN2nn5audio18SetSubMixMixVolumeEPNS0_10SubMixTypeES2_fii +000000000015e094 g DF .text 000000000000005c _ZN2nn4pctl21GetRestrictedFeaturesEv +0000000000057f40 w DF .text 00000000000001e8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSI_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENST_ILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000b8e60 w DF .text 0000000000000268 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi25ELm16EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001b5c68 g DF .text 0000000000000010 _ZNK2nn3mii16CharInfoAccessor10IsHairFlipEv +0000000000117fa0 g DF .text 0000000000000014 _ZN2nn5codec11OpusDecoder8FinalizeEv +00000000001bc808 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetHairFlipEv +0000000000297f90 g DF .text 00000000000000d8 _ZN7android12BpMemoryHeapC1ERKNS_2spINS_7IBinderEEE +00000000000cfda4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000c19f8 g DF .text 0000000000000040 _ZN2nn7account8NotifieraSEOS1_ +00000000009545f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000a80da8 g DO .bss 0000000000000010 _ZNSt3__17codecvtIDic11__mbstate_tE2idE +0000000000313d74 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8ISessionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000007cc050 w DO .rodata 000000000000011c _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEEE +0000000000173f78 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_8settings21ISystemSettingsServerEED2Ev +00000000001a5110 g DF .text 0000000000000008 _ZNK2nn5audio6server23SplitterDestinationData8GetMixIdEv +00000000007dcb40 w DO .rodata 0000000000000020 _ZTSN2nn3nfp6detail13IDebugManagerE +000000000014e0a0 g DF .text 0000000000000020 _ZN2nn3ngc6detail9SparseSet12SetAllocatorEPNS1_16WorkBufAllocatorE +00000000008212d0 w DO .rodata 00000000000000ae _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000007c6e70 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000189008 g DF .text 0000000000000028 _ZN2nn5audio20IsMemoryPoolAttachedEPKNS0_14MemoryPoolTypeE +00000000002ca460 g DF .text 0000000000000028 _ZN7android22GraphicBufferAllocatorC1Ev +000000000019e0d8 g DF .text 0000000000000164 _ZN2nn5audio6server13CommandBuffer18GenerateAuxCommandEiPKNS0_12AuxParameterEPKNS0_18AuxBufferAddressesEbimmj +00000000001b61d4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor15GetFacelineTypeEv +0000000000805928 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout10PortugueseE +00000000000f1fc8 g DF .text 00000000000000e8 silk_NLSF_VQ_weights_laroia +00000000003a9d90 g DF .text 000000000000000c __nnmusl_stderr_lock_finalize +000000000022c790 g DF .text 0000000000000060 _ZN2nn3hid6system20GetRegisteredDevicesEPNS1_16RegisteredDeviceEi +00000000003aae94 g DF .text 0000000000000008 __stdout_close +0000000000167060 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_SaveReportWithUserERKNS_7account3UidERKNS0_7InArrayIcEERKNS0_8InBufferEm +00000000007f0bd0 w DO .rodata 000000000000003e _ZTSN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImplE +000000000022b068 g DF .text 0000000000000090 _ZN2nn3hid6system11ActivateNfcEjNS_6applet20AppletResourceUserIdE +00000000003dd798 w DF .text 000000000000000c fsetpos64 +000000000017aa30 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E25_nn_sf_sync_CreateContextENS0_3OutINS0_13SharedPointerINS6_11ISslContextEEEvEENS6_10SslVersionEm +00000000007b0d60 w DO .rodata 0000000000000019 _ZTSN2nn2sf14IServiceObjectE +00000000000cc88c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001c32f8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetHairFlipEi +00000000001568dc g DF .text 000000000000001c _ZN2nn4nifm20SetRequestPersistentENS0_13RequestHandleEb +0000000000095fe0 g DF .text 0000000000000058 _ZNK2nn2os6detail26ThreadManagerImplByHorizon26GetThreadAvailableCoreMaskEv +000000000022b7e4 g DF .text 0000000000000054 _ZN2nn3hid6system20IsAbxyButtonOrientedERKj +00000000002363e0 g DF .text 00000000000000b4 _ZN2nn8irsensor6detail18InitializeIrCameraERKNS0_21IrSensorFunctionLevelERKNS0_14IrCameraHandleE +0000000000250140 g DF .text 00000000000000bc _ZN2nn3ldn7ConnectERKNS0_11NetworkInfoERKNS0_14SecurityConfigERKNS0_10UserConfigEiNS0_13ConnectOptionE +000000000036c1ac g DF .text 0000000000000040 _ZTv0_n24_NSt3__19strstreamD0Ev +000000000015c57c g DF .text 000000000000006c _ZN2nn2oe29SetScreenShotImageOrientationENS_5album16ImageOrientationE +000000000094ffb0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000016fb30 g DF .text 0000000000000070 _ZN2nn8settings6detail13GetColorSetIdEPi +00000000001bf064 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw16GetFavoriteColorEv +00000000000a19a4 g DF .text 0000000000000004 _ZN2nn6socket7SendMsgEiPK6msghdri +00000000002716d4 g DF .text 0000000000000010 NvRmStreamGetError +000000000006d3f8 g DF .text 0000000000000070 _ZN2nn3htc19GetBridgeMacAddressEPcm +00000000000b8198 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEE28_nn_sf_sync_LoadIdTokenCacheENS0_3OutIjvEERKNS0_9OutBufferE +00000000007f11b0 w DO .rodata 00000000000000a8 _ZTSN2nn2sf4impl6detail16ImplTemplateBaseINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_EE +000000000097bac8 w DO .data 0000000000000010 _ZTINSt3__19time_baseE +0000000000811c80 w DO .rodata 0000000000000023 _ZTSN2nn3ldn6detail16IStateGetServiceE +0000000000286c80 g DF .text 0000000000000014 NvRmGpuChannelKickoffPb +00000000003c2644 w DF .text 0000000000000010 islower_l +00000000003e6ce0 g DF .text 0000000000000004 __nnmusl_UnlockRecursiveLock +000000000013a3bc g DF .text 00000000000000dc _ZN2nn3nfc16InitializeSystemEv +00000000000acb58 g DF .text 0000000000000070 _ZN2nn6socket8resolver16InitializeClientEv +0000000000947238 w DO .data 0000000000000080 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas22IManagerForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000181f3c w DF .text 00000000000001f4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi1ELi10ELm0EEENSC_17InRawArgumentInfoILm8ELm2ELl0EEENSI_ILi0ELi21ELm16384EEEEEELm8ELm4ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm2EvEESW_j +00000000001c79fc g DF .text 0000000000000008 _ZNK2nn3mii13AppletManager11GetUsedUuidEv +0000000000358864 g DF .text 0000000000000008 _ZNKSt3__114__codecvt_utf8IwE11do_encodingEv +0000000000118930 g DF .text 0000000000000008 _ZNK2nn5codec22OpusMultiStreamDecoder20GetStereoStreamCountEv +000000000011d14c g DF .text 000000000000006c _ZN2nn7friends13GetFriendListEPiPNS_7account23NetworkServiceAccountIdEiiRKNS0_12FriendFilterE +00000000000904c8 g DF .text 0000000000000008 _ZN2nn2os17GetThreadPriorityEPKNS0_10ThreadTypeE +00000000007c7b30 w DO .rodata 0000000000000022 _ZTSN2nn2am7service15IAppletAccessorE +0000000000236358 g DF .text 000000000000000c _ZN2nn8irsensor6detail27GetIrCameraHandleDeviceTypeERKNS0_14IrCameraHandleE +00000000002533dc g DF .text 0000000000000084 _ZNK2nn3web6detail22ShowLobbyPageArgWriter15PushToInChannelENS_6applet19LibraryAppletHandleE +000000000028623c g DF .text 000000000000005c nvgr_get_gpu_mapping +0000000000399b88 g DF .text 000000000000000c unw_regname +000000000008a46c g DF .text 0000000000000178 _ZN2nn3mem19NumberLineAllocator10InitializeEPFPvmS2_ES2_PFvS2_S2_ES2_ +00000000001724e4 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object12AddReferenceEv +0000000000356c48 g DF .text 000000000000000c _ZNKSt3__17codecvtIcc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_ +0000000000008740 w DF .text 000000000000000c _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEED1Ev +00000000000cd9f8 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE31_nn_sf_sync_GetWindowControllerENS0_3OutINS0_13SharedPointerINS6_17IWindowControllerEEEvEE +00000000001839ac g DF .text 0000000000000060 _ZN2nn3aoc21GetAddOnContentBaseIdEv +00000000001607dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_GetCurrentSettingsENS0_3OutINS5_19RestrictionSettingsEvEE +0000000000175a10 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm4ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm4EEENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000094c830 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000960cd0 g DO .data 0000000000000018 _ZTIN7android7BBinderE +0000000000087efc g DF .text 000000000000004c _ZN2nn7nlibsdk4heap14TlsHeapCentral14GetPhyFreeSizeEPm +00000000002645dc g DF .text 0000000000000018 app_Alloc +00000000000820b4 g DF .text 0000000000000030 nnmem_nlib_remove +0000000000168d34 g DF .text 0000000000000048 _ZN2nn8settings6system20SetAutoUpdateEnabledEb +0000000000396b2c g DF .text 000000000000000c _ZNKSt10bad_typeid4whatEv +00000000000c1238 w DF .text 0000000000000044 _ZN2nn7account34NetworkServiceAccountAdministratorD0Ev +00000000000950e0 g DF .text 000000000000001c _ZN2nn2os6detail18FiberImplByHorizon15UnmapAliasStackEPKvS4_m +0000000000171f04 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm1024EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +000000000094c3a0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service7IWindowENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000018ca70 g DF .text 000000000000006c _ZN2nn5audio16VoiceInfoManager16InsertToUsedListEPNS0_9VoiceInfoE +000000000022c8e0 g DF .text 0000000000000178 _ZNK2nn3hid18SixAxisSensorState13GetQuaternionEPNS_4util4neon12Vector4fTypeE +0000000000090708 g DF .text 0000000000000008 _ZN2nn2os13GetSystemTickEv +000000000022ece4 g DF .text 00000000000000ac _ZN2nn3hid22RetrieveVibrationValueEPNS0_14VibrationValueEiPNS0_26VibrationFileParserContextE +00000000003abffc g DF .text 0000000000000004 ftruncate +000000000009c940 g DF .text 000000000000016c _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase13ProcessAsPortEPNS_2os19MultiWaitHolderTypeE +00000000007be070 w DO .rodata 0000000000000163 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000001d5efc g DF .text 000000000000019c _ZN2nn2vi6detail18SystemServiceProxy10InitializeEv +00000000001de448 g DF .text 0000000000000374 FSS_exit +0000000000958d20 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail12IAudioDeviceES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl15AudioDeviceImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6ObjectE +000000000021403c g DF .text 0000000000000010 nnfontllFsErrorFile +00000000001aa208 g DF .text 000000000000017c _ZN2nn5audio19ResampleOutputFrameEPNS0_16DownSamplerStateEiiPKiPsiij +00000000000504e8 g DF .text 00000000000000e8 _ZN2nn2fs27GetFileTimeStampRawForDebugEPNS0_16FileTimeStampRawEPKc +000000000015054c g DF .text 0000000000000008 _ZNK2nn4nifm6detail29TemporaryNetworkProfileClient5GetIdEv +00000000007bf210 w DO .rodata 000000000000001f _ZTSN2nn7account6detail9INotifierE +0000000000180928 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E30_nn_sf_sync_GetTimeZoneServiceENS0_3OutINS0_13SharedPointerINS7_16ITimeZoneServiceEEEvEE +00000000002022b4 g DF .text 00000000000003c0 FsLtt_read +00000000003a0978 g DF .text 00000000000005ec __divtf3 +00000000009489d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000008056f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi138EE4MaskE +00000000001606f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E49_nn_sf_sync_RevertRestrictedSystemSettingsEnteredEv +00000000001a50c4 g DF .text 0000000000000020 _ZN2nn5audio6server23SplitterDestinationData14ClearMixVolumeEv +000000000097abb8 g DO .data 0000000000000050 _ZTVNSt3__115numpunct_bynameIwEE +0000000000201f04 g DF .text 0000000000000010 FsLttComponent_isBold +000000000097e040 g DO .data 0000000000000010 _ZTIDh +0000000000123434 g DF .text 0000000000000144 _ZN2nn7friends11UserSetting15IssueFriendCodeEPNS0_12AsyncContextE +00000000002b6798 g DF .text 0000000000000024 _ZN7android23BnGraphicBufferProducer17onGetNativeHandleEjRjRb +000000000097e220 g DO .data 0000000000000010 _ZTIDi +000000000018cffc g DF .text 00000000000000e4 _ZN2nn5audio16VoiceInfoManager20UpdateVoiceOutStatusEPNS0_9VoiceInfo9OutStatusE +00000000003dfccc g DF .text 0000000000000098 __fmodeflags +00000000002c662c g DF .text 00000000000000bc _ZN7android21SurfaceComposerClient8setAlphaERKNS_2spINS_7IBinderEEEf +00000000000a19a8 g DF .text 0000000000000004 _ZN2nn6socket8SendMMsgEiPK7mmsghdrmi +000000000097db40 g DO .data 0000000000000010 _ZTIDn +00000000001569b8 g DF .text 000000000000002c _ZN2nn4nifm24GetRequestAdditionalInfoEPNS0_14AdditionalInfoEPjNS0_13RequestHandleE +000000000035a874 g DF .text 0000000000000028 _ZNSt3__18numpunctIwEC1Em +0000000000955810 g DO .data 0000000000000028 _ZTIN2nn3ssl6detail18ISslServiceFactoryE +000000000024be98 g DF .text 0000000000000004 _ZNK2nn3kpr15KeyCodeComposer19GetDequeueableCountEv +000000000021e95c g DF .text 00000000000000a0 _ZN2nn3hid6detail21GetUniquePadsFromNpadEPiPNS0_6system11UniquePadIdEiRKj +0000000000823610 w DO .rodata 0000000000000044 _ZTSNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +000000000097e1d0 g DO .data 0000000000000010 _ZTIDs +000000000094d3f0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007f0e70 g DO .rodata 0000000000000023 _ZTSN2nn5audio6server14EffectInfoBaseE +000000000024bda4 g DF .text 0000000000000004 _ZN2nn3kpr15KeyCodeComposerC2Ev +000000000024f6b0 g DF .text 0000000000000120 _ZN2nn3ldn16InitializeSystemEv +0000000000272f98 g DF .text 0000000000000064 NvRmStreamPushFdReloc +000000000033c3bc w DF .text 000000000000040c _ZNSt3__19__num_getIwE19__stage2_float_loopEwRbRcPcRS4_wwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSE_RjPw +0000000000185fd8 g DF .text 0000000000000008 _ZNK2nn5audio15BehaviorManager11GetRevisionEv +00000000000635b4 g DF .text 0000000000000064 _ZN2nn2fs6detail10DeallocateEPvm +0000000000802500 w DO .rodata 0000000000000028 _ZTSN2nn5visrv2sf23IApplicationRootServiceE +000000000022f8ec g DF .text 00000000000000c8 _ZN2nn3hid13VibrationNode6UpdateEv +0000000000825170 g DO .rodata 0000000000000011 _ZTSSt12domain_error +000000000027463c g DF .text 000000000000007c NvRmFenceGetFromFile +0000000000823cd0 w DO .rodata 0000000000000046 _ZTSNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000003e6c94 g DF .text 0000000000000004 __nnmusl_LockLock +00000000003e6cec g DF .text 000000000000006c __nnmusl_ConsoleWrite +00000000001c98e0 g DF .text 0000000000000080 _ZN2nn5swkbd10SetSubTextEPNS0_14KeyboardConfigEPKDs +00000000002b45d8 g DF .text 0000000000000050 _ZTv0_n24_N7android18GraphicBufferAllocD0Ev +00000000000cb19c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service18IHomeMenuFunctionsEEEvi +000000000002bbfc g DF .text 00000000000000d8 _ZN2nn5image6detail13ReadIfdHeaderEPNS1_9IfdHeaderEtRKNS1_10ExifBinaryE +0000000000123588 g DF .text 000000000000014c _ZN2nn7friends11UserSetting23ChangePlayLogPermissionEPNS0_12AsyncContextENS0_15ExtraPermissionE +00000000001cdd44 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000bb1c4 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas14IAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +00000000000783d8 g DF .text 0000000000000324 nnmem_nlib_mkostemps +00000000001414b4 g DF .text 0000000000000034 _ZNK2nn3ngc15ProfanityFilter18CheckArgumentsWordEPKjPPKDsm +0000000000315444 g DF .text 0000000000000054 _ZN2nn4gpio18SetDebounceEnabledEPNS0_14GpioPadSessionEb +00000000000c1da8 g DF .text 0000000000000024 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedure4SwapERS1_ +00000000007e19d0 w DO .rodata 0000000000000159 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +0000000000169b90 g DF .text 0000000000000048 _ZN2nn8settings6system30SetAccountNotificationSettingsEPKNS1_27AccountNotificationSettingsEi +0000000000212a30 g DF .text 00000000000004b8 get_abbreviated_name +00000000002921cc g DF .text 0000000000000114 NvWsiWindowCreate +000000000018c2d0 g DF .text 000000000000000c _ZN2nn5audio29GetVoiceBiquadFilterParameterEPKNS0_9VoiceTypeE +0000000000096fc8 g DF .text 0000000000000020 _ZNK2nn2os6detail36InternalCriticalSectionImplByHorizon23IsLockedByCurrentThreadEv +00000000000a19e4 g DF .text 0000000000000018 _ZN2nn6socket8FinalizeEv +0000000000287050 g DF .text 000000000000000c NvRmGpuSwizzlerReset +00000000007f0f90 g DO .rodata 0000000000000021 _ZTSN2nn5audio6server12SinkInfoBaseE +0000000000316090 g DF .text 0000000000000004 nngpioCloseSession +000000000026c3b0 g DF .text 0000000000000028 NvRmMemWr08 +00000000001d0d8c w DF .text 00000000000001bc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi21ELm392EEEEEELm8ELm8ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSO_26InHandleClientArgumentTypeENSO_23InRawClientArgumentTypeILm8ELm8EvEENSO_24BufferClientArgumentTypeEj +00000000000c0618 g DF .text 0000000000000024 _ZN2nn7account34NetworkServiceAccountAdministrator33IsNetworkServiceAccountRegisteredEPb +00000000001187e0 g DF .text 0000000000000028 _ZN2nn5codec22OpusMultiStreamDecoderC1Ev +000000000097c2b8 g DO .data 0000000000000028 _ZTVNSt3__114__shared_countE +0000000000189328 g DF .text 0000000000000008 _ZNK2nn5audio14MemoryPoolInfo8GetStateEv +0000000000317398 w DF .text 0000000000000120 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl4EEENSD_ILm2ELm2ELl0EEENSD_ILm4ELm4ELl8EEENSD_ILm4ELm4ELl12EEEEEELm16ELm1ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEENSN_23InRawClientArgumentTypeILm4ELm4EvEENSQ_ILm2ELm2EvEESR_SR_j +00000000008225e0 w DO .rodata 0000000000000030 _ZTSNSt3__114basic_iostreamIcNS_11char_traitsIcEEEE +0000000000396ae4 g DF .text 000000000000000c _ZNKSt8bad_cast4whatEv +000000000018f268 g DF .text 000000000000011c _ZN2nn5audio22ResampleOutputFrame6ChEPNS0_17ResamplerState6ChEPKsPsiif +000000000009095c g DF .text 000000000000005c _ZN2nn2os17UnmapSharedMemoryEPNS0_16SharedMemoryTypeE +00000000000453d8 g DF .text 0000000000000004 _ZN2nn4diag6detail20DefaultAbortObserverERKNS0_9AbortInfoE +000000000005fad0 g DF .text 0000000000000024 _ZN2nn2fs6detail29DirectoryServiceObjectAdapter15DoGetEntryCountEPl +00000000000f837c g DF .text 0000000000000c54 silk_Decode +00000000000ae244 g DF .text 000000000000003c _ZN2nn6socket8resolver3tls6Client17InternalHostErrnoEv +00000000001a7bc8 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_21ClearMixBufferCommandE +000000000018b49c g DF .text 0000000000000010 _ZN2nn5audio12SplitterInfo15SetChannelCountEi +000000000010bd5c g DF .text 0000000000000314 opus_decoder_ctl +0000000000a80ce0 w DO .bss 0000000000000010 _ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2idE +0000000000353b0c g DF .text 000000000000002c _ZNSt3__16localeC2Ev +00000000000bef50 g DF .text 0000000000000038 _ZNK2nn7account25CachedNintendoAccountInfo9GetGenderEPm +0000000000368180 g DF .text 00000000000001dc _ZNSt3__15stollERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPmi +00000000001b5228 g DF .text 0000000000000074 _ZN2nn2la15RequestHomeMenuEv +00000000007c7cb0 w DO .rodata 0000000000000107 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000160a88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E28_nn_sf_sync_GetPinCodeLengthENS0_3OutIivEE +00000000001568a8 g DF .text 000000000000001c _ZN2nn4nifm20SetRequestRejectableENS0_13RequestHandleEb +00000000001cb58c g DF .text 0000000000000088 _ZN2nn5swkbd6detail18InlineKeyboardImpl22CalcChangedStringUtf8_ENS_6applet13StorageHandleEm +00000000002a0848 g DF .text 00000000000000b0 _ZNK7android6Parcel14readWeakBinderEv +000000000017b3d0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E31_nn_sf_sync_SetSocketDescriptorEiNS0_3OutIivEE +000000000022d3f4 g DF .text 0000000000000044 _ZN2nn3hid21InitializeTouchScreenEv +000000000017ed20 g DF .text 00000000000000bc _ZN2nn4time13ClockSnapshot31CreateWithAdjustableSystemClockEPS1_ +0000000000102ac0 g DF .text 0000000000000b8c silk_find_LTP_FIX +0000000000822470 w DO .rodata 000000000000002a _ZTSNSt3__19basic_iosIwNS_11char_traitsIwEEEE +0000000000359da4 g DF .text 0000000000000100 _ZNKSt3__115__codecvt_utf16IDiLb1EE9do_lengthER11__mbstate_tPKcS5_m +0000000000089ce8 g DF .text 0000000000000008 _ZN2nn3mem17StandardAllocator10InitializeEPvm +00000000000c25cc g DF .text 000000000000004c _ZN2nn2am23GetApplicationFunctionsEv +000000000026c3d8 g DF .text 0000000000000028 NvRmMemWr16 +0000000000977e10 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000234bc8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E37_nn_sf_sync_EndPermitVibrationSessionEv +0000000000354eac g DF .text 00000000000000ac _ZNSt3__114collate_bynameIwEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +00000000000ab660 w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEEST_NS2_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000003a5144 g DF .text 000000000000008c __udivsi3 +0000000000135f00 g DF .text 0000000000000024 _ZN2nn2lm6detail15LogPacketHeader7SetTailEb +00000000000b4164 g DF .text 00000000000000ac _ZN2nn7account37GetNetworkServiceAccountAdministratorEPNS0_34NetworkServiceAccountAdministratorERKNS0_3UidE +00000000000b10a4 g DF .text 000000000000001c _ZN2nn6socket8resolver10serializer13DNSSerializer22CheckToBufferArgumentsEPKhmmi +000000000009f258 w DF .text 000000000000006c _ZN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage22BeginPreparingForReplyEPNS0_6detail14PointerAndSizeE +000000000015b1f4 g DF .text 0000000000000054 _ZN2nn2oe17FinishStartupLogoEv +000000000094dd70 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_EE +000000000023c544 w DF .text 0000000000000134 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm32ELm8ELl16EEEEEELm48ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm32ELm8EvEEj +00000000003374c0 w DF .text 0000000000000484 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjRPv +0000000000070c04 g DF .text 000000000000000c _ZN2nn4lmem6detail17GetFrameHeapStateEPNS1_8HeapHeadE +00000000003e34c0 g DF .text 0000000000000048 wcsrchr +000000000034ab64 w DF .text 0000000000000430 _ZNKSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe +0000000000221e9c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm6EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000000c7e98 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_GetLastForegroundCaptureImageERKNS0_9OutBufferE +00000000000bd2f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E38_nn_sf_sync_GetLinkedNintendoAccountIdENS0_3OutINS5_17NintendoAccountIdEvEE +0000000000359220 g DF .text 0000000000000108 _ZNKSt3__115__codecvt_utf16IwLb1EE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_ +0000000000177824 g DF .text 0000000000000078 _ZN2nn8settings6detail18SetXpadKeyboardMapERKNS0_20BasicXpadKeyboardMapEi +00000000002d0e48 g DF .text 000000000000002c _ZN7android6ThreadD1Ev +000000000006b3f8 g DF .text 0000000000000080 _ZN2nn2fs16SaveDataImporter11GetRestSizeEv +00000000001739c0 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm1ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm1EEENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000002cd47c g DF .text 0000000000000004 _ZN7android21report_sysprop_changeEv +00000000001ca6c8 g DF .text 00000000000000e8 _ZN2nn5swkbd6detail18InlineKeyboardImpl25WaitForUnsetCustomizeDic_Ev +00000000003de324 g DF .text 0000000000000010 putchar +00000000003a0918 g DF .text 0000000000000060 __divti3 +000000000024dbbc g DF .text 00000000000000f8 _ZN2nn5album22SaveAndShareScreenshotEPKvmNS0_9ImageSizeENS0_17AlbumReportOptionERKNS_7account3UidEPKc +00000000001524e4 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4nifm6detail21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_12IScanRequestEEEvi +00000000003ce0e4 g DF .text 00000000000000a4 roundf +0000000000091378 g DF .text 0000000000000004 nnosSignalTimerEvent +000000000021e784 g DF .text 0000000000000064 _ZN2nn3hid6detail33DisableAssigningSingleOnSlSrPressEv +00000000002cc1a4 g DF .text 0000000000000080 _ZN7android6Region9translateERS0_RKS0_ii +0000000000345460 g DF .text 0000000000000254 _ZNSt3__118__time_get_storageIwEC2EPKc +00000000009581f0 w DO .data 0000000000000018 _ZTIN2nn5audio6detail30IAudioRendererManagerForAppletE +00000000003ce188 g DF .text 0000000000000150 roundl +000000000027b074 g DF .text 00000000000000dc NvBlitForceFlag +00000000000c63f4 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_20InObjectArgumentInfoILi0ELi0EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_26InObjectClientArgumentTypeEj +000000000017ce4c g DF .text 0000000000000010 _ZN2nn3ssl6detail15BuiltinDataInfo11GetDataSizeEv +00000000001d328c g DF .text 0000000000000070 _ZN2nn2vi20SetDisplayLayerStackEPNS0_7DisplayENS0_10LayerStackE +00000000003c278c g DF .text 0000000000000048 iswalpha +0000000000044bac g DF .text 00000000000000fc _ZN2nn4diag6detail7LogImplERKNS0_11LogMetaDataEPKcz +0000000000118838 g DF .text 00000000000000c8 _ZN2nn5codec22OpusMultiStreamDecoder10InitializeEiiiiPKhPvm +00000000007dead8 g DO .rodata 0000000000000004 _ZN2nn3nfp6client27RequiredMcuVersionDataCountE +000000000004ad90 g DF .text 000000000000005c _ZN2nn2fs11FileStorage10UpdateSizeEv +000000000008def8 g DF .text 0000000000000088 _ZN2nn2os23StartPeriodicTimerEventEPNS0_14TimerEventTypeENS_8TimeSpanES3_ +00000000001bc7f0 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw15GetFacelineTypeEv +00000000003dddb8 w DF .text 0000000000000254 __getdelim +0000000000956068 w DO .data 0000000000000088 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISteadyClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +000000000008e6e4 g DF .text 0000000000000004 _ZN2nn2os30GetReadableHandleOfSystemEventEPNS0_15SystemEventTypeE +0000000000395c4c g DF .text 0000000000000018 _ZSt14get_unexpectedv +000000000097d8a0 g DO .data 0000000000000018 _ZTISt15underflow_error +00000000000bf438 g DF .text 0000000000000014 _ZN2nn7account38ExternalNetworkServiceAccountRegistrar4SwapERS1_ +00000000001553fc g DF .text 000000000000001c _ZN2nn4nifm15InitializeAdminEv +00000000001d4eb0 g DF .text 0000000000000070 _ZN2nn2vi20RemoveFromLayerStackEPNS0_5LayerENS0_10LayerStackE +0000000000083030 w DF .text 0000000000000208 _ZN2nn7nlibsdk4heap12TlsHeapCache15AllocFunc_Mode0INSt3__117integral_constantIbLb1EEEEEPvPS2_m +00000000002288f8 g DF .text 0000000000000044 _ZN2nn3hid5debug32UnsetCaptureButtonAutoPilotStateEv +00000000000a02a8 g DF .text 0000000000000048 _ZN2nn2sf4hipc21CloseServerPortHandleENS_3svc6HandleE +00000000000c7b04 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IAudioControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000018c4d4 g DF .text 000000000000000c _ZN2nn5audio16VoiceInfoManager17GetWorkBufferSizeEi +000000000013999c g DF .text 0000000000000050 _ZN2nn3nfc15SetErrorVisibleEb +000000000031fb04 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIllEEPlEEjT0_S5_S5_S5_S5_T_ +000000000039f6e4 g DF .text 0000000000000068 __eqsf2 +000000000009ec60 g DF .text 0000000000000094 _ZN2nn2sf4hipc6server34HipcServerSessionManagerWithDomain21Process2ManagerInvokeEPNS2_17HipcServerSessionEPvmS6_m +00000000000c79e0 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service7IWindowENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +0000000000132f44 g DF .text 000000000000008c _ZN2nn4htcs8FinalizeEv +000000000010a340 g DF .text 0000000000000078 opus_decoder_get_size +00000000003e4fac g DF .text 0000000000000324 __nnmusl_FileOpen +00000000003ab01c g DF .text 0000000000000004 pthread_attr_getstacksize +000000000026c400 g DF .text 0000000000000028 NvRmMemWr32 +000000000025d198 g DF .text 0000000000000004 NvOsMkdir +0000000000238cb8 g DF .text 000000000000004c _ZN2nn8irsensor6detail13StatusManager22AllocateClusteringLifoERKNS0_14IrCameraHandleE +00000000000c059c g DF .text 0000000000000034 _ZN2nn7account34NetworkServiceAccountAdministratorC2ERKNS0_3UidEPNS0_4baas14IAdministratorE +000000000003e148 g DF .text 000000000000015c _ZN2nn4util14CopyUtf8StringEPcmPKcmi +00000000007e5510 g DO .rodata 0000000000000025 _ZTSN2nn3ssl6detail18ISslServiceFactoryE +0000000000096ed8 g DF .text 0000000000000008 _ZN2nn2os6detail36InternalCriticalSectionImplByHorizonC2Ev +00000000000b3198 g DF .text 0000000000000034 _ZN2nn7account17GetLastOpenedUserEPNS0_3UidE +000000000016c730 g DF .text 0000000000000070 _ZN2nn8settings6detail21GetBluetoothBdAddressEPNS0_7factory9BdAddressE +000000000016b338 g DF .text 0000000000000078 _ZN2nn8settings7factory26GetWirelessLanCountryCodesEPiPNS1_11CountryCodeEi +00000000001c7438 g DF .text 000000000000005c _ZN2nn3mii11ShowMiiEditEv +000000000006f490 g DF .text 0000000000000068 _ZN2nn4lmem21VisitExpHeapAllBlocksEPNS0_6detail8HeapHeadEPFvPvS3_mEm +0000000000233e74 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +0000000000329848 w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE4setpEPwS4_ +00000000001003fc g DF .text 000000000000010c silk_LTP_analysis_filter_FIX +000000000035a644 g DF .text 000000000000000c _ZNKSt3__120__codecvt_utf8_utf16IDsE10do_unshiftER11__mbstate_tPcS4_RS4_ +00000000000512bc g DF .text 000000000000009c _ZN2nn2fs8MountBisENS0_14BisPartitionIdEPKc +0000000000060958 g DF .text 0000000000000130 _ZN2nn2fs17GetGameCardHandleEPj +00000000003a4c14 g DF .text 0000000000000008 __udivdi3 +0000000000076230 g DF .text 00000000000000b0 nnmem_nlib_utf16cplen_ex_generic +000000000009672c g DF .text 000000000000008c _ZN2nn2os6detail30MemoryHeapManagerImplByHorizon11SetHeapSizeEPmm +00000000000cc7c0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E51_nn_sf_sync_GetMainAppletApplicationDesiredLanguageENS0_3OutINS_8settings12LanguageCodeEvEE +00000000001e0038 g DF .text 00000000000000c8 FSS_font_name +00000000003ba6b4 g DF .text 000000000000010c cexp +000000000009140c g DF .text 0000000000000004 nnosSignalSystemEvent +000000000014ca88 w DF .text 0000000000000170 _ZN2nn3ngc6detail12PlainArray32IjE6ImportEPNS1_12BinaryReaderE +00000000007cbbe0 w DO .rodata 000000000000014b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IOverlayAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000025ea10 g DF .text 0000000000000118 NvUStrtol +0000000000089d14 g DF .text 00000000000000e8 _ZN2nn3mem17StandardAllocator10InitializeEPvmb +000000000013dd04 g DF .text 0000000000000018 _ZN2nn3nfp6detail26GetBufferForAmiiboSettingsEPPNS0_28ReturnValueForAmiiboSettingsEPPNS0_27StartParamForAmiiboSettingsE +00000000001ce7ac w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_SetDisplayUnderscanEml +000000000022de78 g DF .text 0000000000000044 _ZN2nn3hid5debug19FinalizeTouchScreenEv +0000000000357d10 g DF .text 000000000000000c _ZNKSt3__17codecvtIDsc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_ +000000000097ab18 g DO .data 0000000000000050 _ZTVNSt3__18numpunctIwEE +0000000000823760 w DO .rodata 0000000000000016 _ZTSNSt3__19__num_putIwEE +00000000000c06e4 g DF .text 00000000000000a8 _ZN2nn7account34NetworkServiceAccountAdministrator15UnregisterAsyncEPNS0_12AsyncContextE +000000000011c590 g DF .text 000000000000011c _ZN2nn3err6detail15ReadMessageFileEPDsmPKcRKNS_8settings12LanguageCodeE +00000000003cb1e8 g DF .text 000000000000000c lgammaf +0000000000174e10 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_GetBacklightSettingsExENS0_3OutINS5_6system19BacklightSettingsExEvEE +0000000000067064 g DF .text 0000000000000140 _ZN2nn2fs14DeleteSaveDataEm +000000000017a0f8 g DF .text 0000000000000024 nnsslConnectionRead +00000000003e7360 g DF .text 000000000000009c __nnmusl_AllocateTlsSlot +000000000032592c g DF .text 0000000000000134 _ZNKSt3__111__libcpp_db17__dereferenceableEPKv +00000000003cb92c g DF .text 0000000000000024 lgammal +0000000000028db0 g DF .text 0000000000000474 _ZN2nn5image6detail4jpeg14jpeg_idct_8x16EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000016d848 g DF .text 0000000000000070 _ZN2nn8settings6detail13GetKeyCodeMapEPNS_3kpr10KeyCodeMapE +0000000000212394 g DF .text 0000000000000100 swap_head +0000000000239190 g DF .text 0000000000000008 _ZNK2nn8irsensor6detail19StatusManagerHolder16GetStatusManagerEv +000000000003bbb4 g DF .text 0000000000000010 _ZN2nn4util15RelocationTable10GetSectionEi +000000000094c070 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000228c20 g DF .text 0000000000000044 _ZN2nn3hid5debug16FinalizeDebugPadEv +00000000000b0ffc g DF .text 000000000000003c _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferIjEElRT_PKhm +00000000000bf3c0 g DF .text 0000000000000008 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarC1Ev +000000000094c298 w DO .data 0000000000000050 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service7IWindowENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003610e0 g DF .text 0000000000000018 _ZNSt3__15mutexD1Ev +0000000000090cfc g DF .text 000000000000017c _ZN2nn2os17MapTransferMemoryEPPvPNS0_18TransferMemoryTypeENS0_16MemoryPermissionE +00000000008252f0 g DO .rodata 0000000000000022 _ZTSN10__cxxabiv117__pbase_type_infoE +00000000000793d0 g DF .text 0000000000000184 nnmem_nlib_mq_receive +0000000000126288 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_GetProfileExtraFromFriendCodeENS0_3OutINS6_16ProfileExtraImplEvEERKNS_7account3UidERKNS5_10FriendCodeE +00000000003a4874 g DF .text 0000000000000114 __truncdfhf2 +00000000002a15e8 g DF .text 000000000000000c _ZN7android6Parcel4BlobC1Ev +0000000000823980 w DO .rodata 0000000000000020 _ZTSNSt3__118__time_get_storageIwEE +000000000011e5b0 g DF .text 0000000000000170 _ZN2nn7friends20GetFriendRequestListEPNS0_12AsyncContextEPiPNS0_13FriendRequestERKNS_7account3UidEiiNS0_15RequestListTypeE +0000000000346724 g DF .text 000000000000012c _ZNSt3__110__time_putC2EPKc +00000000000914bc g DF .text 0000000000000004 nnosUnlinkAllMultiWaitHolder +000000000034f338 w DF .text 0000000000000060 _ZNKSt3__120__vector_base_commonILb1EE20__throw_length_errorEv +0000000000091688 g DF .text 0000000000000014 _ZN2nn2os6detail39DetachWritableHandleOfInterProcessEventEPNS1_21InterProcessEventTypeE +0000000000177238 w DF .text 0000000000000120 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEENSB_ILm1ELm1ELl1EEENSB_ILm1ELm1ELl2EEENS7_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm3ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEESO_SO_NSM_23InRawClientArgumentTypeILm1ELm1EvEEj +00000000001a9a68 g DF .text 00000000000000f4 _ZN2nn5audio3dsp13ApplyDepopMixEPiiii +00000000003dc7b4 w DF .text 0000000000000004 __unlist_locked_file +000000000002ec7c g DF .text 0000000000000044 _ZN2nn5image11JpegEncoder12SetPixelDataEPKvNS0_11PixelFormatERKNS0_9DimensionEi +000000000017aff4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_ImportServerPkiENS0_3OutImvEERKNS0_8InBufferENS6_17CertificateFormatE +00000000000b020c g DF .text 0000000000000170 _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferIcEElRPPT_PKhm +00000000001a52b4 g DF .text 0000000000000014 _ZN2nn5audio6server12SplitterInfoC2Ei +000000000005abc0 w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +00000000001a76e8 g DF .text 000000000000004c _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl27ListAudioDeviceNameInternalERKNS_2sf9OutBufferENS4_3OutIivEE +000000000016b910 g DF .text 0000000000000070 _ZN2nn8settings6detail30SetForceMuteOnHeadphoneRemovedEb +000000000000c7a8 g DF .text 0000000000000128 _ZN2nn5image6detail4jpeg23jinit_c_coef_controllerEPNS2_20jpeg_compress_structEb +0000000000122d34 g DF .text 0000000000000034 _ZNK2nn7friends14FriendPresence11GetAppValueEPKc +000000000013aab8 g DF .text 0000000000000024 _ZN2nn3nfp6client17GetDebugInterfaceEv +00000000001c33f8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetNoseScaleEi +00000000007c7b00 w DO .rodata 0000000000000027 _ZTSN2nn2am7service20IApplicationAccessorE +0000000000331264 w DF .text 0000000000000030 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPFRNS_8ios_baseES5_E +00000000000c253c g DF .text 000000000000000c _ZN2nn7account13ProfileEditor11SetNicknameERKNS0_8NicknameE +00000000001d6fa8 g DF .text 00000000000000b4 _ZN2nn2vi6buffer11BufferQueue10InitializeEPNS0_5LayerERKNS1_10BufferInfoE +000000000039f448 g DF .text 0000000000000068 __eqdf2 +0000000000947a90 w DO .data 0000000000000018 _ZTIN2nn7account6detail9INotifierE +00000000001b68ac g DF .text 000000000000001c _ZNK2nn3mii6detail11CharInfoRaw7IsValidEv +00000000000927f0 g DF .text 0000000000000048 _ZN2nn2os6detail17MemoryHeapManager29IsRegionAllocatedMemoryUnsafeEmm +0000000000232408 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E48_nn_sf_sync_AcquireNpadStyleSetUpdateEventHandleENS_6applet20AppletResourceUserIdENS0_3OutINS0_12NativeHandleEvEEjm +00000000007e42d0 w DO .rodata 00000000000000e3 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +000000000008384c w DF .text 0000000000000170 _ZN2nn7nlibsdk4heap12TlsHeapCache17ReallocFunc_Mode0INSt3__117integral_constantIbLb1EEEEEiPS2_PvmPS8_ +000000000032b6e0 w DF .text 00000000000000a0 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE7getlineEPcl +0000000000096fe8 g DF .text 0000000000000070 _ZN2nn2os6detail10RngManagerC1Ev +000000000015e038 g DF .text 000000000000005c _ZN2nn4pctl33IsRestrictedSystemSettingsEnteredEv +0000000000179f84 g DF .text 0000000000000024 nnsslConnectionSetIoMode +000000000036d458 g DF .text 000000000000001c _ZNSt3__122__libcpp_mutex_trylockEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +0000000000121fe0 g DF .text 0000000000000008 _ZNK2nn7friends11BlockedUser7IsValidEv +00000000002c38bc g DF .text 0000000000000004 _ZN7android14SurfaceControl5clearEv +00000000000c8ae0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_NotifyMessageToHomeMenuForDebugENS5_13AppletMessageE +00000000000bbb14 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E64_nn_sf_sync_ResumeProcedureToUpdateLinkageStateOfNintendoAccountENS0_3OutINS0_13SharedPointerINS5_4http15IOAuthProcedureEEEvEERKNSK_4UuidE +000000000097bee0 w DO .data 0000000000000038 _ZTINSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000003a8734 g DF .text 0000000000000014 dcgettext +00000000003c2cec g DF .text 000000000000003c __iswpunct_l +0000000000a311c0 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_3hid6detail15HidSystemServerEE8_globalsE +00000000001fde14 g DF .text 00000000000002a8 sfnt_UnfoldCurve +0000000000231fdc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E33_nn_sf_sync_ActivateSixAxisSensorENS5_11BasicXpadIdE +0000000000296d0c g DF .text 0000000000000004 _ZN7android10IInterfaceD2Ev +00000000002c9da0 g DF .text 0000000000000068 _ZN7android13GraphicBuffer14lockAsyncYCbCrEjRKNS_4RectEP13android_ycbcri +0000000000174498 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_GetSettingsItemValueSizeENS0_3OutImvEERKNS5_12SettingsNameERKNS5_15SettingsItemKeyE +0000000000298a1c g DF .text 0000000000000008 _ZN7android11IMemoryHeapD2Ev +00000000003dc8b0 w DF .text 0000000000000038 _IO_ferror_unlocked +00000000007c5200 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001b7690 g DF .text 0000000000000028 _ZN2nn3mii6detail13GetPantsColorEbNS0_9GammaTypeE +00000000002cd5c0 g DF .text 000000000000005c _ZNK7android7RefBase9incStrongEPKv +0000000000150a90 g DF .text 000000000000003c _ZN2nn4nifm6detail13RequestClient6CancelEv +000000000016fcf0 g DF .text 0000000000000070 _ZN2nn8settings6detail24GetInitialLaunchSettingsEPNS0_6system21InitialLaunchSettingsE +0000000000273a80 g DF .text 0000000000000008 NvRmChannelDup +000000000019d738 g DF .text 00000000000000a0 _ZN2nn5audio6server13CommandBuffer25GenerateVolumeRampCommandEffij +00000000000af3e0 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEEEEELm16ELm0ELb1EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_ILm4ELm4EvEEj +00000000002297f4 g DF .text 0000000000000044 _ZN2nn3hid16GetKeyboardStateEPNS0_13KeyboardStateE +0000000000158474 g DF .text 0000000000000008 _ZN2nn4nifm6detail12HttpResponseC1Ev +000000000002bae8 g DF .text 0000000000000104 _ZN2nn5image6detail14ReadTiffHeaderEPNS1_8BinaryIoEPtPKht +000000000009a068 g DF .text 00000000000000f8 _ZN2nn2sf6detail19DefaultAllocateImplEmmm +0000000000328590 w DF .text 0000000000000004 _ZNSt3__19basic_iosIcNS_11char_traitsIcEEED1Ev +00000000000c6030 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_GetHomeButtonReaderLockAccessorENS0_3OutINS0_13SharedPointerINS6_13ILockAccessorEEEvEE +00000000000eaa74 g DF .text 00000000000004d8 clt_mdct_forward_c +000000000034825c w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb0EE16do_negative_signEv +00000000000d384c g DF .text 00000000000000a4 _ZN2nn6applet19TryPopFromInChannelEPNS0_13StorageHandleENS0_23LibraryAppletSelfHandleE +0000000000953d80 w DO .data 0000000000000018 _ZTIN2nn3nsd6detail8IManagerE +0000000000190308 g DF .text 000000000000006c _ZN2nn5audio36GetAudioRenderersProcessMasterVolumeEPfNS_6applet20AppletResourceUserIdE +0000000000958760 w DO .data 0000000000000018 _ZTIN2nn5audio6detail38IFinalOutputRecorderManagerForDebuggerE +00000000000cc480 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetPopInDataEventENS0_3OutINS0_12NativeHandleEvEE +00000000001a4038 g DF .text 0000000000000044 _ZN2nn5audio6server10MixContext19CalcMixBufferOffsetEv +0000000000069124 g DF .text 0000000000000124 _ZN2nn2fs24GetSaveDataAvailableSizeEPlm +00000000000bd990 g DF .text 0000000000000078 _ZN2nn7account12AsyncContext14GetSystemEventEPNS_2os11SystemEventE +0000000000084fdc g DF .text 00000000000003a8 _ZN2nn7nlibsdk4heap14TlsHeapCentral9SplitSpanEPNS1_4SpanEmS4_ +000000000008a300 g DF .text 000000000000004c _ZNK2nn3mem17StandardAllocator4DumpEv +00000000002cdfd0 g DF .text 000000000000003c _ZN7android18terminate_string16Ev +00000000003aaea4 g DF .text 0000000000000140 __stdout_write +00000000003d0f6c g DF .text 00000000000000a8 __sin +00000000003c2abc w DF .text 0000000000000004 iswctype_l +00000000001a7a00 g DF .text 0000000000000054 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl27QueryAudioDeviceSystemEventENS_2sf3OutINS4_12NativeHandleEvEE +0000000000109cbc g DF .text 000000000000009c opus_packet_get_samples_per_frame +00000000007e57f0 w DO .rodata 0000000000000103 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEvEE +000000000003b580 g DF .text 0000000000000060 _ZNK2nn4util16BinaryFileHeader7IsValidEliii +00000000000824cc w DF .text 0000000000000008 nnmem_nlib_malloc +0000000000239778 g DF .text 000000000000005c _ZN2nn8irsensor6detail15IrSensorSessionD0Ev +0000000000188e88 g DF .text 0000000000000038 _ZN2nn5audio17SetFinalMixVolumeEPNS0_12FinalMixTypeEf +000000000008d76c g DF .text 0000000000000004 _ZN2nn2os14WaitLightEventEPNS0_14LightEventTypeE +00000000001aff40 g DF .text 0000000000000008 _ZN2nn5audio3dsp20DspExceptionNotifierD2Ev +00000000000bb3a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE32_nn_sf_sync_InvalidateTokenCacheENS_13ApplicationIdE +00000000000c8fac w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE17GetCmifBaseObjectEv +00000000007ca600 w DO .rodata 0000000000000029 _ZTSN2nn2am7service22IGlobalStateControllerE +0000000000097ce8 g DF .text 0000000000000124 _ZN2nn2ro12LookupSymbolEPmPKc +000000000004f040 g DF .text 0000000000000028 _ZN2nn2fs8ReadFileEPmNS0_10FileHandleElPvm +00000000002154d0 g DF .text 0000000000000060 _ZN2nn3hid6detail32UnsetCaptureButtonAutoPilotStateEv +000000000033e894 w DF .text 0000000000000254 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPKv +00000000000bf1a4 g DF .text 0000000000000074 _ZN2nn7account19CalculateCheckDigitERKNS0_23NetworkServiceAccountIdE +00000000001712e4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E26_nn_sf_sync_GetLcdVendorIdENS0_3OutIjvEE +00000000001c35a8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding4Ei +00000000000d7060 g DF .text 0000000000000030 _ZNK2nn4bcat21DeliveryCacheProgress15GetCurrentTotalEv +00000000001bb8ac g DF .text 0000000000000024 _ZN2nn3mii6detail13GetRegionCodeEv +0000000000234a4c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E28_nn_sf_sync_GetIrSensorStateEjNS0_3OutIlvEENS_6applet20AppletResourceUserIdE +0000000000245e0c w DF .text 0000000000000a30 _ZN22nerd_gillette_internal5otete11ImageCodec213DecodeInPlaceIhNS0_14InputBitStreamENS_15StaticImageViewIKhEEEEbRKNS4_IT_EERT0_RKT1_f +0000000000810bf0 w DO .rodata 000000000000010d _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000000d1f88 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +00000000001a7734 g DF .text 000000000000004c _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl19ListAudioDeviceNameERKNS_2sf9OutBufferENS4_3OutIivEE +0000000000234d28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E41_nn_sf_sync_GetAllowedBluetoothLinksCountENS0_3OutIlvEE +00000000007c6c10 w DO .rodata 000000000000014a _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IDisplayControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003a1a78 g DF .text 0000000000000058 __fixunssfsi +0000000000129584 w DF .text 0000000000000168 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl8EEENSG_ILm8ELm8ELl24EEENSG_ILm4ELm4ELl0EEEEEELm32ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSR_ILm8ELm8EvEENSR_ILm4ELm4EvEEj +000000000007154c g DF .text 00000000000000e8 nnmem_nlib_thread_attr_getint +000000000024dcb4 g DF .text 0000000000000108 _ZN2nn5album22SaveAndShareScreenshotEPNS0_7ShareIdEPKvmNS0_9ImageSizeENS0_17AlbumReportOptionERKNS_7account3UidEPKc +000000000022ba30 g DF .text 000000000000005c _ZN2nn3hid6system12GetNpadStateEPNS1_18NpadSystemExtStateERKj +0000000000081ed8 g DF .text 0000000000000058 nnmem_nlib_fd_pread +0000000000958e60 g DO .data 0000000000000018 _ZTIN2nn5audio6server12DetailAspectE +00000000000032ac g DF .text 0000000000000090 _ZNK2nn6crypto6detail10EccP256Key10VerifyHashEPKvmS4_m +00000000007d6550 g DO .rodata 000000000000002c _ZTSN2nn5codec30HardwareOpusMultiStreamDecoderE +000000000022b88c g DF .text 0000000000000044 _ZN2nn3hid6system28GetPlusMinusButtonCapabilityEPbS2_RKj +0000000000286da8 g DF .text 000000000000000c NvRmGpuChannelCycleStatsFlushSnapshot +00000000001a5038 g DF .text 0000000000000034 _ZN2nn5audio6server22CircularBufferSinkInfo26UpdateForCommandGenerationEv +00000000002c8eb8 g DF .text 0000000000000094 _ZNK7android5Fence13getSignalTimeEv +000000000023c354 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E32_nn_sf_sync_RunPointingProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleERKNS5_29PackedPointingProcessorConfigE +0000000000294f44 g DF .text 000000000000003c _ZN7android7BBinderC1Ev +0000000000053e00 w DF .text 0000000000000074 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl8AllocateEv +0000000000227abc g DF .text 0000000000000210 _ZN2nn3hid6detail25GetVibrationDeviceHandlesEPNS0_21VibrationDeviceHandleEPiijNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +0000000000823930 w DO .rodata 000000000000004d _ZTSNSt3__115time_get_bynameIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000943390 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf16IFileSystemProxyE +00000000007d8790 w DO .rodata 000000000000015c _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000007dfcb0 w DO .rodata 00000000000001a8 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001a7afc g DF .text 0000000000000028 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl21GetActiveChannelCountENS_2sf3OutIivEE +000000000015b7f0 g DF .text 0000000000000088 _ZN2nn2oe25BeginMediaPlaybackSectionEv +000000000016c3b0 g DF .text 0000000000000070 _ZN2nn8settings6detail43IsUserSystemClockAutomaticCorrectionEnabledEPb +000000000097ace0 g DO .data 0000000000000038 _ZTINSt3__15ctypeIwEE +00000000001bb08c g DF .text 000000000000008c _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw11ToStoreDataEPNS1_12StoreDataRawE +000000000018d270 g DF .text 0000000000000014 _ZNK2nn5audio6common10NodeStates5Stack3topEv +0000000000259160 g DF .text 0000000000000008 nvdcDisplayUnbind +000000000028675c g DF .text 000000000000000c NvRmGpuDeviceZbcGetColorTableEntry +0000000000822400 g DO .rodata 000000000000001a _ZTSNSt3__18ios_base7failureE +0000000000395d88 g DF .text 0000000000000004 _ZNSt16bad_array_lengthD2Ev +000000000097e050 g DO .data 0000000000000020 _ZTIPDh +00000000001c50b8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding1Ev +000000000097e230 g DO .data 0000000000000020 _ZTIPDi +0000000000080ad0 g DF .text 000000000000004c nnmem_nlib_ticktime +00000000003a9db4 g DF .text 000000000000000c __nnmusl_stdout_lock_init +0000000000172524 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E12GetProxyInfoEv +00000000000ca080 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000001854e4 g DF .text 0000000000000004 _ZN2nn5audio50IsAudioRendererExclusiveControlLeakageCheckEnabledEv +000000000023071c g DF .text 0000000000000044 _ZN2nn3hid5debug12FinalizeXpadERKNS0_11BasicXpadIdE +0000000000243a44 w DF .text 0000000000000024 _ZN22nerd_gillette_internal5otete11ImageCodec213DecodeInPlaceItEEbRKNS_15StaticImageViewIT_EERNS0_14InputBitStreamEf +000000000097db50 g DO .data 0000000000000020 _ZTIPDn +00000000003a1ad0 g DF .text 0000000000000098 __fixunssfti +00000000003cd7dc w DF .text 0000000000000020 dremf +0000000000365fa0 w DF .text 00000000000000d4 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEmw +000000000018b800 g DF .text 00000000000000ac _ZN2nn5audio12SplitterInfo14StoreParameterEPNS1_11InParameterE +000000000097e1e0 g DO .data 0000000000000020 _ZTIPDs +00000000001346e8 g DF .text 0000000000000064 _ZN2nn4htcs6detail25virtual_socket_collection4FindEiPi +0000000000181594 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E12GetProxyInfoEv +000000000018e0fc g DF .text 0000000000000888 _ZN2nn5audio19ResampleOutputFrameEPNS0_14ResamplerStateEiiPKsPsiif +000000000003dfd0 g DF .text 0000000000000178 _ZN2nn4util29GetCodePointCountOfUtf8StringEPKcm +00000000000c5368 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001c5c6c g DF .text 0000000000000024 _ZN2nn3mii15PrivateDatabase11DestroyFileEv +00000000009458d8 g DO .data 0000000000000038 _ZTVN2nn2os6detail34MultiWaitHolderOfInterProcessEventE +000000000015ca20 g DF .text 0000000000000058 _ZN2nn2oe18GetDesiredLanguageEv +00000000003ab208 g DF .text 0000000000000004 __tls_get_addr +000000000017f460 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_7timesrv6detail7service12ISystemClockEE19FunctionForBoolTypeEv +00000000002d1ef4 g DF .text 0000000000000020 _ZN7android10VectorImplC2Emj +000000000097b730 g DO .data 0000000000000018 _ZTINSt3__120__codecvt_utf8_utf16IDsEE +00000000001474b0 g DF .text 00000000000000d4 _ZN2nn3ngc6detail12BinaryWriter5FlushEv +00000000007e0ab0 w DO .rodata 0000000000000165 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000150bdc g DF .text 0000000000000024 _ZNK2nn4nifm6detail13RequestClient14GetRequirementEPNS0_11RequirementE +00000000001cb848 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl29SetFinishedInitializeCallbackEPFvvE +00000000000d98d8 w DF .text 00000000000000a0 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm27EE27InitializeShimLibraryHolderINS_4bcat6detail3ipc15IServiceCreatorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENKUlPvE_clESH_ +0000000000804ff0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi64EE4MaskE +0000000000953330 g DO .data 0000000000000018 _ZTIN2nn3ngc6detail15NullInputStreamE +000000000017f52c g DF .text 0000000000000064 _ZN2nn4time19StandardSteadyClock19GetCurrentTimePointEPNS0_20SteadyClockTimePointE +000000000021ed78 g DF .text 0000000000000060 _ZN2nn3hid6detail21SendConnectionTriggerENS_9bluetooth7AddressE +0000000000947ce0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000000562b4 w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +000000000021d7e0 g DF .text 0000000000000078 _ZN2nn3hid6detail20IsSlSrButtonOrientedEPbRKj +00000000000ba0f8 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E28_nn_sf_sync_GetProfileEditorENS0_3OutINS0_13SharedPointerINS5_7profile14IProfileEditorEEEvEERKNS5_3UidE +00000000003e1534 g DF .text 0000000000000010 bzero +00000000001ce6e4 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_ListDisplayRgbRangesENS0_3OutIlvEERKNS0_8OutArrayIjEEm +00000000002203c4 w DF .text 0000000000000004 _ZN2nn3hid6detail9MouseLifoD0Ev +0000000000031bf0 g DF .text 00000000000000b4 nnutilZlib_deflatePrime +00000000003156c4 g DF .text 0000000000000060 _ZN2nn4gpio19SetWakePinDebugModeENS0_16WakePinDebugModeE +0000000000219d90 g DF .text 000000000000017c _ZN2nn3hid6detail13GetMouseStateEPNS0_10MouseStateE +000000000029e988 g DF .text 0000000000000024 _ZN7android6Parcel11finishWriteEm +000000000009c220 g DF .text 000000000000012c _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase18InitializePortImplEiONS0_4cmif6server20CmifServerObjectInfoEiPKc +00000000000fed8c g DF .text 00000000000001a0 silk_insertion_sort_decreasing_int16 +00000000001451e4 g DF .text 000000000000008c _ZN2nn3ngc6detail11AhoCorasickD2Ev +0000000000327680 g DF .text 0000000000000010 _ZNSt3__113shared_futureIvED2Ev +00000000007bd9b0 w DO .rodata 0000000000000165 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000014bbf8 g DF .text 0000000000000208 _ZN2nn3ngc6detail7SbvRank5BuildEPKjj +0000000000182a8c g DF .text 00000000000000dc _ZN2nn4time6detail20MonotonicSystemClock21SetSystemClockContextENS0_18SystemClockContextE +000000000018bf7c g DF .text 000000000000003c _ZN2nn5audio19SetVoiceDestinationEPNS0_19AudioRendererConfigEPNS0_9VoiceTypeEPNS0_10SubMixTypeE +00000000000d7b48 g DF .text 00000000000000d0 _ZN2nn4bcat6detail3ipc33CreateDeliveryCacheStorageServiceEPPNS2_28IDeliveryCacheStorageServiceE +00000000000b3b88 g DF .text 00000000000000a0 _ZN2nn7account50GetNetworkServiceAccountAvailabilityChangeNotifierEPNS0_8NotifierE +0000000000160964 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E54_nn_sf_sync_ConfirmStereoVisionRestrictionConfigurableEv +000000000036d704 g DF .text 0000000000000018 _ZNSt3__131__libcpp_recursive_mutex_unlockEPN2nn2os9MutexTypeE +000000000004c7a4 w DF .text 0000000000000010 _ZN2nn2fs13MemoryStorage7GetSizeEPl +0000000000231878 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm16ELm1ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm16ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm16ELm1EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000003359fc w DF .text 0000000000000004 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjS8_ +000000000022961c g DF .text 0000000000000044 _ZN2nn3hid20GetJoyXpadRightStateEPNS0_12JoyXpadStateERKNS0_9JoyXpadIdE +000000000023d80c w DF .text 0000000000000638 _ZN22nerd_gillette_internal5otete7jaimev19SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_12HandInPacketERT_ +0000000000296434 g DF .text 0000000000000060 _ZN7android8BpBinder15getNativeHandleEjRjRb +00000000001230a8 g DF .text 00000000000000d0 _ZN2nn7friends11UserSetting10InitializeERKNS_7account3UidE +00000000001b531c g DF .text 0000000000000004 _ZN2nn2la27AppletToNifmArgumentsReaderD2Ev +0000000000944aa0 w DO .data 0000000000000038 _ZTIN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEEE +00000000000c5cf8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE17GetCmifBaseObjectEv +000000000017d1b4 g DF .text 0000000000000004 _ZN2nn4time28AdjustableNetworkSystemClock11from_time_tEl +0000000000955c90 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_EE +000000000080ba40 w DO .rodata 000000000000001b _ZTSN2nn3hid15IHidDebugServerE +000000000023a8bc g DF .text 0000000000000060 _ZN2nn8irsensor6detail17GetSessionManagerEv +00000000003aac2c w DF .text 0000000000000004 __aio_close +0000000000044d84 g DF .text 00000000000000c4 nndetailDiagLogImpl +0000000000070414 g DF .text 0000000000000008 _ZN2nn4lmem6detail17GetExpHeapGroupIdEPNS1_8HeapHeadE +00000000001747fc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E56_nn_sf_sync_SetUserSystemClockAutomaticCorrectionEnabledEb +00000000003175c4 g DF .text 0000000000000100 _ZN2nn3i2c20CommandListFormatter18EnqueueSendCommandENS0_17TransactionOptionEPKhm +0000000000342808 w DF .text 0000000000000510 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKwSC_ +00000000003a8104 w DF .text 0000000000000098 open64 +0000000000018178 g DF .text 0000000000000118 _ZN2nn5image6detail4jpeg18jpeg_read_raw_dataEPNS2_22jpeg_decompress_structEPPPhi +0000000000075e30 g DF .text 00000000000000ac nnmem_nlib_utf16cpy_ +00000000007bf550 w DO .rodata 000000000000015a _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +000000000014b920 g DF .text 000000000000005c _ZNK2nn3ngc6detail11BitVector326ExportEPNS1_12BinaryWriterE +000000000000363c g DF .text 00000000000001f4 _ZN2nn6crypto6detail19alg_p256_ECDSA_signEPNS1_17p256_ec_signatureEPKvmPKNS1_17p256_ec_parameterEPKjSA_m +0000000000070f6c g DF .text 0000000000000024 _ZN2nn4lmem6detail27GetUnitHeapAllocatableCountEPNS1_8HeapHeadE +0000000000180418 g DF .text 00000000000000c8 _ZN2nn4time6detail7service21ServiceProviderClient35GetSystemStaticServiceSharedPointerEPNS_2sf13SharedPointerINS_7timesrv6detail7service14IStaticServiceEEE +00000000000b61bc w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEE17GetCmifBaseObjectEv +00000000000d4174 g DF .text 00000000000000ec _ZN2nn6applet14WriteToStorageENS0_13StorageHandleElPKvm +0000000000369240 g DF .text 00000000000001e0 _ZNSt3__15stoldERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPm +000000000015878c g DF .text 0000000000000048 _ZN2nn3nsd33EnableChangeEnvironmentIdentifierEv +000000000017fdb4 g DF .text 0000000000000158 _ZN2nn4time19ToCalendarTimeInUtcERKNS0_9PosixTimeE +00000000001b93e0 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw13GetGlassScaleEv +0000000000802994 g DO .rodata 0000000000000008 fs_mask +00000000000c18bc g DF .text 0000000000000070 _ZN2nn7account42NintendoAccountAuthorizationRequestContext12DebugGetInfoEPmm +00000000000cc4a0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_GetPopInteractiveInDataEventENS0_3OutINS0_12NativeHandleEvEE +0000000000316084 g DF .text 0000000000000004 nngpioFinalize +0000000000072918 g DF .text 0000000000000094 nnmem_nlib_dwprintf +0000000000230d48 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E35_nn_sf_sync_DeactivateInputDetectorEv +000000000036d350 g DF .text 0000000000000008 _ZNSt3__115__thread_struct25notify_all_at_thread_exitEPNS_18condition_variableEPNS_5mutexE +00000000003cd7bc w DF .text 0000000000000020 drem +00000000007dfb30 g DO .rodata 0000000000000024 _ZTSN2nn3ngc6detail17MemoryInputStreamE +000000000097d908 g DO .data 0000000000000020 _ZTVSt9type_info +000000000016d374 g DF .text 0000000000000070 _ZN2nn8settings6detail22GetGameCardCertificateEPNS0_7factory19GameCardCertificateE +000000000094ba50 w DO .data 0000000000000018 _ZTIN2nn2am7service21IStackableAppletProxyE +000000000017f8ec g DF .text 0000000000000064 _ZN2nn4time23StandardUserSystemClock14GetCurrentTimeEPNS0_9PosixTimeE +000000000024c8f8 g DF .text 0000000000000040 _ZN2nn3kpr6detail25IsKeyCodeMapModeSupportedERKNS1_17KeyCodeMapStorageENS0_14KeyCodeMapModeE +000000000097dce0 g DO .data 0000000000000020 _ZTIPa +000000000013410c g DF .text 0000000000000098 _ZN2nn4htcs6detail25virtual_socket_collectionD1Ev +000000000097dba0 g DO .data 0000000000000020 _ZTIPb +00000000000c9438 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetLaunchReasonENS0_3OutINS6_25AppletProcessLaunchReasonEvEE +000000000097dc40 g DO .data 0000000000000020 _ZTIPc +0000000000125f68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E24_nn_sf_sync_DeleteFriendERKNS_7account3UidENSL_23NetworkServiceAccountIdE +000000000017cd58 g DF .text 000000000000006c _ZN2nn3ssl6detail16SslMemoryManager8FinalizeEv +000000000097e0f0 g DO .data 0000000000000020 _ZTIPd +00000000000911e0 g DF .text 0000000000000034 _ZN2nn2os14AllocateMemoryEPmm +000000000097e140 g DO .data 0000000000000020 _ZTIPe +000000000097e0a0 g DO .data 0000000000000020 _ZTIPf +000000000005e834 w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm1ELl0EEEEEELm16ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm1EvEEj +00000000001b6314 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor8GetMoleXEv +000000000095d600 w DO .data 0000000000000018 _ZTIN2nn3hid16IHidSystemServerE +0000000000317f94 g DF .text 0000000000000098 _ZN2nn3pcv24GetTemperatureThresholdsEPNS0_20TemperatureThresholdEPii +000000000097e190 g DO .data 0000000000000020 _ZTIPg +0000000000045010 g DF .text 0000000000000030 _ZN2nn4diag19RegisterLogObserverEPNS0_17LogObserverHolderE +00000000008022b0 w DO .rodata 00000000000000c6 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000097dc90 g DO .data 0000000000000020 _ZTIPh +000000000097ddd0 g DO .data 0000000000000020 _ZTIPi +00000000003c2e94 g DF .text 0000000000000014 __tolower_l +000000000095de60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +000000000097de20 g DO .data 0000000000000020 _ZTIPj +000000000095b898 w DO .data 0000000000000020 _ZTVN2nn3hid6detail15TouchScreenLifoE +000000000018b054 g DF .text 000000000000000c _ZN2nn5audio19SplitterInfoManager29GetSplitterInfoWorkBufferSizeEi +000000000097de70 g DO .data 0000000000000020 _ZTIPl +00000000000d0f6c w DF .text 0000000000000180 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEEEEELm0ELm0ELb0EEESD_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000024f4c4 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3ldn6detail30IUserLocalCommunicationServiceEED2Ev +000000000097dec0 g DO .data 0000000000000020 _ZTIPm +000000000097dfb0 g DO .data 0000000000000020 _ZTIPn +0000000000977fc0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000097e000 g DO .data 0000000000000020 _ZTIPo +00000000001975f0 g DF .text 00000000000001e8 _ZN2nn5audio26SetAudioDeviceOutputVolumeEPKNS0_15AudioDeviceNameEf +0000000000223cf4 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm9EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +000000000097dd30 g DO .data 0000000000000020 _ZTIPs +00000000001b9644 g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw8SetBuildEi +000000000097dd80 g DO .data 0000000000000020 _ZTIPt +0000000000158714 g DF .text 0000000000000018 _ZN2nn3nsd16DeleteSettingsExENS0_10DeleteModeE +0000000000343af8 w DF .text 0000000000000060 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_12_hourERiRS4_S4_RjRKNS_5ctypeIwEE +00000000002cce80 g DF .text 0000000000000040 _ZNK7android6Region7flattenEPvm +000000000097db00 g DO .data 0000000000000020 _ZTIPv +00000000003e57d8 g DF .text 0000000000000124 __nnmusl_FileStat +000000000097dbf0 g DO .data 0000000000000020 _ZTIPw +0000000000800d90 w DO .rodata 00000000000000c1 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000097df10 g DO .data 0000000000000020 _ZTIPx +0000000000095bb4 g DF .text 0000000000000050 _ZN2nn2os6detail26ThreadManagerImplByHorizon19DestroyThreadUnsafeEPNS0_10ThreadTypeE +000000000097df60 g DO .data 0000000000000020 _ZTIPy +00000000003dd008 g DF .text 0000000000000078 fprintf +00000000001aa464 g DF .text 0000000000000004 _ZN2nn5audio3dsp13SessionResumeENS0_19AppletVolumeManager11SessionTypeEi +00000000000703e8 g DF .text 0000000000000014 _ZN2nn4lmem6detail30SetUseExpHeapMarginOfAlignmentEPNS1_8HeapHeadEb +0000000000213ff0 g DF .text 000000000000000c nnfontllFsOpenFile +0000000000263704 g DF .text 0000000000000018 NvOsConditionBroadcast +00000000001880b8 g DF .text 00000000000000f0 _ZN2nn5audio25SetI3dl2ReverbInputOutputEPNS0_15I3dl2ReverbTypeEPKaS4_i +00000000002591c8 g DF .text 0000000000000060 nvdcGetWinmask +0000000000053888 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_5fssrv2sf25IFileSystemProxyForLoaderEED2Ev +00000000002258d8 w DF .text 0000000000000244 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm15EEEEEiPT_i +0000000000979900 w DO .data 0000000000000028 _ZTINSt3__113basic_ostreamIwNS_11char_traitsIwEEEE +000000000016ab20 g DF .text 0000000000000044 _ZN2nn8settings6system17SetDeviceNickNameERKNS1_14DeviceNickNameE +0000000000073570 g DF .text 0000000000000198 nnmem_nlib_memchr_gt +0000000000135f64 g DF .text 0000000000000008 _ZNK2nn2lm6detail15LogPacketHeader12GetVerbosityEv +00000000003138f4 g DF .text 000000000000004c _ZN2nn3fgm7RequestD2Ev +00000000007bf820 w DO .rodata 0000000000000171 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEEE +00000000001c0060 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetMouthScaleEv +00000000002cf870 g DF .text 000000000000008c _ZN7android7String811real_appendEPKcm +0000000000144c34 g DF .text 00000000000000b0 _ZN2nn3ngc6detail14ContentsReader13MountContentsEPvm +0000000000185814 g DF .text 0000000000000060 _ZN2nn5audio23InitializeAuxBufferInfoEPPNS0_13AuxBufferInfoEPvi +000000000022d768 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm13EEEvPNS0_16TouchScreenStateIXT_EEE +0000000000313c70 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_3fgm2sf8ISessionENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +00000000007e4eb0 w DO .rodata 0000000000000020 _ZTSN2nn8settings15ISettingsServerE +00000000001b689c g DF .text 0000000000000008 _ZNK2nn3mii6detail25CalculateSizeAndAlignment7GetSizeEv +0000000000355d04 g DF .text 00000000000000e0 _ZNSt3__112ctype_bynameIcEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +00000000000a823c w DF .text 000000000000020c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSE_ILm4ELm4ELl4EEENSE_ILm4ELm4ELl8EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEEEEELm12ELm8ELb0EEESK_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESR_NSP_23InRawClientArgumentTypeILm4ELm4EvEEST_ST_NSP_24BufferClientArgumentTypeEj +00000000000b7980 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E39_nn_sf_sync_GetUserRegistrationNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +000000000031342c g DF .text 000000000000001c _ZN2nn3fgm7Request10InitializeENS0_6ModuleEj +0000000000125808 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +0000000000329068 w DF .text 0000000000000040 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC1Ev +000000000014cbf8 g DF .text 0000000000000074 _ZN2nn3ngc6detail3SetD2Ev +00000000000b695c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E12GetProxyInfoEv +0000000000942c38 g DO .data 00000000000000a8 _ZTVN2nn2fs15RomFsFileSystemE +00000000002393b4 g DF .text 0000000000000034 _ZN2nn8irsensor6detail7SessionD0Ev +00000000000664a4 g DF .text 000000000000013c _ZN2nn2fs21MountSaveDataReadOnlyEPKcNS_3ncm13ApplicationIdENS0_6UserIdE +00000000000b10c0 g DF .text 0000000000000008 _ZN2nn6socket8resolver10serializer13DNSSerializer12InternalHtonERKj +00000000002a04fc g DF .text 0000000000000038 _ZNK7android6Parcel9readFloatEPf +00000000007cffc0 w DO .rodata 000000000000011b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000039c990 g DF .text 000000000000007c _Unwind_Resume_or_Rethrow +00000000000b1e2c g DF .text 0000000000000068 _ZN2nn7account40ShowLicenseRequirementsForNetworkServiceERKNS0_3UidERKNS_3err9ErrorCodeE +000000000017fa20 g DF .text 0000000000000008 _ZN2nn4time23StandardUserSystemClock9to_time_tERKNSt3__16chrono10time_pointINS0_17SystemClockTraitsENS3_8durationIlNS2_5ratioILl1ELl1EEEEEEE +0000000000340fac w DF .text 0000000000000010 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm +000000000008f4d4 g DF .text 0000000000000078 _ZN2nn2os19GenerateRandomBytesEPvm +000000000016f6d0 g DF .text 0000000000000070 _ZN2nn8settings6detail39SetConsoleSixAxisSensorAccelerationGainERKNS0_6system36ConsoleSixAxisSensorAccelerationGainE +00000000003c9158 g DF .text 0000000000000098 exp10 +0000000000331190 w DF .text 00000000000000a0 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryD1Ev +00000000000b10c8 g DF .text 0000000000000008 _ZN2nn6socket8resolver10serializer13DNSSerializer12InternalHtonERKt +00000000002571b0 g DF .text 0000000000000104 _ZN2nn3web15ShowNewsPageArg14SetCallbackUrlEPKc +0000000000948660 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEEE +0000000000089f54 g DF .text 0000000000000008 _ZN2nn3mem17StandardAllocator8AllocateEm +0000000000362c50 w DF .text 0000000000000154 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKcm +0000000000234c08 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E31_nn_sf_sync_DisableHandheldHidsEv +0000000000944b68 g DO .data 0000000000000050 _ZTVN2nn2fs6detail27StorageServiceObjectAdapterE +00000000007ce490 w DO .rodata 000000000000001e _ZTSN2nn3apm18IManagerPrivilegedE +0000000000047734 g DF .text 000000000000008c _ZN2nn2fs24HierarchicalRomFileTable10InitializeENS0_10SubStorageES2_S2_S2_ +0000000000130e78 w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm32ELm1ELl0EEEEEELm0ELm32ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm32ELm1EEEj +000000000018bff8 g DF .text 000000000000003c _ZN2nn5audio16ReleaseVoiceSlotEPNS0_19AudioRendererConfigEPNS0_9VoiceTypeE +0000000000154854 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm4EEEEEELm0ELm1ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_24BufferClientArgumentTypeEj +00000000001b0328 g DF .text 00000000000000a8 _ZN2nn5audio21SrcInitBandlimitedSrcEPNS0_14UpsamplerStateEi +00000000001575a8 g DF .text 00000000000000c0 _ZN2nn4nifm6detail42ConvertNetworkProfileBasicInfoToSfFromNifmEPNS1_2sf23NetworkProfileBasicInfoERKNS0_23NetworkProfileBasicInfoE +0000000000001878 g DF .text 0000000000000078 _ZN2nn6crypto21GenerateHmacSha256MacEPvmPKvmS3_m +00000000003666c4 w DF .text 00000000000000a8 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE5eraseEmm +0000000000804b50 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi27EE4MaskE +00000000000cdf90 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_SetGpuTimeSliceBoostEm +00000000001c9f3c g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard17UnsetUserWordInfoEv +0000000000329bfc w DF .text 0000000000000064 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4swapERS3_ +00000000001e78a0 g DF .text 0000000000000028 fract_arg +00000000003a7d88 w DF .text 000000000000008c readdir64 +0000000000133154 g DF .text 0000000000000060 _ZN2nn4htcs7ConnectEiPKNS0_12SockAddrHtcsE +000000000014f814 w DF .text 0000000000000124 _ZN2nn3ngc6detail3Set17SetPrivateDeleterclEPNS2_10SetPrivateE +00000000007c7b60 w DO .rodata 0000000000000147 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000025e4a0 g DF .text 00000000000002a4 NvUStrHash +00000000007d7870 w DO .rodata 000000000000002a _ZTSN2nn7friends6detail3ipc15IServiceCreatorE +0000000000156f60 g DF .text 0000000000000004 _ZN2nn4nifm23TemporaryNetworkProfileC1ERKNS0_18NetworkProfileDataE +0000000000186f90 g DF .text 0000000000000048 _ZN2nn5audio9RemoveAuxEPNS0_19AudioRendererConfigEPNS0_7AuxTypeEPNS0_10SubMixTypeE +00000000002a47e0 g DF .text 0000000000000034 _ZN7android14IPCThreadStateC1Ev +00000000000c6c80 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000002b3a4c g DF .text 0000000000000074 _ZN7android12ConsumerBase13abandonLockedEv +000000000006f138 g DF .text 000000000000004c _ZN2nn4lmem23GetExpHeapTotalFreeSizeEPNS0_6detail8HeapHeadE +00000000000b4914 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE25_nn_sf_sync_ListOpenUsersERKNS0_8OutArrayINS5_3UidEEE +000000000094be30 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007e0f00 w DO .rodata 00000000000001a1 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000000c563c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ISystemAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000024e85c w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000004b4e8 w DF .text 0000000000000058 _ZN2nn2fs26FileStorageBasedFileSystemD2Ev +0000000000230ce8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E33_nn_sf_sync_DeactivateSleepButtonEv +0000000000323e68 g DF .text 0000000000000138 _ZNSt3__112__rs_defaultclEv +00000000000d27b0 g DF .text 0000000000000008 _ZN2nn6applet20GetLibraryAppletModeENS0_19LibraryAppletHandleE +00000000002c3a14 g DF .text 0000000000000024 _ZN7android14SurfaceControl4showEv +0000000000146804 g DF .text 000000000000004c _ZN2nn3ngc6detail12BinaryWriter4OpenEPNS1_12OutputStreamE +00000000003c2e54 w DF .text 0000000000000024 isxdigit_l +0000000000122270 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo10GetMiiNameEv +0000000000156d20 g DF .text 0000000000000054 _ZN2nn4nifm31SetWirelessCommunicationEnabledEb +000000000015ec8c g DF .text 00000000000000a0 _ZN2nn4pctl18PairingAccountInfo11GetNicknameEPcm +0000000000230d88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E42_nn_sf_sync_SetCaptureButtonAutoPilotStateENS5_5debug27CaptureButtonAutoPilotStateE +000000000036bdd8 g DF .text 0000000000000010 _ZTv0_n24_NSt3__110istrstreamD1Ev +000000000036b340 g DF .text 0000000000000054 _ZNSt3__112strstreambufC1EPFPvmEPFvS1_E +00000000000b1b84 g DF .text 0000000000000070 _ZN2nn7account15ShowUserCreatorEv +0000000000001d28 g DF .text 0000000000000014 _ZNK2nn6crypto6detail6BigNum3GetEPvm +000000000095a2e0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +0000000000045d90 g DF .text 00000000000000c4 _ZN2nn4diag6detail23GetModuleInfoForHorizonEPPKcPmS5_m +00000000000a1a8c g DF .text 0000000000000004 nnsocketSendTo +00000000001cb69c g DF .text 0000000000000088 _ZN2nn5swkbd6detail18InlineKeyboardImpl21CalcDecidedEnterUtf8_ENS_6applet13StorageHandleEm +00000000001259f0 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_GetBlockedUserListIdsENS0_3OutIivEERKNS0_8OutArrayINS_7account23NetworkServiceAccountIdEEERKNSO_3UidEi +0000000000158510 g DF .text 0000000000000008 _ZNK2nn4nifm6detail12HttpResponse9GetLengthEv +00000000002cb018 g DF .text 0000000000000074 _ZNK7android4RectltERKS0_ +000000000014bb1c g DF .text 0000000000000060 _ZN2nn3ngc6detail7SbvRank5ResetEv +000000000022e2fc g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm16EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +000000000016bfc0 g DF .text 0000000000000070 _ZN2nn8settings6detail30SetExternalSteadyClockSourceIdERKNS_4util4UuidE +0000000000803eb0 w DO .rodata 0000000000000057 _ZTSN2nn3hid6detail8RingLifoINS0_6system15NpadSystemStateELi16ENS1_13AtomicStorageIS4_EEEE +0000000000318c2c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E20_nn_sf_sync_SetResetEib +00000000000ba844 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEE24_nn_sf_sync_GetImageSizeENS0_3OutIjvEE +0000000000168dcc g DF .text 0000000000000044 _ZN2nn8settings6system29SetErrorReportSharePermissionENS1_26ErrorReportSharePermissionE +0000000000174c60 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetAutoUpdateEnableFlagENS0_3OutIbvEE +0000000000361094 g DF .text 0000000000000004 _ZNSt3__121__undeclare_reachableEPv +00000000000bf0b4 g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService9GetGenderEPm +000000000026cda4 g DF .text 0000000000000008 NvRmSyncCreateFromSemaphores +00000000003e7d0c g DF .text 0000000000000018 __nnmusl_SetThreadName +00000000001a7b34 g DF .text 0000000000000004 _ZN2nn5audio6server6detail26SetAudioDeviceOutputVolumeEPKNS0_15AudioDeviceNameEfRKNS_6applet20AppletResourceUserIdEj +000000000097b2b0 g DO .data 0000000000000018 _ZTINSt3__114__codecvt_utf8IDiEE +000000000094f9f0 w DO .data 0000000000000018 _ZTIN2nn4bcat6detail3ipc12IBcatServiceE +000000000006a9c8 g DF .text 0000000000000094 _ZN2nn2fs23SaveDataTransferManager12GetChallengeEPvm +00000000002020b8 g DF .text 0000000000000108 FsLtt_done +000000000024cb90 g DF .text 000000000000000c _ZN2nn5album10InitializeEv +000000000097dd00 g DO .data 0000000000000020 _ZTIPKa +00000000000c5730 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE29_nn_sf_sync_GetSelfControllerENS0_3OutINS0_13SharedPointerINS6_15ISelfControllerEEEvEE +000000000097dbc0 g DO .data 0000000000000020 _ZTIPKb +000000000097dc60 g DO .data 0000000000000020 _ZTIPKc +0000000000199ed8 g DF .text 000000000000005c _ZN2nn5audio42RequestSuspendFinalOutputRecordersForDebugENS_6applet20AppletResourceUserIdE +000000000097e110 g DO .data 0000000000000020 _ZTIPKd +0000000000288f30 g DF .text 0000000000000004 NvRmGpuDebugDumpObjectTree +000000000097e160 g DO .data 0000000000000020 _ZTIPKe +00000000002cb0dc g DF .text 000000000000002c _ZNK7android4RectplERKNS_5PointE +000000000097e0c0 g DO .data 0000000000000020 _ZTIPKf +000000000097e1b0 g DO .data 0000000000000020 _ZTIPKg +00000000000a01c8 g DF .text 0000000000000078 _ZN2nn2sf4hipc23WaitClientRequestHandleENS_3svc6HandleEPvm +000000000097dcb0 g DO .data 0000000000000020 _ZTIPKh +0000000000121da4 g DF .text 0000000000000058 _ZN2nn7friends12AsyncContext7HasDoneEPb +00000000001a2b30 g DF .text 000000000000001c _ZN2nn5audio6server9DelayInfo26UpdateForCommandGenerationEv +000000000097ddf0 g DO .data 0000000000000020 _ZTIPKi +00000000001748a4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_SetUsb30EnableFlagEb +0000000000315600 g DF .text 0000000000000060 _ZN2nn4gpio25GetWakeEventActiveFlagSetEv +000000000097de40 g DO .data 0000000000000020 _ZTIPKj +000000000013f3a0 g DF .text 00000000000000d0 _ZN2nn3nfp15GetRegisterInfoEPNS0_19RegisterInfoPrivateERKNS0_12DeviceHandleE +00000000001bcd88 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetNoseTypeEi +0000000000959640 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +0000000000216580 g DF .text 0000000000000070 _ZN2nn3hid5debug6detail36GetAvailableFirmwareVersionForRevertEPNS0_6system15FirmwareVersionENS3_11UniquePadIdE +000000000023c294 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E34_nn_sf_sync_RunClusteringProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleERKNS5_31PackedClusteringProcessorConfigE +00000000003967b8 g DF .text 000000000000005c _ZNSt13runtime_errorD0Ev +000000000097de90 g DO .data 0000000000000020 _ZTIPKl +00000000002533a8 g DF .text 000000000000001c _ZN2nn3web20LobbyPageReturnValueC1Ev +000000000097dee0 g DO .data 0000000000000020 _ZTIPKm +00000000001b5bbc g DF .text 0000000000000028 _ZN2nn3mii16CharInfoAccessorC2ERKNS0_8CharInfoE +0000000000255b90 g DF .text 0000000000000084 _ZNK2nn3web16ShowSharePageArg15PushToInChannelENS_6applet19LibraryAppletHandleE +000000000097dfd0 g DO .data 0000000000000020 _ZTIPKn +00000000001c652c w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E15_nn_sf_sync_GetENS0_3OutIivEERKNS0_8OutArrayINS5_15CharInfoElementEEEi +000000000097e020 g DO .data 0000000000000020 _ZTIPKo +00000000003c94ec g DF .text 0000000000000144 exp2f +00000000001a2544 g DF .text 0000000000000008 _ZN2nn5audio6server12BehaviorInfo10ClearErrorEv +000000000022db78 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm9EEEiPNS0_16TouchScreenStateIXT_EEEi +000000000033ab6c w DF .text 000000000000048c _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIeEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000000b7880 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE22_nn_sf_sync_GetProfileENS0_3OutINS0_13SharedPointerINS5_7profile8IProfileEEEvEERKNS5_3UidE +00000000001a7970 g DF .text 0000000000000030 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl32GetActiveAudioDeviceNameInternalERKNS_2sf9OutBufferE +00000000000ac5f8 g DF .text 00000000000000cc _ZN2nn6socket8resolver3tls16GetCreateTLSPairERPNS2_30ResolverThreadLocalStoragePairE +000000000097dd50 g DO .data 0000000000000020 _ZTIPKs +00000000001815fc w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E32_nn_sf_sync_LoadLocationNameListENS0_3OutIivEERKNS0_8OutArrayINSL_12LocationNameEEEi +000000000097dda0 g DO .data 0000000000000020 _ZTIPKt +000000000023aabc g DF .text 0000000000000018 _ZN2nn8irsensor28CheckFirmwareUpdateNecessityEPbRKNS0_14IrCameraHandleE +00000000003c9630 g DF .text 00000000000002e0 exp2l +0000000000040268 g DF .text 0000000000000064 _ZN2nn4util30ConvertStringUtf8ToUtf16NativeEPtiPKc +000000000097db20 g DO .data 0000000000000020 _ZTIPKv +00000000000bf19c g DF .text 0000000000000008 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService27IsLinkedWithNintendoNetworkEv +00000000000d0b48 g DF .text 0000000000000094 _ZN2nn3apm22GetLastThrottlingStateEPNS0_15ThrottlingStateE +000000000031682c w DF .text 00000000000001b0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm4ELm4ELl4EEENSD_ILm2ELm2ELl0EEENSD_ILm4ELm4ELl8EEENSD_ILm4ELm4ELl12EEEEEELm16ELm0ELb0EEESI_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSN_23InRawClientArgumentTypeILm4ELm4EvEENSP_ILm2ELm2EvEESQ_SQ_jPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000097dc10 g DO .data 0000000000000020 _ZTIPKw +000000000009bc48 g DF .text 0000000000000014 _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor22GetPointerReceiveIndexEi +000000000018ffb4 g DF .text 000000000000006c _ZN2nn5audio31GetAudioOutsProcessMasterVolumeEPfNS_6applet20AppletResourceUserIdE +000000000097df30 g DO .data 0000000000000020 _ZTIPKx +000000000097df80 g DO .data 0000000000000020 _ZTIPKy +000000000022ce74 g DF .text 000000000000004c _ZN2nn3hid24SetAccelerometerPlayModeERKNS0_19SixAxisSensorHandleERKNS0_21AccelerometerPlayModeE +0000000000117cdc g DF .text 0000000000000008 _ZNK2nn5codec30HardwareOpusMultiStreamDecoder13GetSampleRateEv +000000000019fad0 g DF .text 0000000000000190 _ZN2nn5audio6server16CommandGenerator21GenerateVoiceCommandsEv +0000000000045268 g DF .text 0000000000000004 _ZN2nn4diag15OnResultRethrowENS_6ResultERKNS0_10SourceInfoE +0000000000942f40 w DO .data 0000000000000010 _ZTIN2nn2fs3fsa25ICommonMountNameGeneratorE +00000000003987ec g DF .text 000000000000005c __cxa_current_exception_type +000000000095ba10 w DO .data 0000000000000018 _ZTIN2nn3hid6detail15NpadFullKeyLifoE +00000000001a4d40 g DF .text 0000000000000008 _ZNK2nn5audio6server12SinkInfoBase7GetTypeEv +00000000001e4f54 g DF .text 0000000000000180 resetCIDdicts +00000000000905e4 g DF .text 0000000000000018 _ZN2nn2os13SuspendThreadEPNS0_10ThreadTypeE +00000000000b078c g DF .text 0000000000000040 _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfI7in_addrEEmPPKT_Rj +000000000032afd0 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERPv +000000000010c0c4 g DF .text 000000000000008c opus_packet_get_nb_samples +0000000000359590 g DF .text 000000000000000c _ZNKSt3__115__codecvt_utf16IDsLb0EE10do_unshiftER11__mbstate_tPcS4_RS4_ +000000000016bd20 g DF .text 0000000000000070 _ZN2nn8settings6detail23SetOverlayDispProgramIdERKNS_3ncm9ProgramIdE +000000000036b620 g DF .text 0000000000000094 _ZNSt3__112strstreambufC2EPhlS1_ +000000000021f8ec g DF .text 0000000000000008 _ZN2nn3hid6detail20SharedMemoryAccessor35SetResultDeactivationLowerLimitOverENS_6ResultE +000000000035e7b4 g DF .text 000000000000004c _ZNSt3__112ctype_bynameIwED2Ev +0000000000123a00 g DF .text 0000000000000158 _ZN2nn7friends13FriendSetting18ChangeFavoriteFlagEPNS0_12AsyncContextEb +00000000002c38c0 g DF .text 0000000000000034 _ZN7android14SurfaceControl13isSameSurfaceERKNS_2spIS0_EES4_ +00000000000c66dc w DF .text 00000000000001c0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm1ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_27OutHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEEj +00000000000c9128 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17_nn_sf_sync_StartEv +0000000000154be8 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm194EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +000000000027490c g DF .text 0000000000000004 NvRmChannelSyncPointFree +00000000003e620c g DF .text 00000000000000b4 __nnmusl_acquire_cwd_and_adjust_path +00000000002cd808 g DF .text 0000000000000210 _ZN7android7RefBase12weakref_type16attemptIncStrongEPKv +000000000003c7f0 g DF .text 0000000000000008 _ZN2nn4util17DecompressDeflateEPvmPKvmS1_m +000000000008fcd4 g DF .text 0000000000000004 _ZNK2nn2os21SdkRecursiveMutexType23IsLockedByCurrentThreadEv +00000000000b9e18 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE36_nn_sf_sync_GetProfileUpdateNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +00000000007ce6e0 w DO .rodata 000000000000010c _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000009458c0 g DO .data 0000000000000018 _ZTIN2nn2os6detail31MultiWaitHolderOfInterruptEventE +000000000010a690 g DF .text 00000000000003e0 opus_decode_native +00000000001bc880 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw13GetGlassScaleEv +00000000001d421c g DF .text 0000000000000100 _ZN2nn2vi18CloseIndirectLayerEPNS0_13IndirectLayerE +000000000097d0e0 g DO .data 0000000000000018 _ZTINSt3__112strstreambufE +00000000000a7844 w DF .text 000000000000020c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEENSB_ILm4ELm4ELl8EEEEEELm4ELm12ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESQ_NSO_23InRawClientArgumentTypeILm4ELm4EvEENSO_24BufferClientArgumentTypeESQ_j +0000000000956c30 w DO .data 0000000000000018 _ZTIN2nn6aocsrv6detail20IAddOnContentManagerE +00000000001f888c g DF .text 00000000000001a8 fnt_Execute +0000000000946390 w DO .data 0000000000000068 _ZTVN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessageE +000000000017b4d4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_GetIoModeENS0_3OutINS6_6IoModeEvEE +00000000000914d0 g DF .text 0000000000000018 nnosAllocateTlsSlot +000000000017ee5c g DF .text 0000000000000008 _ZNK2nn4time13ClockSnapshot41GetStandardNetworkSystemClockCalendarTimeEv +000000000006770c g DF .text 0000000000000020 _ZN2nn2fs16SaveDataIteratorC2EONS_2sf13SharedPointerINS_5fssrv2sf19ISaveDataInfoReaderEEE +000000000008d4b0 g DF .text 00000000000000d4 _ZN2nn2os14TimedWaitEventEPNS0_9EventTypeENS_8TimeSpanE +0000000000160840 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_SetDefaultRatingOrganizationEi +0000000000230444 g DF .text 0000000000000024 _ZN2nn3hid15VibrationWriterD0Ev +0000000000188dd0 g DF .text 0000000000000070 _ZN2nn5audio15AcquireFinalMixEPNS0_19AudioRendererConfigEPNS0_12FinalMixTypeEi +00000000000733d4 g DF .text 000000000000019c nnmem_nlib_memchr_lt +00000000000c8410 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl4EEENSG_ILm1ELm1ELl0EEEEEELm8ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENSQ_ILm1ELm1EvEEj +00000000001c3338 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetEyeAspectEi +000000000031dfc0 w DF .text 000000000000030c _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIttEEPtEEbT0_S5_T_ +00000000001cb890 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl24SetDecidedCancelCallbackEPFvvE +00000000002323e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E26_nn_sf_sync_DeactivateNpadENS_6applet20AppletResourceUserIdE +00000000001bc848 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetNoseScaleEv +00000000007c5550 w DO .rodata 0000000000000145 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service13ILockAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000182a68 g DF .text 0000000000000024 _ZNK2nn4time6detail20MonotonicSystemClock21GetSystemClockContextEv +000000000032ee40 w DF .text 0000000000000114 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE5seekgExNS_8ios_base7seekdirE +0000000000081ca0 g DF .text 0000000000000004 nnmem_nlib_thread_setpriority +00000000000cb9f8 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_CreateSystemApplicationENS0_3OutINS0_13SharedPointerINS6_20IApplicationAccessorEEEvEENS_3ncm19SystemApplicationIdE +00000000000b9d88 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE49_nn_sf_sync_GetBaasUserAvailabilityChangeNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +000000000022976c g DF .text 0000000000000044 _ZN2nn3hid5debug12FinalizeXpadERKNS0_9JoyXpadIdE +00000000007a418f g DO .rodata 0000000000000013 _ZN2nn6crypto15Sha256Generator20Asn1ObjectIdentifierE +00000000007e5340 w DO .rodata 0000000000000026 _ZTSN2nn8settings21ISystemSettingsServerE +0000000000073708 g DF .text 000000000000015c nnmem_nlib_memchr_mb +00000000000f22a4 g DF .text 0000000000000734 silk_NLSF_del_dec_quant +0000000000214e44 g DF .text 0000000000000070 _ZN2nn3hid6detail23UnsetXpadAutoPilotStateENS0_11BasicXpadIdE +000000000022278c g DF .text 0000000000000208 _ZN2nn3hid6detail20GetTouchScreenStatesILm1EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +000000000022fbe4 g DF .text 0000000000000024 _ZN2nn3hid15VibrationPlayerD0Ev +00000000003c2d98 g DF .text 0000000000000028 iswupper +00000000000cb854 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IApplicationCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000008058f4 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout5DutchE +000000000009a1e0 g DF .text 0000000000000094 _ZN2nn2sf4cmif6server23CmifServerDomainManager14EntryAllocatorC1EPNSt3__115aligned_storageILm48ELm8EE4typeEi +000000000004b104 g DF .text 00000000000000d4 _ZN2nn2fs26FileStorageBasedFileSystem10InitializeENSt3__110shared_ptrINS0_3fsa11IFileSystemEEEPKcNS0_8OpenModeE +00000000001bebc0 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetRegionMoveEv +00000000003e54f4 g DF .text 0000000000000118 __nnmusl_FileSeek +0000000000091454 g DF .text 0000000000000004 nnosTryWaitInterruptEvent +00000000001b9f6c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetBeardTypeEi +00000000002caf78 g DF .text 0000000000000064 _ZN7android19GraphicBufferMapper10copyBufferEPK13native_handleS3_Pi +0000000000165e90 g DF .text 0000000000000028 _ZN2nn5prepo6detail17VerifyStringValueEPKcm +0000000000190374 g DF .text 0000000000000074 _ZN2nn5audio36SetAudioRenderersProcessMasterVolumeENS_6applet20AppletResourceUserIdEfNS_8TimeSpanE +0000000000197bd0 g DF .text 0000000000000120 _ZN2nn5audio39AcquireAudioDeviceNotificationForOutputEPNS_2os11SystemEventE +000000000016cf04 g DF .text 0000000000000070 _ZN2nn8settings6detail23SetAutoUpdateEnableFlagEb +000000000035959c g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDsLb0EE11do_encodingEv +0000000000284868 g DF .text 0000000000000084 NvDdkVicFreeSession +000000000009c35c g DF .text 00000000000000e4 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase12WaitSignaledEv +00000000007d3f4a g DO .rodata 0000000000000003 silk_nb_cbk_searchs_stage3 +0000000000188fe0 g DF .text 0000000000000028 _ZN2nn5audio23RequestDetachMemoryPoolEPNS0_14MemoryPoolTypeE +00000000001a5668 g DF .text 0000000000000024 _ZN2nn5audio6server9VoiceInfoC2Ev +000000000017d4b8 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_7timesrv6detail7service12ISystemClockEED2Ev +000000000015d8f0 g DF .text 000000000000006c _ZN2nn4pctl34ConfirmResumeApplicationPermissionENS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyE +0000000000001a3c w DF .text 0000000000000144 _ZN2nn6crypto6detail8HmacImplINS0_15Sha256GeneratorEE6GetMacEPvm +000000000003f234 g DF .text 00000000000000d0 _ZN2nn4util13TFormatStringEPFvmPKciEmS2_z +0000000000090ff4 g DF .text 0000000000000018 nnosFreeMemoryForThreadLocal +000000000015aedc w DF .text 00000000000000f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEEEEELm0ELm1ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEEj +000000000025e320 g DF .text 000000000000007c NvUHashNextEntry +000000000008ce7c g DF .text 000000000000003c _ZN2nn2os17InitializeBarrierEPNS0_11BarrierTypeEi +00000000000a1884 g DF .text 0000000000000004 _ZN2nn6socket6SendToEiPKvmiPK8sockaddrj +0000000000264b90 g DF .text 0000000000000004 NvOsCancelFpsTarget +0000000000002cb8 g DF .text 000000000000003c _ZN2nn6crypto6detail13bigint_iszeroEPKji +000000000011b8f4 g DF .text 0000000000000008 _ZN2nn3err14SystemErrorArg12SetErrorCodeENS0_9ErrorCodeE +00000000001edb84 g DF .text 0000000000000a68 pixelbold_graymap2 +000000000094ca00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000000d5970 g DF .text 00000000000000f8 _ZN2nn4bcat13SetPassphraseENS_13ApplicationIdEPKc +00000000001aa440 g DF .text 0000000000000004 _ZN2nn5audio3dsp14MapUserPointerENS0_7CpuAddrEm +00000000001ee5ec g DF .text 0000000000000a6c pixelbold_graymap4 +0000000000365bec w DF .text 0000000000000048 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendERKS5_mm +00000000000cebec w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_EnableApplicationCrashReportEb +00000000009ef980 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEE8_globalsE +00000000001692a0 g DF .text 0000000000000044 _ZN2nn8settings15GetLanguageCodeEPNS0_12LanguageCodeE +000000000095d1e8 w DO .data 0000000000000058 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000000571ec w DF .text 000000000000013c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000001ef058 g DF .text 0000000000000c2c pixelbold_graymap8 +00000000001c81a4 g DF .text 00000000000000a0 _ZN2nn2pl20GetSharedFontAddressENS0_14SharedFontTypeE +0000000000198d28 g DF .text 000000000000000c _ZN2nn5audio16IsAudioInEnabledEv +000000000094cc80 w DO .data 0000000000000018 _ZTIN2nn2am7service25IProcessWindingControllerE +000000000011baf0 g DF .text 000000000000001c _ZN2nn3err6detail30MakeApplicationErrorCodeStringEPcmRKNS_2ns28ApplicationErrorCodeCategoryEj +0000000000163370 g DF .text 000000000000003c _ZN2nn4pctl6detail33ShowAuthenticatorForConfigurationEv +0000000000084050 g DF .text 00000000000000e8 _ZN2nn7nlibsdk4heap14TlsHeapCentral9FreePagesEPNS1_4SpanE +00000000001879dc g DF .text 000000000000001c _ZN2nn5audio18GetReverbEarlyGainEPKNS0_10ReverbTypeE +0000000000091bdc g DF .text 0000000000000054 _ZN2nn2os6detail13ThreadManager11StartThreadEPNS0_10ThreadTypeE +00000000001412b0 g DF .text 000000000000001c _ZN2nn3ngc15ProfanityFilter10InitializeEPvm +00000000003e75f8 g DF .text 0000000000000020 __nnmusl_InitializeConditionVariable +00000000001738d0 w DF .text 00000000000000f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm1ELl0EEEEEELm0ELm8ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm1EEEj +0000000000959690 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +000000000020d5f0 g DF .text 0000000000000040 get_embedded_graymap +00000000000cc100 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19ILibraryAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_OpenLibraryAppletSelfAccessorENS0_3OutINS0_13SharedPointerINS6_26ILibraryAppletSelfAccessorEEEvEE +0000000000215290 g DF .text 00000000000001d0 _ZN2nn3hid6detail22GetCaptureButtonStatesEPiPNS0_6system18CaptureButtonStateEi +000000000080c900 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail15HidSystemServerEEEEEE13ServiceObjectE +0000000000802710 w DO .rodata 00000000000000b3 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000810f60 w DO .rodata 000000000000002f _ZTSN2nn6capsrv2sf29IScreenShotApplicationServiceE +0000000000823420 g DO .rodata 000000000000001c _ZTSNSt3__114collate_bynameIcEE +0000000000002fa4 g DF .text 0000000000000090 _ZN2nn6crypto6detail14bigint_add_modEPjPKjS4_S4_i +00000000000878c8 g DF .text 0000000000000634 _ZN2nn7nlibsdk4heap14TlsHeapCentral18ReallocLargeMemoryEPvmPS3_ +00000000008057f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi224EE4MaskE +0000000000205780 g DF .text 00000000000001bc copy_outline +0000000000354700 w DF .text 0000000000000104 _ZNSt3__1plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EEPKS6_RKS9_ +000000000023ae34 g DF .text 0000000000000044 _ZN2nn8irsensor25RunImageTransferProcessorERKNS0_14IrCameraHandleERKNS0_28ImageTransferProcessorConfigEPvm +0000000000398b84 g DF .text 0000000000000020 __cxa_uncaught_exceptions +00000000000cbfd8 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE39_nn_sf_sync_GetProcessWindingControllerENS0_3OutINS0_13SharedPointerINS6_25IProcessWindingControllerEEEvEE +0000000000124b58 g DF .text 0000000000000030 _ZNK2nn7friends6detail20AsyncContextInternal9GetResultEv +0000000000323ddc g DF .text 000000000000002c _ZNSt3__112__rs_defaultC1Ev +00000000003c25f4 g DF .text 0000000000000010 isdigit +000000000022d1fc g DF .text 0000000000000044 _ZN2nn3hid5debug33GetShiftGyroscopeCalibrationValueEPfS2_RKNS0_19SixAxisSensorHandleE +00000000001a4d34 g DF .text 0000000000000004 _ZN2nn5audio6server12SinkInfoBase26UpdateForCommandGenerationEv +00000000002131dc g DF .text 00000000000002a0 kill_fntset +000000000022ff30 g DF .text 0000000000000040 _ZN2nn3hid15VibrationPlayer18SetLoopEndPositionEi +00000000002b8a38 g DF .text 0000000000000038 _ZN7android16ISurfaceComposerD0Ev +000000000016bc40 g DF .text 0000000000000070 _ZN2nn8settings6detail31SetInitialSystemAppletProgramIdERKNS_3ncm9ProgramIdE +00000000009ef7b0 g DO .bss 0000000000000008 _ZN2nn4time22g_pStandardSteadyClockE +000000000023e9a0 w DF .text 0000000000000374 _ZN22nerd_gillette_internal5otete7jaimev19SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_22FullFrameShapeInPacketERT_ +0000000000046f00 g DF .text 0000000000000020 _ZN2nn2fs6detail24IsEnabledHandleAccessLogENS0_10FileHandleE +000000000095c9f0 g DO .data 0000000000000018 _ZTIN2nn3hid15VibrationWriterE +00000000003e1d64 g DF .text 00000000000000dc __stpncpy +00000000000446e8 g DF .text 000000000000000c _ZN2nn4diag26SetAssertionFailureHandlerEPFNS0_25AssertionFailureOperationERKNS0_13AssertionInfoEE +000000000016c260 g DF .text 0000000000000070 _ZN2nn8settings6detail25SetUserSystemClockContextERKNS_4time18SystemClockContextE +000000000004e7ec g DF .text 0000000000000078 _ZN2nn2fs7UnmountEPKc +000000000002da9c g DF .text 000000000000007c _ZN2nn5image6detail17ExtractExifRegionEPPKvPmS3_m +0000000000090798 g DF .text 0000000000000034 _ZN2nn2os19AllocateMemoryBlockEPmm +000000000002f5c0 g DF .text 0000000000000048 _ZN2nn5image11ExifBuilderC2EPvm +00000000001d3990 g DF .text 0000000000000070 _ZN2nn2vi14GetDisplayModeEPNS0_15DisplayModeInfoEPKNS0_7DisplayE +000000000007042c g DF .text 000000000000000c _ZN2nn4lmem6detail26GetMemoryBlockHeapAllocDirEPKv +0000000000954220 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000003cc08 g DF .text 0000000000000164 _ZN2nn4util6detail16IntrusiveDicImpl9EraseImplEPNS0_16IntrusiveDicNodeE +0000000000122de0 g DF .text 0000000000000008 _ZNK2nn7friends7Profile11GetNicknameEv +00000000001505f4 g DF .text 0000000000000174 _ZN2nn4nifm6detail13RequestClientC1ENS0_17RequirementPresetENS_2os14EventClearModeE +000000000018a4a8 g DF .text 0000000000000030 _ZN2nn5audio26SetDownMixParameterEnabledEPNS0_14DeviceSinkTypeEb +00000000000522e0 g DF .text 00000000000000d0 _ZN2nn2fs6detail9MountDataEPKcNS_3ncm6DataIdENS4_9StorageIdE +0000000000156ec4 g DF .text 0000000000000004 _ZN2nn4nifm17NetworkConnection15GetRequestStateEv +00000000007e8c40 w DO .rodata 0000000000000041 _ZTSN2nn3ntc6detail7service38IEnsureNetworkClockAvailabilityServiceE +0000000000804e90 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi53EE4MaskE +0000000000362254 g DF .text 000000000000003c _ZNSt3__118shared_timed_mutexC2Ev +0000000000947740 w DO .data 0000000000000018 _ZTIN2nn7account4baas18IGuestLoginRequestE +0000000000264af8 g DF .text 0000000000000008 NvOsSemaphoreClone +00000000000b2450 g DF .text 0000000000000048 _ZN2nn7account6detail24SimpleOAuthProcedureBase4SwapERS2_ +00000000000c9dac w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service8IStorageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000000a5c78 g DF .text 0000000000000020 _ZN2nn6socket6detail26DestroyClientServiceByHipcEPNS_2sf13SharedPointerINS0_2sf7IClientEEE +00000000001327fc w DF .text 000000000000029c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSK_ILi1ELi33ELm0EEENSC_20InHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSP_ILm4ELm4ELl0EEEEEELm16ELm4ELb0EEESS_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutHandleClientArgumentTypeENS2_24BufferClientArgumentTypeES12_NS2_26InHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENS14_ILm4ELm4EvEEj +000000000016debc g DF .text 0000000000000070 _ZN2nn8settings6detail18GetGyroscopeOffsetEPNS0_7factory15GyroscopeOffsetE +00000000001e06c4 g DF .text 00000000000002dc FSS_get_font_path +00000000002636d8 g DF .text 000000000000002c NvOsConditionDestroy +0000000000944cc0 w DO .data 0000000000000018 _ZTIN2nn3tma11IHtcManagerE +00000000007e5dc0 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_EE +000000000025e744 g DF .text 000000000000001c NvUStrCompare +0000000000823ea0 w DO .rodata 000000000000001d _ZTSNSt3__115messages_bynameIwEE +00000000003e7bcc g DF .text 0000000000000058 __nnmusl_pthread_once +0000000000286d9c g DF .text 000000000000000c NvRmGpuChannelCycleStatsDetachSnapshot +00000000007e7560 w DO .rodata 0000000000000183 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000210134 g DF .text 00000000000001cc any_used_lfnt_table_ptrs +00000000001b2ac8 g DF .text 0000000000000094 _ZN2nn2ec6detail33GetShopPageReturnValueFromStorageEPNS1_19ShopPageReturnValueERKNS_6applet13StorageHandleE +00000000001cd148 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000156e54 g DF .text 0000000000000014 _ZN2nn4nifm17NetworkConnectionC1ENS_2os14EventClearModeE +0000000000318f98 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm12ELm4ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm12ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm12ELm4EEENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000003a876c g DF .text 000000000000003c __lctrans_impl +00000000001c5b18 g DF .text 000000000000003c _ZN2nn3mii15PrivateDatabase3GetEPiPNS0_16StoreDataElementEii +00000000001a3220 g DF .text 00000000000000ac _ZNK2nn5audio6server10PoolMapper11FillDspAddrEPNS1_11AddressInfoEPNS1_14MemoryPoolInfoEi +00000000007c8ea0 w DO .rodata 0000000000000148 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000016ac40 g DF .text 0000000000000044 _ZN2nn8settings6system20SetAppletLaunchFlagsERKNS_4util10BitFlagSetILi32ENS1_16AppletLaunchFlagEEE +000000000008e7c4 g DF .text 0000000000000008 _ZN2nn2os20FinalizeMessageQueueEPNS0_16MessageQueueTypeE +00000000000c1838 g DF .text 0000000000000084 _ZN2nn7account42NintendoAccountAuthorizationRequestContext8GetStateEPmPcm +0000000000262df4 g DF .text 0000000000000088 NvOsHeapAllocatorSetCallbacks +000000000011d4c4 g DF .text 000000000000010c _ZN2nn7friends18GetBlockedUserListEPiPNS_7account23NetworkServiceAccountIdERKNS2_3UidEii +0000000000256de8 g DF .text 0000000000000008 _ZNK2nn3web18WebPageReturnValue16GetWebExitReasonEv +00000000000641ec g DF .text 000000000000011c _ZN2nn2fs15ResumeMmcPatrolEv +0000000000212164 g DF .text 00000000000000b0 swap_ttf_header +00000000007b1040 w DO .rodata 0000000000000018 _ZTSN2nn2fs13MemoryStorageE +00000000003c25ac g DF .text 0000000000000018 __isblank_l +000000000015b878 g DF .text 0000000000000088 _ZN2nn2oe23EndMediaPlaybackSectionEv +0000000000177920 g DF .text 0000000000000004 _ZN2nn3ssl7ContextD2Ev +00000000001e2bc8 g DF .text 00000000000000c8 FSS_end_client +0000000000082dd0 w DF .text 00000000000000f0 _ZN2nn7nlibsdk4heap12TlsHeapCache18FreeFuncSize_Mode0INSt3__117integral_constantIbLb0EEEEEiPS2_Pvm +000000000036113c g DF .text 0000000000000040 _ZNSt3__15mutex6unlockEv +00000000000d4d58 g DF .text 0000000000000078 _ZNK2nn4bcat8FileName7IsValidEv +0000000000959f28 w DO .data 0000000000000070 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000000899d4 g DF .text 000000000000000c _ZN2nn7nlibsdk4heap10CachedHeap5AllocEm +000000000019d094 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E31_nn_sf_sync_ListAudioDeviceNameERKNS0_9OutBufferENS0_3OutIivEE +0000000000230a00 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14HidDebugServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000000c4dd0 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_2am7service30IAllSystemAppletProxiesServiceENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +000000000011c350 g DF .text 0000000000000180 _ZN2nn3err6detail15ReadMessageFileEPDsPimNS0_9ErrorCodeENS_8settings12LanguageCodeENS1_11MessageKindE +000000000021d48c g DF .text 0000000000000074 _ZN2nn3hid6detail17GetNpadDeviceTypeEPNS_4util10BitFlagSetILi32ENS0_6system10DeviceTypeEEERKj +000000000022c464 g DF .text 0000000000000064 _ZN2nn3hid13GetNpadStatesEPNS0_16NpadJoyLeftStateEiRKj +000000000095b7e0 g DO .data 0000000000000010 _ZTIN2nn3hid6detail7SessionE +0000000000156f7c g DF .text 0000000000000018 _ZN2nn4nifm23TemporaryNetworkProfile6UpdateERKNS0_18NetworkProfileDataE +00000000001c7a64 g DF .text 0000000000000080 _ZN2nn3mii14AppendMiiImageEPiPKNS_4util4UuidEi +0000000000214234 g DF .text 0000000000000078 _ZN2nn3hid6detail25SetAruidValidForVibrationERKNS_6applet20AppletResourceUserIdEb +0000000000173ff8 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_SetNetworkSettingsERKNS0_7InArrayINS5_6system15NetworkSettingsEEE +00000000001b9c58 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw11SetEyebrowXEi +00000000001c8dfc g DF .text 000000000000003c _ZN2nn5swkbd18ConvertUtf8ToUtf16EPviPKci +00000000000acc30 g DF .text 0000000000000008 _ZN2nn6socket8resolver20GetDnsAddressPrivateEjR11sockaddr_in +00000000001d6590 g DF .text 00000000000000f8 _ZN2nn2vi6detail18SystemServiceProxy47InitializeIndirectDisplayTransactionServiceImplEv +000000000017434c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E43_nn_sf_sync_SetConsoleInformationUploadFlagEb +0000000000947d38 w DO .data 0000000000000168 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000000cb8b4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000ccfc4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E21_nn_sf_sync_BeginTrimERKNS5_11GameMovieIdEii +00000000003e6db0 g DF .text 000000000000007c __nnmusl_ClockGetTime +00000000000650e0 g DF .text 000000000000026c _ZN2nn2fs22QueryMountRomCacheSizeEPmNS_13ApplicationIdE +0000000000237ac0 g DF .text 000000000000013c _ZN2nn8irsensor6detail26GetPointingProcessorStatesEPNS0_28PointingProcessorMarkerStateEPiiRKNS0_14IrCameraHandleE +000000000004124c g DF .text 0000000000000018 _ZN2nn4diag6detail10nnText_spyEPKc +00000000001692e4 g DF .text 0000000000000060 _ZN2nn8settings25GetAvailableLanguageCodesEPNS0_12LanguageCodeEi +000000000021efd4 g DF .text 0000000000000034 _ZN2nn3hid6detail7SessionD0Ev +00000000001b4728 g DF .text 000000000000000c _ZN2nn2la26SetLibraryAppletCreateHookEPFNS0_29LibraryAppletCreateHookResultERKNS0_26LibraryAppletCreateHookArgEE +00000000003290a8 w DF .text 0000000000000054 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC1ERKS3_ +000000000002e704 g DF .text 0000000000000008 _ZNK2nn5image11JpegDecoder20GetAnalyzedDimensionEv +00000000003a7ce8 g DF .text 0000000000000034 closedir +000000000097bf80 w DO .data 0000000000000038 _ZTINSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000001b62a4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor13GetMouthScaleEv +000000000094ff40 w DO .data 0000000000000018 _ZTIN2nn4bcat6detail3ipc30IDeliveryCacheDirectoryServiceE +000000000004cd44 g DF .text 0000000000000034 _ZN2nn2fs6detail17DirectoryAccessor13GetEntryCountEPl +000000000011b720 g DF .text 000000000000002c _ZN2nn3err14SystemErrorArgC2Ev +000000000021a6fc g DF .text 0000000000000064 _ZN2nn3hid6detail21StartLrAssignmentModeEv +000000000031b868 w DF .text 00000000000002cc _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIwwEEPwEEbT0_S5_T_ +000000000024dfdc g DF .text 000000000000009c _ZN2nn5album25GetSharePostedServiceNameEPcmRKNS0_7ShareIdE +000000000004cfd0 g DF .text 0000000000000068 _ZN2nn2fs6detail12FileAccessor5FlushEv +00000000003c9b5c g DF .text 0000000000000014 finite +00000000001cea38 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_PresentSharedFrameBufferENS_2vi7fbshare17SharedLayerHandleElRKNSG_6native10NativeSyncERKNSG_10CropRegionEji +0000000000328d14 w DF .text 0000000000000024 _ZNSt3__19basic_iosIwNS_11char_traitsIwEEED0Ev +0000000000001f50 g DF .text 0000000000000024 _ZN2nn6crypto6detail13bigint_digitsEPKji +00000000000c1210 g DF .text 0000000000000028 _ZN2nn7account28NetworkServiceAccountManagerD2Ev +000000000027b150 g DF .text 00000000000000d4 NvBlitSetDumpPath +00000000003e3ce4 g DF .text 0000000000000050 __gmtime_r +000000000015c698 g DF .text 0000000000000058 _ZN2nn2oe16GetOperationModeEv +00000000001b59f8 g DF .text 00000000000000d4 _ZN2nn2la32NifmToWifiWebAuthArgumentsWriterC2EPKcS3_RKNS_4util4UuidEj +0000000000942ce0 w DO .data 0000000000000010 _ZTIN2nn2fs3fsa11IFileSystemE +0000000000070f90 g DF .text 0000000000000008 _ZN2nn4lmem6detail25GetUnitHeapAllocatedCountEPNS1_8HeapHeadE +0000000000003830 g DF .text 000000000000026c _ZN2nn6crypto6detail21alg_p256_ECDSA_verifyEPKNS1_17p256_ec_signatureEPKvmPKNS1_17p256_ec_parameterEPKNS1_10p256_pointE +0000000000340fbc w DF .text 0000000000000084 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_dateES4_S4_RNS_8ios_baseERjP2tm +000000000015dbbc g DF .text 000000000000005c _ZN2nn4pctl28GetDefaultRatingOrganizationEv +00000000001cd894 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_SetDisplayEnabledEmb +0000000000328ac0 w DF .text 000000000000004c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE8pubimbueERKNS_6localeE +000000000080dc90 w DO .rodata 0000000000000026 _ZTSN2nn8irsensor21IIrSensorSystemServerE +0000000000021924 g DF .text 0000000000000050 _ZN2nn5image6detail4jpeg25jpeg_set_marker_processorEPNS2_22jpeg_decompress_structEiPFbS4_E +000000000002f608 g DF .text 0000000000000004 _ZN2nn5image11ExifBuilderD1Ev +00000000000b28f4 g DF .text 00000000000000f4 _ZN2nn7account10InitializeEv +00000000002730f0 g DF .text 00000000000000fc NvRmStreamPushFdGather +0000000000325474 g DF .text 0000000000000068 _ZNKSt3__111__libcpp_db8__find_cEPv +0000000000823100 g DO .rodata 0000000000000022 _ZTSNSt3__116__narrow_to_utf8ILm16EEE +00000000000c750c w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm4ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeEj +000000000015c1a0 g DF .text 000000000000000c _ZN2nn2oe21GetExpectedThemeColorEv +00000000001d590c g DF .text 0000000000000038 _ZN2nn2vi6detail18IndirectLayerTable4FreeEi +0000000000149448 g DF .text 0000000000000088 _ZNK2nn3ngc6detail2Bp9LastChildEj +0000000000971ef0 g DO .data 0000000000000070 _ZTTN7android17BnSurfaceComposerE +000000000019bb9c g DF .text 0000000000000244 _ZN2nn5audio6server17AudioRenderSystem15GenerateCommandEPvm +000000000019985c g DF .text 00000000000000e4 _ZN2nn5audio21GetAudioInBufferCountEPKNS0_7AudioInE +0000000000a69938 g DO .bss 0000000000000008 _ZN7android9SingletonINS_22GraphicBufferAllocatorEE9sInstanceE +000000000036b730 g DF .text 0000000000000074 _ZNSt3__112strstreambufD1Ev +000000000022d504 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm4EEEvPNS0_16TouchScreenStateIXT_EEE +000000000022e7a4 g DF .text 0000000000000048 _ZN2nn3hid6system26EnableUsbFullKeyControllerEb +000000000022ee88 g DF .text 0000000000000004 _ZN2nn3hid14VibrationMixerD2Ev +00000000000ba388 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E58_nn_sf_sync_ProxyProcedureForGuestLoginWithNintendoAccountENS0_3OutINS0_13SharedPointerINS5_3nas29IOAuthProcedureForExternalNsaEEEvEERKNSJ_4UuidE +0000000000099b48 g DF .text 0000000000000154 _ZN2nn2ro6detail8RoModule15RevertReferenceEPS2_m +000000000004f400 g DF .text 00000000000000ac _ZN2nn2fs10QueryRangeEPNS0_14QueryRangeInfoENS0_10FileHandleEll +00000000007cdf20 w DO .rodata 00000000000000b8 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000153008 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm36ELm4ELl0EEEEEELm0ELm36ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm36ELm4EEEj +00000000001aca7c g DF .text 0000000000000264 _ZN2nn5audio18ReverbProcessFrameEPKNS0_15ReverbParameterEPNS0_11ReverbStateEbPvPPiS8_jb +0000000000190ca8 g DF .text 0000000000000058 _ZN2nn5audio26GetAudioRendererSampleRateENS0_19AudioRendererHandleE +00000000001a7b88 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_17VolumeRampCommandE +00000000001bcd34 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw15SetFacelineTypeEi +00000000000383ac g DF .text 00000000000002cc nnutilZlib_inflateSync +00000000002203bc w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEED2Ev +0000000000091480 g DF .text 0000000000000004 nnosReceiveMessageQueue +0000000000229964 g DF .text 0000000000000048 _ZN2nn3hid6system24SendKeyboardLockKeyEventENS_4util10BitFlagSetILi32ENS1_20KeyboardLockKeyEventEEE +000000000014e0c0 g DF .text 000000000000006c _ZN2nn3ngc6detail9SparseSet16ReleaseAllocatorEv +000000000029a9f0 g DF .text 00000000000001f0 _ZN7android15IServiceManager11asInterfaceERKNS_2spINS_7IBinderEEE +00000000007c4930 w DO .rodata 0000000000000031 _ZTSN2nn2am7service30IAllSystemAppletProxiesServiceE +000000000013a510 g DF .text 0000000000000084 _ZN2nn3nfc13SetNfcEnabledEb +00000000008040c0 w DO .rodata 0000000000000021 _ZTSN2nn3hid6detail14HomeButtonLifoE +0000000000270550 g DF .text 00000000000000ac NvRmMemMove +00000000000edda8 g DF .text 00000000000003f4 alg_quant +00000000003ccf9c g DF .text 0000000000000008 lroundf +0000000000347038 w DF .text 0000000000000044 _ZNKSt3__110moneypunctIwLb0EE16do_negative_signEv +000000000011a60c g DF .text 00000000000000ac _ZN2nn3err9ShowErrorERKNS0_18ErrorResultVariantE +0000000000077364 g DF .text 0000000000000064 nnmem_nlib_log_vprint +00000000003ab23c w DF .text 000000000000003c clock_gettime +000000000005b168 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm96EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +0000000000227f80 g DF .text 0000000000000060 _ZN2nn3hid6detail24GetVibrationMasterVolumeEPf +000000000013a234 g DF .text 00000000000000c4 _ZN2nn3nfc22KeepPassThroughSessionERKNS0_12DeviceHandleE +00000000001badec g DF .text 000000000000007c _ZNK2nn3mii6detail10NicknameLe7IsEmptyEv +00000000002d2b98 g DF .text 0000000000000084 _ZN7android10VectorImpl4pushEPKv +00000000003ccfa4 g DF .text 0000000000000018 lroundl +000000000005ce48 w DF .text 00000000000001d0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSG_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEST_j +000000000095dcc0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_EE +00000000002cede8 g DF .text 0000000000000018 _ZN7android7String8C1ERKS0_ +000000000039fe94 g DF .text 0000000000000038 __divmodsi4 +0000000000274974 g DF .text 0000000000000064 NvRmChannelSetSubmitTimeoutEx +00000000000d96e8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +0000000000126a08 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSI_ILm8ELm8ELl16EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm24ELm4ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm16ELm8EvEENSW_ILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +000000000022e980 g DF .text 0000000000000048 _ZN2nn3hid15PermitVibrationEb +00000000001526ac w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +00000000002322ec w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E39_nn_sf_sync_ResetGyroscopeZeroDriftModeENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +0000000000101d14 g DF .text 0000000000000098 silk_encode_do_VAD_FIX +000000000023add8 g DF .text 0000000000000018 _ZN2nn8irsensor28GetClusteringProcessorStatesEPNS0_24ClusteringProcessorStateEPiiRKNS0_14IrCameraHandleE +00000000001608c4 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E47_nn_sf_sync_GetFreeCommunicationApplicationListENS0_3OutIivEERKNS0_8OutArrayINS5_32FreeCommunicationApplicationInfoEEEi +000000000014d00c g DF .text 000000000000004c _ZN2nn3ngc6detail3Set7TurnOffEj +0000000000227fe0 g DF .text 0000000000000094 _ZN2nn3hid6detail21EnqueueVibrationValueERKNS0_21VibrationDeviceHandleERKNS0_14VibrationValueE +000000000036d800 g DF .text 0000000000000008 _ZNSt3__115__libcpp_tl_getEN2nn2os7TlsSlotE +0000000000038894 g DF .text 000000000000080c nnutilZlib_inflate_table +00000000001a0c74 g DF .text 0000000000000070 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_21MixRampGroupedCommandE +000000000023ad7c g DF .text 0000000000000044 _ZN2nn8irsensor22RunClusteringProcessorERKNS0_14IrCameraHandleERKNS0_25ClusteringProcessorConfigE +00000000003e3d34 g DF .text 000000000000000c localtime +00000000001d5108 g DF .text 000000000000011c _ZN2nn2vi13ObjectManager30InvalidateDestroyDisplayHolderENS_4util13IntrusiveListINS0_13DisplayHolderENS2_27IntrusiveListBaseNodeTraitsIS4_S4_EEE8iteratorE +00000000000863bc g DF .text 0000000000000554 _ZN2nn7nlibsdk4heap14TlsHeapCentral13AllocSpanPageEv +0000000000174b1c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_SetPtmBatteryLotERKNS5_7factory10BatteryLotE +0000000000236f9c w DF .text 0000000000000268 _ZNK2nn8irsensor6detail8RingLifoINS0_20MomentProcessorStateELi5EE4ReadEPS3_ij +0000000000824098 w DO .rodata 0000000000000008 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4nposE +00000000001d8e48 g DF .text 000000000000003c _ZN2nn6fontll6detail18CompareKerningPairERKNS0_15OtfKerningTable11KerningPairES5_ +00000000002c8bd4 g DF .text 0000000000000058 sync_usage +00000000003baca8 g DF .text 0000000000000004 crealf +00000000003341d8 w DF .text 0000000000000050 _ZNKSt3__17collateIcE10do_compareEPKcS3_S3_S3_ +00000000003e3b6c g DF .text 0000000000000008 pthread_attr_destroy +000000000008d744 g DF .text 0000000000000028 _ZN2nn2os15ClearLightEventEPNS0_14LightEventTypeE +0000000000356920 g DF .text 0000000000000054 _ZNKSt3__112ctype_bynameIwE10do_toupperEPwPKw +00000000003611e0 g DF .text 0000000000000024 _ZNSt3__115recursive_mutex4lockEv +0000000000264534 g DF .text 0000000000000004 NvOsMemcmp +0000000000176e50 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm16ELm8ELl0EEEEEELm0ELm16ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm16ELm8EEEj +00000000002324fc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E40_nn_sf_sync_SetNpadJoyAssignmentModeDualENS_6applet20AppletResourceUserIdEj +00000000003bacac g DF .text 0000000000000004 creall +000000000004b4dc w DF .text 000000000000000c _ZN2nn2fs8IStorage7SetSizeEl +000000000014af5c g DF .text 000000000000011c _ZN2nn3ngc6detail11InputStream5Skip_Em +0000000000180b7c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E28_nn_sf_sync_GetClockSnapshotENS0_3OutINSL_2sf13ClockSnapshotEvEEh +000000000003afa8 g DF .text 000000000000000c Libz_SigloMiddlewareInfo +00000000007f0f40 g DO .rodata 000000000000001b _ZTSN2nn5audio6server7AuxInfoE +0000000000156dfc g DF .text 0000000000000008 _ZN2nn4nifm7RequestC1ERKNS0_17RequestParametersENS_2os14EventClearModeE +0000000000232660 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E30_nn_sf_sync_SendVibrationValueENS_6applet20AppletResourceUserIdENS5_21VibrationDeviceHandleERKNS5_14VibrationValueE +000000000013bf4c w DF .text 00000000000001c8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm664EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +000000000011e3f8 g DF .text 00000000000000c0 _ZN2nn7friends21RequestSyncFriendListERKNS_7account3UidE +00000000008049f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi16EE4MaskE +000000000022b3cc g DF .text 0000000000000054 _ZN2nn3hid19GetPlayerLedPatternERKj +000000000022eef8 g DF .text 0000000000000230 _ZN2nn3hid14VibrationMixer20OnNextSampleRequiredEPNS0_14VibrationValueEPNS_4util13IntrusiveListINS0_23VibrationNodeConnectionENS4_27IntrusiveListBaseNodeTraitsIS6_S6_EEEE +0000000000173708 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E37_nn_sf_sync_GetAvailableLanguageCodesENS0_3OutIivEERKNS0_8OutArrayINS5_12LanguageCodeEEE +00000000000bcff8 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_3nas29IOAuthProcedureForExternalNsaEEEvi +00000000001b7538 g DF .text 0000000000000020 _ZN2nn3mii6detail16GetMouthRedColorENS0_11CommonColorENS0_9GammaTypeE +0000000000128d28 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm224EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000328ec0 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE7pubsyncEv +000000000097ac08 g DO .data 0000000000000028 _ZTVNSt3__16locale5facetE +0000000000117ef0 g DF .text 0000000000000020 _ZN2nn5codec11OpusDecoderC1Ev +000000000013e400 g DF .text 0000000000000078 _ZN2nn3nfp13FinalizeDebugEv +000000000013606c g DF .text 0000000000000018 _ZN2nn2lm6detail20LogPacketTransmitter14PushModuleNameEPKcm +0000000000805430 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi98EE4MaskE +00000000001bafa8 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw13GetBeardColorEv +0000000000221c2c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm3EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000007c8120 w DO .rodata 0000000000000111 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002347dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E33_nn_sf_sync_ActivateCaptureButtonENS_6applet20AppletResourceUserIdE +000000000094c450 w DO .data 0000000000000018 _ZTIN2nn2am7service16IAudioControllerE +00000000002be73c g DF .text 000000000000004c _ZN7android23BnSurfaceComposerClient17onGetNativeHandleEjRjRb +000000000009d258 g DF .text 0000000000000008 _ZN2nn2sf4hipc6server24HipcServerSessionManager20ProcessManagerInvokeEPNS2_17HipcServerSessionEPKNS1_6detail25HipcMessageBufferAccessorEPKNS6_21HipcMessageHeaderInfoEPvm +00000000000aef3c w DF .text 00000000000001e0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl4EEENSB_ILm8ELm8ELl8EEENSB_ILm1ELm1ELl0EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSF_ILi1ELi5ELm0EEENSF_ILi2ELi5ELm0EEENSF_ILi3ELi6ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSK_ILm4ELm4ELl4EEENSK_ILm4ELm4ELl8EEEEEELm16ELm12ELb1EEESO_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSU_ILm8ELm8EvEENSU_ILm1ELm1EvEENST_24BufferClientArgumentTypeESY_SY_SY_NST_24OutRawClientArgumentTypeILm4ELm4EEES10_S10_j +00000000001c0990 g DF .text 000000000000001c _ZNK2nn3mii6detail16Ver3StoreDataRaw7IsValidEv +0000000000264fc4 g DF .text 0000000000000018 _ZN2nv22DumpGraphicsMemoryInfoEv +0000000000947cc0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000002ced84 g DF .text 0000000000000034 _ZN7android7String8C2Ev +0000000000979300 g DO .data 0000000000000018 _ZTINSt3__112future_errorE +0000000000164bfc g DF .text 00000000000000ec _ZN2nn5prepo28RequestImmediateTransmissionEv +000000000021f76c g DF .text 0000000000000178 _ZN2nn3hid6detail20SharedMemoryAccessor10DeactivateEv +00000000003df8b0 g DF .text 0000000000000078 vsscanf +00000000003b0624 g DF .text 0000000000000290 y0f +00000000000c1cc4 g DF .text 0000000000000030 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureC2Ev +0000000000232024 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E38_nn_sf_sync_GetSixAxisSensorLifoHandleENS0_3OutINS0_12NativeHandleEvEENS5_11BasicXpadIdE +0000000000318c04 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_SetMinVClockRateEij +0000000000369f70 g DF .text 00000000000001a4 _ZNSt3__19to_stringEd +00000000000445f0 g DF .text 00000000000000ec _ZN2nn4diag6detail18OnAssertionFailureENS0_13AssertionTypeEPKcS4_S4_iS4_z +000000000036a114 g DF .text 0000000000000198 _ZNSt3__19to_stringEe +000000000014b6f0 w DF .text 000000000000000c _ZN2nn3ngc6detail17MemoryInputStream6Close_Ev +0000000000369dc8 g DF .text 00000000000001a8 _ZNSt3__19to_stringEf +00000000000adc3c g DF .text 0000000000000004 _ZN2nn6socket8resolver11GetAddrInfoEPKcS3_PK8addrinfoPPS4_PKNS0_14ResolverOptionEm +00000000007e90b4 g DO .rodata 0000000000000004 _ZN2nn5audio22AudioRendererParameter14SubMixCountMaxE +0000000000369420 g DF .text 000000000000019c _ZNSt3__19to_stringEi +00000000000b0b74 g DF .text 000000000000001c _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfI11sockaddr_inEEmRKT_ +000000000013ef88 g DF .text 0000000000000128 _ZN2nn3nfp9GetNpadIdEPjRKNS0_12DeviceHandleE +00000000003695bc g DF .text 000000000000019c _ZNSt3__19to_stringEj +0000000000369758 g DF .text 000000000000019c _ZNSt3__19to_stringEl +000000000080c320 w DO .rodata 000000000000013f _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000003698f4 g DF .text 000000000000019c _ZNSt3__19to_stringEm +000000000027de60 g DF .text 0000000000002484 NvColorFormatToString +00000000002c9a10 g DF .text 0000000000000008 _ZNK7android13GraphicBuffer9initCheckEv +000000000011def8 g DF .text 00000000000000e0 _ZN2nn7friends19GetNewlyFriendCountEPiRKNS_7account3UidE +00000000007adaa0 g DO .rodata 0000000000000004 _ZN2nn4util6detail14FloatDegree180E +000000000018b264 g DF .text 0000000000000028 _ZN2nn5audio23SplitterDestinationData10InitializeEv +00000000008000f0 w DO .rodata 0000000000000021 _ZTSN2nn3mii6detail14IStaticServiceE +00000000000ba8b0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E26_nn_sf_sync_StoreWithImageERKNS6_11ProfileBaseERKNS6_8UserDataERKNS0_8InBufferE +0000000000234c28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E55_nn_sf_sync_AcquirePlayReportControllerUsageUpdateEventENS0_3OutINS0_12NativeHandleEvEE +00000000007c7570 w DO .rodata 000000000000014c _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service20IApplicationAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000181660 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E34_nn_sf_sync_GetTimeZoneRuleVersionENS0_3OutINSL_19TimeZoneRuleVersionEvEE +00000000003dd4f0 g DF .text 0000000000000078 fscanf +00000000001bfb38 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw15GetEyebrowScaleEv +0000000000025dcc g DF .text 000000000000041c _ZN2nn5image6detail4jpeg15jpeg_idct_12x12EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000021896c g DF .text 00000000000000ec _ZN2nn3hid6detail20AssertValidJoyXpadIdERKNS0_9JoyXpadIdE +0000000000286b48 g DF .text 0000000000000014 NvRmGpuMappingClose +0000000000258cd0 g DF .text 0000000000000008 nvdcCursorClip +0000000000369a90 g DF .text 000000000000019c _ZNSt3__19to_stringEx +0000000000369c2c g DF .text 000000000000019c _ZNSt3__19to_stringEy +000000000094eca8 w DO .data 0000000000000058 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +00000000001657ac g DF .text 00000000000000a0 _ZN2nn5prepo16SystemPlayReportC2EPKc +00000000001ba044 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetMustacheYEi +00000000003de54c g DF .text 0000000000000040 setvbuf +0000000000959c80 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000355698 g DF .text 0000000000000034 _ZNSt3__15ctypeIcEC1EPKtbm +0000000000259328 g DF .text 0000000000000008 nvdcFreeEventFds +000000000039fe5c g DF .text 0000000000000038 __divmoddi4 +000000000012a488 w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl8EEENSG_ILm1ELm1ELl0EEEEEELm24ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSQ_ILm1ELm1EvEEj +000000000039ca0c g DF .text 000000000000006c _Unwind_GetDataRelBase +0000000000096ac0 g DF .text 0000000000000018 _ZN2nn2os6detail26TimeoutHelperImplByHorizon5SleepENS_8TimeSpanE +00000000007d4bd0 g DO .rodata 0000000000000005 silk_NLSF_interpolation_factor_iCDF +00000000003b1298 g DF .text 0000000000000264 y1f +0000000000800440 w DO .rodata 0000000000000159 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +0000000000253a88 g DF .text 0000000000000090 _ZN2nn3web22ShowOfflineHtmlPageArg20SetBootAsMediaPlayerEb +000000000025540c g DF .text 00000000000002b0 _ZN2nn3web16ShowSharePageArgC1Ev +000000000025a534 g DF .text 0000000000000068 nvdcQueryHeadStatus +000000000032e118 w DF .text 00000000000000a0 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE7getlineEPwl +00000000000b3540 g DF .text 0000000000000010 _ZN2nn7account9GetUserIdEPNS0_3UidERKNS0_10UserHandleE +00000000000913b4 g DF .text 0000000000000004 nnosWaitConditionVariable +00000000000c1644 g DF .text 0000000000000144 _ZN2nn7account42NintendoAccountAuthorizationRequestContext34GetResultWithInteractionIfRequiredEv +0000000000117ad4 g DF .text 0000000000000008 _ZNK2nn5codec30HardwareOpusMultiStreamDecoder13IsInitializedEv +000000000019dc3c g DF .text 00000000000000d8 _ZN2nn5audio6server13CommandBuffer29GenerateMixRampGroupedCommandEiiiPKfS4_mj +00000000002ce31c g DF .text 000000000000003c _ZN7android8String16C1ERKNS_7String8E +0000000000318df4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E20_nn_sf_sync_PowerOffENS5_18PowerControlTargetE +00000000003a1620 g DF .text 0000000000000030 __ffsti2 +00000000003db8fc g DF .text 0000000000000058 hcreate +00000000001aa474 g DF .text 0000000000000004 _ZN2nn5audio3dsp17DumpMappedPointerEv +000000000017b360 w DF .text 0000000000000068 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf14ISslConnectionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6Object7ReleaseEv +00000000001742b8 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_SetEulaVersionsERKNS0_7InArrayINS5_6system11EulaVersionEEE +00000000000c5f64 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_RequestToAcquireSleepLockEv +00000000007adcd0 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f12ConstantBlueE +00000000007b74a0 w DO .rodata 0000000000000018 _ZTSN2nn3htc4tenv8IServiceE +0000000000117fbc g DF .text 0000000000000008 _ZNK2nn5codec11OpusDecoder15GetChannelCountEv +000000000009119c g DF .text 0000000000000010 _ZN2nn2os30InitializeVirtualAddressMemoryEv +000000000039669c g DF .text 0000000000000004 _ZNSt13bad_exceptionD0Ev +00000000003aeb04 g DF .text 0000000000000210 acosf +00000000009560f0 w DO .data 0000000000000018 _ZTIN2nn7timesrv6detail7service12ISteadyClockE +00000000003c5de8 g DF .text 00000000000000cc acosh +0000000000061870 g DF .text 0000000000000174 _ZN2nn2fs14GetGameCardCidEPvm +00000000001b61cc g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor13GetRegionMoveEv +000000000026c5e4 g DF .text 000000000000001c NvRmSyncGetNumSyncpoints +00000000001b8bac g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw7GetTypeEv +00000000009a2784 g DO .bss 0000000000000004 optopt +0000000000189be8 g DF .text 0000000000000014 _ZN2nn5audio15PerformanceInfo10GetEntriesEPi +00000000003c5fa0 g DF .text 000000000000022c acosl +000000000002c6dc g DF .text 0000000000000b9c _ZN2nn5image6detail14ReadJpegHeaderEPNS1_8JpegInfoEPKhmj +00000000000cbc00 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19ILibraryAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000097b4b0 g DO .data 0000000000000018 _ZTINSt3__115__codecvt_utf16IDsLb1EEE +00000000000001b0 g DF .text 0000000000000110 _ZN2nn6crypto16DecryptAes128CbcEPvmPKvmS3_mS3_m +00000000000be504 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E28_nn_sf_sync_EnsureCacheAsyncENS0_3OutINS0_13SharedPointerINS5_6detail13IAsyncContextEEEvEERKNS5_3UidE +0000000000396394 g DF .text 00000000000000e8 __cxa_vec_delete +000000000011843c g DF .text 0000000000000008 _ZN2nn5codec11OpusEncoder6EncodeEPmPvmPPKsii +000000000094d2d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003b0244 g DF .text 0000000000000110 j0f +0000000000229898 g DF .text 0000000000000044 _ZN2nn3hid5debug16FinalizeKeyboardEv +000000000022f81c g DF .text 00000000000000d0 _ZN2nn3hid13VibrationNode16SyncSampleNumberEv +000000000036c9d4 g DF .text 00000000000000d8 _ZNSt3__112system_errorC1EiRKNS_14error_categoryERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000002429fc g DF .text 0000000000001048 _ZN22nerd_gillette_internal5otete11ImageCodec213EncodeInPlaceERNS0_17MaxSizedBitStreamILm300EEERKNS_15StaticImageViewIhEE +00000000000b9ea8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE48_nn_sf_sync_CheckNetworkServiceAvailabilityAsyncENS0_3OutINS0_13SharedPointerINSJ_13IAsyncContextEEEvEERKNS5_27SystemProgramIdentificationEm +0000000000177924 g DF .text 00000000000000f4 _ZN2nn3ssl7Context6CreateENS1_10SslVersionE +0000000000959060 g DO .data 0000000000000018 _ZTIN2nn5audio6server9DelayInfoE +0000000000264530 g DF .text 0000000000000004 NvOsMemcpy +00000000007b83b8 g DO .rodata 00000000000000c0 _ZN2nn7nlibsdk4heap13TlsHeapStatic10size2classE +000000000018c108 g DF .text 000000000000000c _ZN2nn5audio13GetVoicePitchEPKNS0_9VoiceTypeE +00000000001b14d8 g DF .text 000000000000001c _ZN2nn2ec26ShowShopConsumableItemListENS_13ApplicationIdE +00000000002d20c4 g DF .text 0000000000000100 _ZN7android10VectorImpl13editArrayImplEv +0000000000329208 w DF .text 0000000000000010 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5gbumpEi +0000000000139e34 g DF .text 0000000000000078 _ZN2nn3nfc8FinalizeEv +000000000016482c g DF .text 0000000000000054 _ZN2nn5prepo6detail7msgpack22WriteUnsignedInteger16EPNS2_17OutputStreamParamEt +00000000001a5118 g DF .text 000000000000001c _ZNK2nn5audio6server23SplitterDestinationData12GetMixVolumeEi +00000000002284bc g DF .text 0000000000000060 _ZN2nn3hid6system36GetAnalogStickManualCalibrationStageEPNS1_33AnalogStickManualCalibrationStageENS1_11UniquePadIdENS1_19AnalogStickPositionE +00000000003c2654 g DF .text 0000000000000010 isprint +00000000007c3d20 w DO .rodata 0000000000000105 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000002562bc g DF .text 00000000000000a8 _ZN2nn3web14ShowWebPageArgC2EPKc +000000000024f354 g DF .text 0000000000000068 _ZN2nn3hid6system30ShowControllerSupportForSystemERKNS0_20ControllerSupportArgEb +0000000000256dc8 g DF .text 0000000000000004 _ZN2nn3web14ShowWebPageArg4DataEv +00000000007e4f50 w DO .rodata 000000000000012c _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000001bce94 g DF .text 0000000000000024 _ZN2nn3mii6detail11UtilityImpl12MakeCreateIdEPNS0_8CreateIdE +000000000019d0e8 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E36_nn_sf_sync_GetActiveAudioDeviceNameERKNS0_9OutBufferE +00000000000c4a8c w DF .text 0000000000000344 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm100EE27InitializeShimLibraryHolderINS_2am7service30IAllSystemAppletProxiesServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +00000000000fe378 g DF .text 0000000000000004 silk_resampler_private_up2_HQ_wrapper +000000000002fc68 g DF .text 0000000000000008 _ZN2nn5image13ExifExtractor17GetWorkBufferSizeEv +000000000023494c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E39_nn_sf_sync_ApplyNpadSystemCommonPolicyENS_6applet20AppletResourceUserIdE +00000000001a5134 g DF .text 0000000000000008 _ZNK2nn5audio6server23SplitterDestinationData12GetMixVolumeEv +00000000001713cc w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm6ELm1ELl0EEEEEELm0ELm6ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm6ELm1EEEj +00000000003150c8 g DF .text 0000000000000050 _ZN2nn4gpio8SetValueEPNS0_14GpioPadSessionENS0_9GpioValueE +000000000002bf90 g DF .text 0000000000000094 _ZN2nn5image6detail20InitializeTiffHeaderEPNS1_10TiffHeaderENS1_6EndianE +00000000000b7edc w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail9INotifierENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +0000000000127624 w DF .text 00000000000001e4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm64EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSI_ILm1ELm1ELl0EEEEEELm24ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENST_ILm1ELm1EvEEj +000000000004ac74 g DF .text 0000000000000020 _ZN2nn2fs11FileStorageC2EPNS0_3fsa5IFileE +000000000004d488 g DF .text 0000000000000028 _ZN2nn2fs6detail18FileSystemAccessorD0Ev +0000000000820c30 w DO .rodata 00000000000000b4 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002532a4 g DF .text 0000000000000104 _ZN2nn3web16ShowLobbyPageArg17SetLobbyParameterEPKc +000000000025d030 g DF .text 0000000000000008 NvOsThreadCreate +0000000000148ee8 g DF .text 00000000000001e0 _ZN2nn3ngc6detail2Bp14Get1stLevelSetEv +000000000019b6e0 g DF .text 0000000000000050 _ZN2nn5audio6server17AudioRenderSystem4StopEv +00000000001b6034 g DF .text 0000000000000020 _ZN2nn3mii8Nickname19ReplaceQuestionMarkEv +00000000003b0edc g DF .text 00000000000000f4 j1f +00000000000b9b88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE46_nn_sf_sync_IsUserRegistrationRequestPermittedENS0_3OutIbvEEm +0000000000119104 g DF .text 000000000000003c _ZN2nn5codec6detail17SetSignalInternalEP11OpusEncoderNS0_16OpusWaveformTypeE +0000000000822db8 g DO .rodata 0000000000000004 _ZNSt3__16locale8monetaryE +00000000003c2d60 w DF .text 0000000000000038 iswspace_l +00000000000aa250 w DF .text 00000000000001f4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEENSJ_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESW_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeESY_j +00000000003e4c64 g DF .text 00000000000000b8 __tm_to_secs +00000000000b4a3c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE43_nn_sf_sync_TrySelectUserWithoutInteractionENS0_3OutINS5_3UidEvEEb +0000000000220428 w DF .text 0000000000000004 _ZN2nn3hid6detail14HomeButtonLifoD0Ev +000000000097e4c0 g DO .data 0000000000000038 _ZTVN10__cxxabiv119__pointer_type_infoE +000000000006470c g DF .text 00000000000001a4 _ZN2nn2fs30MountRegisteredUpdatePartitionEPKc +0000000000a83490 w DO .bss 0000000000000008 _environ +00000000003baaa0 g DF .text 000000000000005c cpowf +00000000001bc818 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetEyeAspectEv +0000000000821030 w DO .rodata 00000000000000b3 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000000ced90 w DF .text 000000000000017c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl8EEENSC_20InObjectArgumentInfoILi0ELi0EEENSG_ILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm16ELm0ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_26InObjectClientArgumentTypeENST_ILm4ELm4EvEESW_j +000000000015f62c g DF .text 0000000000000370 _ZN2nn4pctl6detail25AbortIfUnexpectResultImplENS_6ResultE +000000000021c83c g DF .text 0000000000000074 _ZN2nn3hid6detail34ResetSixAxisSensorFusionParametersERKNS0_19SixAxisSensorHandleE +000000000013e104 g DF .text 000000000000010c _ZN2nn3nfp19StartGameDataEraserEPNS0_12DeviceHandleERKNS0_24AmiiboSettingsStartParamERKNS0_7TagInfoE +00000000003baafc g DF .text 00000000000000bc cpowl +0000000000134ff4 g DF .text 00000000000002d8 _ZN2nn4htcs6detail25virtual_socket_collection4BindEiPKNS0_12SockAddrHtcsERi +0000000000174c20 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E44_nn_sf_sync_AcquireFatalDirtyFlagEventHandleENS0_3OutINS0_12NativeHandleEvEE +0000000000333168 w DF .text 0000000000000028 _ZThn16_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev +0000000000357710 w DF .text 0000000000000290 _ZNSt3__113utf16_to_utf8ItEENS_9enable_ifIXoosr7is_sameIT_tEE5valuesr7is_sameIS2_jEE5valueENS_12codecvt_base6resultEE4typeEPKS2_S8_RS8_PhSA_RSA_mNS_12codecvt_modeE +00000000002d2b00 g DF .text 0000000000000040 _ZN7android10VectorImpl13removeItemsAtEmm +0000000000065494 g DF .text 0000000000000154 _ZN2nn2fs8MountRomEPKcNS_13ApplicationIdEPvm +000000000004e5b4 g DF .text 0000000000000034 _ZN2nn2fs6detail14IsWindowsDriveEPKc +0000000000070ca0 g DF .text 000000000000004c _ZN2nn4lmem6detail29ResizeForMemoryBlockFrameHeapEPNS1_8HeapHeadEPvm +000000000017a264 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3ssl2sf11ISslServiceEED2Ev +00000000001c62d8 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E30_nn_sf_sync_GetDatabaseServiceENS0_3OutINS0_13SharedPointerINS6_16IDatabaseServiceEEEvEEi +00000000009791a0 g DO .data 0000000000000018 _ZTINSt3__124__libcpp_debug_exceptionE +0000000000396abc g DF .text 0000000000000004 _ZNSt8bad_castD2Ev +00000000007b6290 g DO .rodata 000000000000002f _ZTSN2nn2fs6detail29DirectoryServiceObjectAdapterE +0000000000953750 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +000000000014762c g DF .text 0000000000000028 _ZN2nn3ngc6detail3Bp_C1Ev +000000000017fbe8 g DF .text 0000000000000064 _ZN2nn4time16LoadTimeZoneRuleEPNS0_12TimeZoneRuleERKNS0_12LocationNameE +00000000001befe0 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetBirthDayEv +0000000000354d50 g DF .text 000000000000015c _ZNSt3__114collate_bynameIwEC1EPKcm +000000000017f854 g DF .text 0000000000000094 _ZN2nn4time36SetStandardSteadyClockInternalOffsetENS_8TimeSpanE +000000000002a398 g DF .text 0000000000000058 _ZN2nn5image6detail4jpeg13jpeg_idct_1x2EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000000bf6e0 g DF .text 0000000000000028 _ZN2nn7account38ExternalNetworkServiceAccountRegistrar30SetSystemProgramIdentificationERKNS0_27SystemProgramIdentificationE +0000000000822130 g DO .rodata 000000000000001c _ZTSNSt3__117__assoc_sub_stateE +0000000000333688 g DF .text 0000000000000024 _ZNSt3__18ios_baseD0Ev +0000000000353ec8 g DF .text 0000000000000068 _ZNSt3__16localeC1ERKS0_RKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEi +00000000000ce740 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21IApplicationFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +0000000000192780 w DF .text 00000000000001dc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000024f3bc g DF .text 0000000000000074 _ZN2nn3hid6system30ShowControllerSupportForSystemEPNS0_27ControllerSupportResultInfoERKNS0_20ControllerSupportArgEb +00000000001d2aa4 g DF .text 0000000000000058 _ZN2nn2vi20SetContentVisibilityEb +0000000000116bc0 g DF .text 0000000000000768 opus_multistream_encoder_ctl +00000000000b1bf4 g DF .text 0000000000000058 _ZN2nn7account18ShowUserIconEditorERKNS0_3UidE +000000000017dbe8 g DF .text 00000000000000b4 _ZN2nn4time21GetSpanFromCorrectionEPlRKNS0_18SystemClockContextE +00000000003c2624 g DF .text 0000000000000010 __isgraph_l +000000000011b6a8 g DF .text 0000000000000008 _ZNK2nn3err18ErrorResultVariant8GetStateEv +0000000000956c50 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000000a1a4c g DF .text 0000000000000004 _ZN2nn6socket13GetHostByNameEPKcPKNS0_14ResolverOptionEm +0000000000169248 g DF .text 0000000000000058 _ZN2nn8settings12LanguageCode4MakeENS0_8LanguageE +0000000000150768 g DF .text 0000000000000060 _ZN2nn4nifm6detail13RequestClientD1Ev +0000000000184080 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000019aac0 g DF .text 00000000000001b8 _ZN2nn5audio6server17AudioRenderSystem17GetWorkBufferSizeERKNS0_6detail30AudioRendererParameterInternalE +00000000003c2b84 g DF .text 0000000000000028 __iswlower_l +0000000000137d5c w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEEj +00000000001cfe04 w DF .text 00000000000000b0 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_5visrv2sf22IManagerDisplayServiceEEEvi +0000000000025298 g DF .text 000000000000033c _ZN2nn5image6detail4jpeg13jpeg_idct_9x9EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000004149c g DF .text 0000000000000348 _ZN2nn4edid17VisitDisplayModesEPKNS0_4EdidEPFbPKNS0_15DisplayModeInfoEPKNS0_17DisplayTimingInfoEPKNS0_13ImageSizeInfoEPvESD_ +000000000014b0d4 g DF .text 0000000000000008 _ZN2nn3ngc6detail15NullInputStream11FillBuffer_EPvm +0000000000944f50 w DO .data 0000000000000018 _ZTIN2nn3htc4tenv8IServiceE +00000000001964a0 g DF .text 00000000000000e4 _ZN2nn5audio38CreateFinalOutputRecorderManagerByHipcEv +000000000003b790 g DF .text 0000000000000014 _ZNK2nn4util16BinaryFileHeader13GetFirstBlockEv +000000000016caa4 g DF .text 0000000000000070 _ZN2nn8settings6detail27GetBluetoothBoostEnableFlagEPb +000000000095bc58 w DO .data 0000000000000020 _ZTVN2nn3hid6detail23NfcXcdDeviceHandleStateE +00000000002ca460 g DF .text 0000000000000028 _ZN7android22GraphicBufferAllocatorC2Ev +0000000000157b9c g DF .text 000000000000003c _ZN2nn4nifm6detail16SsidListAccessorD1Ev +0000000000075fb8 g DF .text 000000000000006c nnmem_nlib_utf32len_generic +00000000000b9990 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +00000000001b3304 g DF .text 000000000000005c _ZN2nn2ec6detail13NsUidToStringEPcmNS0_5NsUidE +00000000003634f8 w DF .text 0000000000000044 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendERKS5_mm +000000000015ef94 g DF .text 0000000000000008 _ZN2nn4pctl11PairingInfoD1Ev +0000000000220604 g DF .text 0000000000000008 _ZNK2nn3hid6detail18SharedMemoryHolder21GetSharedMemoryHandleEv +000000000011bc60 g DF .text 0000000000000028 _ZN2nn3err6detail28IsApplicationErrorCodeStringEPKc +000000000015bd80 g DF .text 0000000000000158 _ZN2nn2oe16InitializeAppletEv +0000000000942a00 w DO .data 0000000000000050 _ZTVN2nn2fs10SubStorageE +00000000007ddee0 w DO .rodata 0000000000000019 _ZTSN2nn3nfp6detail7ISystemE +0000000000256f88 g DF .text 0000000000000108 _ZN2nn3web15ShowNewsPageArgC2EPKc +0000000000179ef4 g DF .text 0000000000000024 nnsslConnectionSetSocketDescriptor +00000000003c9cec g DF .text 0000000000000100 fmaf +000000000014bb7c g DF .text 0000000000000018 _ZN2nn3ngc6detail7SbvRank12SetAllocatorEPNS1_16WorkBufAllocatorE +00000000001d067c w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E45_nn_sf_sync_SetDetachedSharedFrameBufferImageENS_2vi7fbshare18SharedBufferHandleElRKNS0_8InBufferEj +00000000003bbc3c g DF .text 00000000000001ac __crypt_blowfish +0000000000220468 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_3tmp23SixAxisSensorCountStateELi32ENS1_13AtomicStorageIS4_EEED2Ev +00000000003c9dec g DF .text 00000000000005d8 fmal +0000000000325698 g DF .text 0000000000000294 _ZNSt3__111__libcpp_db15__iterator_copyEPvPKv +0000000000951650 w DO .data 0000000000000018 _ZTIN2nn7friends6detail3ipc28IDaemonSuspendSessionServiceE +000000000036c104 g DF .text 0000000000000038 _ZTv0_n24_NSt3__19strstreamD1Ev +00000000000b210c g DF .text 0000000000000008 _ZNK2nn7account6detail18OAuthProcedureBase6GetPtrEv +0000000000802890 w DO .rodata 0000000000000024 _ZTSN2nn5visrv2sf19IManagerRootServiceE +00000000000bdc7c g DF .text 00000000000000e0 _ZN2nn7account31EnsureBaasAccessTokenCacheAsyncEPNS0_12AsyncContextERKNS0_3UidE +00000000003c4d9c g DF .text 000000000000000c localeconv +00000000003a6e58 g DF .text 0000000000000088 __atomic_fetch_or_1 +00000000000c81e0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E50_nn_sf_sync_AcquireCallerAppletCaptureSharedBufferENS0_3OutIbvEENSK_IivEE +000000000094e450 w DO .data 0000000000000018 _ZTIN2nn2am7service21IApplicationFunctionsE +00000000003a6ee0 g DF .text 0000000000000088 __atomic_fetch_or_2 +0000000000156130 g DF .text 0000000000000038 _ZN2nn4nifm26HandleNetworkRequestResultEv +000000000095b8e8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail9MouseLifoE +00000000003a6f68 g DF .text 0000000000000088 __atomic_fetch_or_4 +0000000000101dac g DF .text 0000000000000a68 silk_encode_frame_FIX +000000000018000c g DF .text 000000000000005c _ZN2nn4time18ToPosixTimeFromUtcERKNS0_12CalendarTimeE +00000000002348dc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E38_nn_sf_sync_AcquireIrSensorEventHandleENS0_3OutINS0_12NativeHandleEvEEj +000000000019cc08 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail14IAudioRendererES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl17AudioRendererImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6Object12AddReferenceEv +000000000097a748 w DO .data 0000000000000060 _ZTVNSt3__114codecvt_bynameIwc11__mbstate_tEE +00000000000963e0 g DF .text 000000000000004c _ZN2nn2os6detail30InterProcessEventImplByHorizon5CloseEj +0000000000187df0 g DF .text 0000000000000018 _ZN2nn5audio14AddI3dl2ReverbEPNS0_19AudioRendererConfigEPNS0_15I3dl2ReverbTypeEPvmPNS0_10SubMixTypeEi +00000000003a6ff0 g DF .text 0000000000000088 __atomic_fetch_or_8 +00000000003ca3c4 g DF .text 0000000000000058 fmax +000000000006a924 g DF .text 00000000000000a4 _ZN2nn2fs23SaveDataTransferManagerC1Ev +000000000094d070 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service8IStorageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000d0de0 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object12AddReferenceEv +0000000000052c94 g DF .text 0000000000000030 _ZN2nn2fs6detail26EventNotifierObjectAdapterC2EONS_2sf13SharedPointerINS_5fssrv2sf14IEventNotifierEEE +00000000003ab1f0 g DF .text 0000000000000004 sem_trywait +00000000000c98b0 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22ILibraryAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001c7754 g DF .text 0000000000000008 _ZNK2nn3mii11AppletInput11GetUsedUuidEv +000000000094bb60 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ISystemAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003dc728 g DF .text 0000000000000008 __fbufsize +0000000000060bd0 g DF .text 0000000000000104 _ZN2nn2fs18IsGameCardInsertedEv +000000000097c2a0 g DO .data 0000000000000018 _ZTINSt3__112bad_weak_ptrE +0000000000008740 w DF .text 000000000000000c _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEED2Ev +000000000019e37c g DF .text 0000000000000154 _ZN2nn5audio6server13CommandBuffer27GenerateReverbEffectCommandEiPKNS0_15ReverbParameterEPvbbmj +00000000001c9e24 g DF .text 0000000000000008 _ZN2nn5swkbd14InlineKeyboardC1Ev +00000000002d2dc8 g DF .text 0000000000000114 _ZN7android10VectorImpl9replaceAtEPKvm +0000000000354fa4 g DF .text 0000000000000054 _ZNSt3__114collate_bynameIwED0Ev +00000000007f6228 g DO .rodata 0000000000000018 _ZN2nn3mii6detail10TeethColorE +0000000000043598 w DF .text 0000000000000004 _ZN2nn2os5MutexD2Ev +0000000000104014 g DF .text 0000000000000144 silk_k2a +0000000000264638 g DF .text 0000000000000020 glslc_AllocAlign +000000000009cd18 w DF .text 000000000000000c _ZN2nn2sf4hipc6server24HipcServerSessionManager31RegisterServerSessionToWaitBaseEPNS2_21HipcServerSessionBaseE +00000000000d0ab4 g DF .text 0000000000000094 _ZN2nn3apm18GetThrottlingStateEPNS0_15ThrottlingStateE +00000000001006d8 g DF .text 0000000000000fd4 silk_burg_modified_c +0000000000094ea0 g DF .text 00000000000000a8 _ZN2nn2os6detail18DebugImplByHorizon19GetCurrentStackInfoEPmS3_ +00000000000e911c g DF .text 0000000000000128 ec_enc_bit_logp +00000000001c9234 g DF .text 00000000000001a4 _ZN2nn5swkbd12ShowKeyboardEPNS0_6StringERKNS0_15ShowKeyboardArgE +0000000000286118 g DF .text 0000000000000034 nvgr_get_hdr_format_flags +00000000001cb8a0 g DF .text 0000000000000014 _ZN2nn5swkbd6detail18InlineKeyboardImpl13GetWindowSizeEPiS3_ +00000000003d1244 g DF .text 00000000000001d8 __tan +00000000007f61c8 g DO .rodata 0000000000000018 _ZN2nn3mii6detail13NoselineColorE +000000000017ce34 g DF .text 0000000000000008 _ZN2nn3ssl6detail15BuiltinDataInfo7GetNameEv +00000000007adc50 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u813ConstantWhiteE +00000000007d6d50 w DO .rodata 0000000000000030 _ZTSN2nn5codec6detail27IHardwareOpusDecoderManagerE +000000000094fe60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000233e7c w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000004621c g DF .text 000000000000014c _ZN2nn4diag6detail24GetNearestExportedSymbolEPPKcPmm +0000000000091920 g DF .text 00000000000001c8 _ZN2nn2os6detail13ThreadManager12CreateThreadEPNS0_10ThreadTypeEPFvPvES5_S5_mii +0000000000945760 g DO .data 0000000000000018 _ZTIN2nn2os6detail23MultiWaitHolderOfThreadE +000000000013ca40 g DF .text 0000000000000054 _ZN2nn3nfp6client22DestroySystemInterfaceEv +0000000000219cec g DF .text 00000000000000a4 _ZN2nn3hid6detail13FinalizeMouseEv +000000000006f3d8 g DF .text 0000000000000054 _ZN2nn4lmem12CheckExpHeapEPNS0_6detail8HeapHeadEi +00000000001b6630 g DF .text 0000000000000014 _ZN2nn3mii16GetEyeGreenColorENS0_9GammaTypeE +000000000012e7c8 w DF .text 000000000000018c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_21OutObjectArgumentInfoILi0ELi0EEEEEELm0ELm4ELb0EEESF_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_27OutObjectClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000080bfb0 w DO .rodata 00000000000000f3 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail9HidServerEEEEEE13ServiceObjectE +0000000000230e88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E34_nn_sf_sync_ActivateFirmwareUpdateEv +000000000035a874 g DF .text 0000000000000028 _ZNSt3__18numpunctIwEC2Em +00000000001b8e00 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw11GetEyeScaleEv +000000000023eea8 g DF .text 00000000000000a0 _ZN22nerd_gillette_internal5otete7jaimev218DecodeIntensityROKERNS0_7jaimev117IntensityInPacketEPKhmPm +0000000000959308 w DO .data 0000000000000058 _ZTVN2nn5audio6detail21IAudioRendererManagerE +000000000026d5a4 g DF .text 0000000000000548 NvRmSurfaceFromJson +0000000000123424 g DF .text 0000000000000008 _ZN2nn7friends11UserSetting13GetFriendCodeEv +0000000000a81fb0 g DO .bss 0000000000000008 __cxa_new_handler +000000000006af04 g DF .text 0000000000000048 _ZN2nn2fs30SaveDataTransferSizeCalculator34QuerySaveDataRequiredSizeForImportEPKNS0_12SaveDataInfoEj +0000000000228d94 g DF .text 000000000000001c _ZN2nn3hid5debug29GetDestinationFirmwareVersionEPNS0_6system15FirmwareVersionEjNS_4util10BitFlagSetILi32ENS2_10DeviceTypeEEE +000000000018c058 g DF .text 0000000000000030 _ZN2nn5audio16SetVoicePriorityEPNS0_9VoiceTypeEi +000000000018fb94 g DF .text 000000000000001c _ZN2nn5audio6server16UpsamplerManagerC1EiPNS0_13UpsamplerInfoEPa +000000000006cfa4 g DF .text 0000000000000104 _ZN2nn3htc22GetEnvironmentVariableEPmPcmPKc +00000000003283cc w DF .text 0000000000000020 _ZNSt3__120__shared_ptr_pointerIPNS_21__horizon_thread_dataEPFvS2_ENS_9allocatorIS1_EEE16__on_zero_sharedEv +00000000002b44f8 g DF .text 0000000000000048 _ZTv0_n24_N7android18GraphicBufferAllocD1Ev +00000000002b41b4 g DF .text 0000000000000144 _ZN7android12ConsumerBase19releaseBufferLockedEiNS_2spINS_13GraphicBufferEEEPvS4_ +00000000002cedb8 g DF .text 0000000000000030 _ZN7android7String8C2ENS0_13StaticLinkageE +00000000002cea84 g DF .text 00000000000000b8 _ZN7android8String169makeLowerEv +0000000000168ac0 g DF .text 0000000000000044 _ZN2nn8settings24ResetDebugPadKeyboardMapEv +00000000000d64a4 g DF .text 0000000000000078 _ZN2nn4bcat22DeliveryCacheDirectory8GetCountEv +0000000000168ef8 g DF .text 0000000000000044 _ZN2nn8settings6system18GetFatalDirtyFlagsEPNS_4util10BitFlagSetILi128ENS1_14FatalDirtyFlagEEE +00000000001b7528 g DF .text 0000000000000010 _ZN2nn3mii6detail26GetCommonColorByOrderIndexEi +0000000000804380 w DO .rodata 0000000000000026 _ZTSN2nn3hid6detail19UniquePadConfigLifoE +000000000022b2ac g DF .text 0000000000000044 _ZN2nn3hid22SetSupportedNpadIdTypeEPKjm +000000000025094c g DF .text 000000000000005c _ZN2nn3ldn6detail15ConvertToStringERKNS0_4SsidEPcm +00000000000b234c g DF .text 0000000000000034 _ZN2nn7account6detail24SimpleOAuthProcedureBaseC2ERKNS0_3UidEPNS0_4http15IOAuthProcedureE +00000000001748e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_GetSerialNumberENS0_3OutINS5_6system12SerialNumberEvEE +00000000001f87d0 g DF .text 00000000000000bc fnt_Super45Round +000000000022ade4 g DF .text 0000000000000044 _ZN2nn3hid5debug24UnsetMouseAutoPilotStateEv +000000000003d628 g DF .text 0000000000000004 _ZN2nn4util23StreamingDecompressZlibEPmS1_PvmPKvmPNS0_30StreamingDecompressZlibContextE +00000000002262c0 g DF .text 0000000000000090 _ZN2nn3hid6detail28GetUniquePadBluetoothAddressEPNS_9bluetooth7AddressENS0_6system11UniquePadIdE +000000000022906c g DF .text 0000000000000044 _ZN2nn3hid6system20InitializeHomeButtonEv +000000000035aa08 g DF .text 0000000000000040 _ZNKSt3__18numpunctIwE11do_truenameEv +000000000015b014 g DF .text 0000000000000040 _ZN2nn2oe10InitializeEv +000000000025511c g DF .text 0000000000000090 _ZN2nn3web6detail24ShowOfflinePageArgDetail15SetSystemDataIdEPhRKNS_3ncm12SystemDataIdE +0000000000174534 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_SetTvSettingsERKNS5_6system10TvSettingsE +0000000000948480 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEEE +00000000001187e0 g DF .text 0000000000000028 _ZN2nn5codec22OpusMultiStreamDecoderC2Ev +0000000000263574 g DF .text 0000000000000094 NvOsEventWait +00000000000c2bc4 g DF .text 0000000000000050 _ZN2nn2am28IsInitializedAsLibraryAppletEv +00000000000ccf64 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6grcsrv17IGameMovieTrimmerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6Object7ReleaseEv +0000000000954128 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000017464c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E24_nn_sf_sync_SetQuestFlagEb +0000000000118e40 g DF .text 0000000000000038 _ZN2nn5codec6detail21GetOpusBandwidthValueENS0_13OpusBandwidthE +000000000002ff54 g DF .text 000000000000006c _ZNK2nn5image13ExifExtractor12ExtractMakerEPm +0000000000163d7c g DF .text 0000000000000054 _ZN2nn5prepo6detail7msgpack12WriteArray16EPNS2_17OutputStreamParamEt +000000000018ea30 g DF .text 00000000000001e0 _ZN2nn5audio22InitializeResampler2ChEPNS0_17ResamplerState2ChEj +00000000001c3508 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetMoleScaleEi +0000000000328b0c g DF .text 0000000000000058 _ZNSt3__18ios_base4initEPv +0000000000183838 g DF .text 0000000000000060 _ZN2nn3aoc17CountAddOnContentEv +000000000004c520 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem12DoCreateFileEPKcli +00000000000cde1c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service17IOverlayFunctionsEEEvi +00000000003152bc g DF .text 0000000000000058 _ZN2nn4gpio18GetInterruptEnableEPNS0_14GpioPadSessionE +00000000001a7bac g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_22DownMix6chTo2chCommandE +00000000001722b0 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm90ELm2ELl0EEEEEELm0ELm90ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm90ELm2EEEj +00000000003184c4 g DF .text 0000000000000068 _ZN2nn3pcv20FinalizeForImmediateEv +00000000003d14a4 g DF .text 0000000000000564 __tanl +00000000000d9710 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E16_nn_sf_sync_ReadENS0_3OutIivEERKNS0_8OutArrayINS5_27DeliveryCacheDirectoryEntryEEE +00000000000a1b90 g DF .text 0000000000000004 nnsocketGetLastErrno +0000000000230af8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E42_nn_sf_sync_UnsetTouchScreenAutoPilotStateEv +00000000000905d4 g DF .text 0000000000000010 _ZN2nn2os9QuickExitEv +0000000000355a3c g DF .text 0000000000000008 _ZNKSt3__15ctypeIcE8do_widenEc +0000000000804930 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi10EE4MaskE +000000000031368c g DF .text 0000000000000058 _ZN2nn3fgm7Request4WaitEv +0000000000155ae0 g DF .text 0000000000000070 _ZN2nn4nifm19GetDefaultIpSettingEPNS0_13IpSettingDataE +0000000000286458 g DF .text 0000000000000028 nvgr_scratch_free +0000000000135de0 g DF .text 00000000000000d4 _ZN2nn4htcs6detail25virtual_socket_collection7ConnectEiPKNS0_12SockAddrHtcsERi +000000000015e270 g DF .text 0000000000000108 _ZN2nn4pctl19RetrievePairingInfoEPNS0_11PairingInfoE +00000000000cb7a8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service19IApplicationCreatorEEEvi +00000000001b7758 g DF .text 0000000000000018 _ZN2nn3mii6detail19GetGlassColorToVer3ENS0_11CommonColorE +000000000097d8b8 g DO .data 0000000000000028 _ZTVSt8bad_cast +00000000003c3c28 g DF .text 000000000000001c quick_exit +000000000021679c g DF .text 0000000000000058 _ZN2nn3hid6system6detail24InitializeFirmwareUpdateEv +00000000003a51d0 g DF .text 0000000000000008 __udivti3 +00000000009443f0 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf25IFileSystemProxyForLoaderE +0000000000061264 g DF .text 00000000000000f0 _ZN2nn2fs22FinalizeGameCardDriverEv +000000000017eb60 g DF .text 0000000000000004 _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTask6CancelEv +0000000000180dac w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E26_nn_sf_sync_SetCurrentTimeENSL_9PosixTimeE +0000000000805370 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi92EE4MaskE +00000000003a534c g DF .text 00000000000000f0 __atomic_store +000000000004b490 w DF .text 0000000000000014 _ZN2nn2fs17FileHandleStorageD2Ev +0000000000256dcc g DF .text 000000000000001c _ZN2nn3web18WebPageReturnValueC1Ev +0000000000342ddc w DF .text 0000000000000194 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE14do_get_weekdayES4_S4_RNS_8ios_baseERjP2tm +000000000013d0e0 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3nfp6detail7ISystemEE19FunctionForBoolTypeEv +00000000001704cc g DF .text 0000000000000070 _ZN2nn8settings6detail7SetEdidERKNS0_6system4EdidE +000000000080da80 w DO .rodata 00000000000000fb _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEEvEE +0000000000258ca8 g DF .text 0000000000000008 nvdcSetCsc_v2 +0000000000151080 g DF .text 0000000000000108 _ZN2nn4nifm6detail17ScanRequestClientC2ENS_2os14EventClearModeE +0000000000254e70 g DF .text 0000000000000084 _ZNK2nn3web6detail28ShowOfflineHtmlPageArgWriter15PushToInChannelENS_6applet19LibraryAppletHandleE +0000000000074eb4 g DF .text 000000000000020c nnmem_nlib_utf32_to_utf8 +000000000012435c g DF .text 000000000000014c _ZN2nn7friends6detail9CallAsyncEPNS0_12AsyncContextEPKcPFNS_6ResultEPNS1_3ipc14IFriendServiceEPvESA_m +0000000000257c14 g DF .text 00000000000000f0 nvcecOpen +0000000000348230 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb0EE16do_thousands_sepEv +0000000000822dbc g DO .rodata 0000000000000004 _ZNSt3__16locale7numericE +00000000000bb310 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE28_nn_sf_sync_LoadIdTokenCacheENS0_3OutIjvEERKNS0_9OutBufferE +00000000002d0d8c g DF .text 0000000000000088 _ZN7android6ThreadD2Ev +000000000018dd24 g DF .text 0000000000000018 _ZN2nn5audio15Axfx2DelayClearEPNS0_14Axfx2DelayLineE +00000000001bcd24 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw9SetHeightEi +0000000000264b80 g DF .text 0000000000000008 NvOsSetFpsTarget +0000000000052e24 g DF .text 0000000000000058 _ZN2nn2fs6detail41InitializeDfcFileSystemProxyServiceObjectENS_2sf13SharedPointerINS_5fssrv2sf16IFileSystemProxyEEE +00000000001a5024 g DF .text 0000000000000014 _ZN2nn5audio6server22CircularBufferSinkInfo7CleanUpEv +000000000029dc34 g DF .text 0000000000000060 _ZN7android6ParcelD1Ev +00000000002735c8 g DF .text 0000000000000010 NvRmStreamRead3DRegister +0000000000178c58 g DF .text 000000000000008c _ZN2nn3ssl10Connection17FlushSessionCacheEv +0000000000052818 g DF .text 0000000000000114 _ZN2nn2fs19MountDeviceSaveDataEPKc +00000000000b7630 w DF .text 0000000000000114 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_7account31IAccountServiceForSystemServiceENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEEENS_6ResultEPNS0_13SharedPointerIT_EENS_3svc6HandleE +00000000002d0f20 g DF .text 00000000000001e8 _ZN7android6Thread3runEPKcim +0000000000118fd4 g DF .text 0000000000000028 _ZN2nn5codec6detail18GetBitRateInternalEP11OpusEncoder +0000000000122de8 g DF .text 000000000000013c _ZNK2nn7friends7Profile18GetProfileImageUrlEPNS0_3UrlENS0_9ImageSizeE +00000000001af7e0 g DF .text 0000000000000034 _ZN2nn5audio3dsp9ApplyMix1EPiPKiii +00000000002990a8 g DF .text 0000000000000130 _ZN7android9HeapCache9free_heapERKNS_2wpINS_7IBinderEEE +000000000036546c w DF .text 000000000000004c _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEaSERKS5_ +0000000000024508 g DF .text 0000000000000314 _ZN2nn5image6detail4jpeg13jpeg_idct_7x7EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000003ab0b0 g DF .text 0000000000000004 pthread_condattr_setpshared +00000000007b8820 g DO .rodata 000000000000002f _ZTSN2nn2os6detail29MultiWaitHolderOfNativeHandleE +00000000003ab0e0 w DF .text 0000000000000004 pthread_key_create +0000000000951670 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000008052d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi87EE4MaskE +0000000000948b68 g DO .data 0000000000000020 _ZTVN2nn7account12AsyncContextE +0000000000359028 g DF .text 0000000000000100 _ZNKSt3__115__codecvt_utf16IwLb0EE9do_lengthER11__mbstate_tPKcS5_m +000000000002ecf0 g DF .text 00000000000000bc _ZN2nn5image11JpegEncoder7AnalyzeEv +00000000007bcec0 w DO .rodata 000000000000015f _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000001551b8 g DF .text 0000000000000078 _ZN2nn4nifm6detail27GetNetworkConnectionPointerEPPNS0_17NetworkConnectionE +0000000000122824 g DF .text 0000000000000030 _ZNK2nn7friends17NotificationQueue6GetUidEv +0000000000152ebc w DF .text 000000000000014c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm1ELm1ELl0EEENSG_ILm1ELm1ELl1EEEEEELm2ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm1ELm1EvEESR_j +00000000001606d4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E45_nn_sf_sync_IsRestrictedSystemSettingsEnteredENS0_3OutIbvEE +00000000002a1df8 g DF .text 0000000000000004 _ZN7android12ProcessState15startThreadPoolEv +000000000095ba60 w DO .data 0000000000000018 _ZTIN2nn3hid6detail16NpadHandheldLifoE +0000000000078130 g DF .text 0000000000000234 nnmem_nlib_basename +0000000000a69918 g DO .bss 0000000000000020 _ZN7android9SingletonINS_22GraphicBufferAllocatorEE5sLockE +0000000000359a6c g DF .text 000000000000000c _ZNKSt3__115__codecvt_utf16IDiLb0EE10do_unshiftER11__mbstate_tPcS4_RS4_ +0000000000823b20 w DO .rodata 0000000000000015 _ZTSNSt3__110money_baseE +0000000000167098 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_RequestImmediateTransmissionEv +000000000016a9c0 g DF .text 0000000000000050 _ZN2nn8settings6system13GetColorSetIdEv +000000000016b514 g DF .text 0000000000000044 _ZN2nn8settings18GetXpadKeyboardMapEPNS0_20BasicXpadKeyboardMapEi +00000000000befc8 g DF .text 0000000000000004 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService5GetIdEv +0000000000245ba4 w DF .text 0000000000000268 _ZN22nerd_gillette_internal5otete11ImageCodec216EncodeWithQuintsINS0_17MaxSizedBitStreamILm876EEEEEfRT_RKNS_15StaticImageViewIhEERKNS7_IKhEE +000000000039cf78 g DF .text 00000000000000d4 __eqtf2 +00000000003e32c8 g DF .text 00000000000000a8 wcsncasecmp +0000000000189448 g DF .text 0000000000000008 _ZNK2nn5audio17MemoryPoolManager12GetFreeCountEv +00000000003c2dc0 w DF .text 0000000000000028 iswupper_l +00000000001b622c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetEyeRotateEv +00000000001cede0 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENSB_ILm8ELm8ELl16EEEEEELm24ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESM_SM_j +0000000000117f3c g DF .text 0000000000000064 _ZN2nn5codec11OpusDecoder10InitializeEiiPvm +00000000000d6c24 g DF .text 0000000000000078 _ZN2nn4bcat17DeliveryCacheFile9GetDigestEv +00000000009538d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +000000000008e6ec g DF .text 0000000000000074 _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEPNS0_15SystemEventTypeE +00000000007b64a0 g DO .rodata 000000000000002d _ZTSN2nn2fs6detail27StorageServiceObjectAdapterE +000000000009a6c0 g DF .text 00000000000000a0 _ZThn8_N2nn2sf4cmif6server23CmifServerDomainManager6Domain14UnReserveEntryEPKNS1_18CmifDomainObjectIdEi +000000000023adc0 g DF .text 0000000000000018 _ZN2nn8irsensor27GetClusteringProcessorStateEPNS0_24ClusteringProcessorStateERKNS0_14IrCameraHandleE +00000000001514e0 g DF .text 000000000000010c _ZN2nn4nifm6detail21ServiceProviderClient27GetUserServiceSharedPointerEPNS_2sf13SharedPointerINS1_15IGeneralServiceEEE +0000000000015000 g DF .text 0000000000000028 _ZN2nn5image6detail4jpeg21jpeg_alloc_huff_tableEPNS2_18jpeg_common_structE +0000000000201f24 g DF .text 0000000000000008 FsLttComponent_numAdjustments +0000000000047684 w DF .text 0000000000000028 _ZN2nn2fs10SubStorage7GetSizeEPl +000000000094d560 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000031852c g DF .text 0000000000000078 _ZN2nn3pcv23SetClockRateImmediatelyENS0_6ModuleEj +0000000000070f98 g DF .text 0000000000000008 _ZN2nn4lmem6detail20GetUnitHeapAlignmentEPNS1_8HeapHeadE +00000000001c7a28 g DF .text 000000000000000c _ZN2nn3mii13AppletManager25SetResultSuccessAppendMiiEi +0000000000942860 g DO .data 0000000000000001 _ZN2nn4diag6detail28g_EnableDefaultAbortObserverE +0000000000812820 w DO .rodata 0000000000000022 _ZTSN2nn3ldn6detail15IMonitorServiceE +00000000008223e8 g DO .rodata 0000000000000004 _ZNSt3__18ios_base6binaryE +000000000013348c g DF .text 0000000000000154 _ZN2nn4htcs6detail7connectENS_2sf13SharedPointerINS_3tma7ISocketEEEPKNS0_12SockAddrHtcsERi +0000000000354ff8 g DF .text 0000000000000100 _ZNKSt3__114collate_bynameIwE10do_compareEPKwS3_S3_S3_ +000000000009a454 g DF .text 00000000000000c0 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain12ReserveEntryEPNS1_18CmifDomainObjectIdEi +0000000000002cf4 g DF .text 00000000000002b0 _ZN2nn6crypto6detail14bigint_mod_invEPjPKjS4_i +0000000000080b1c g DF .text 0000000000000018 nnmem_nlib_gen_random +000000000023aa0c g DF .text 0000000000000054 _ZN2nn8irsensor17GetIrCameraStatusERKNS0_14IrCameraHandleE +0000000000979418 w DO .data 0000000000000080 _ZTVNSt3__115basic_streambufIcNS_11char_traitsIcEEEE +0000000000947660 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000023a810 g DF .text 0000000000000004 _ZN2nn8irsensor6detail14SessionManagerD1Ev +000000000014eeec g DF .text 0000000000000078 _ZN2nn3ngc6detail15CompressedArrayC2EOS2_ +000000000021c584 g DF .text 00000000000000bc _ZN2nn3hid6detail28IsSixAxisSensorFusionEnabledEPbRKNS0_19SixAxisSensorHandleE +00000000000c96b4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000255d2c g DF .text 000000000000005c _ZNK2nn3web20SharePageReturnValue18GetSharePostResultEv +00000000001a0d5c g DF .text 0000000000000008 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_17DeviceSinkCommandE +00000000002cda5c g DF .text 0000000000000008 _ZNK7android7RefBase12weakref_type12getWeakCountEv +000000000012f588 w DF .text 0000000000000160 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_21OutHandleArgumentInfoILi0ELi1EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_27OutHandleClientArgumentTypeEj +00000000000b552c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E21_nn_sf_sync_LoadImageENS0_3OutIjvEERKNS0_9OutBufferE +0000000000046f54 g DF .text 0000000000000080 _ZN2nn2fs6detail36IsEnabledFileSystemAccessorAccessLogEPKc +0000000000161284 w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm3ELm1ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm3ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm3ELm1EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000199688 g DF .text 0000000000000008 _ZN2nn5audio24GetAudioInBufferDataSizeEPKNS0_13AudioInBufferE +00000000003af5f0 g DF .text 0000000000000078 floor +0000000000090b4c g DF .text 0000000000000008 _ZN2nn2os19GetSharedMemorySizeEPKNS0_16SharedMemoryTypeE +00000000000bf3f8 g DF .text 0000000000000040 _ZN2nn7account38ExternalNetworkServiceAccountRegistraraSEOS1_ +00000000001225e8 g DF .text 0000000000000048 _ZN2nn7friends17NotificationQueue8FinalizeEv +000000000017b054 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_RemoveServerPkiEm +00000000009ef798 g DO .bss 0000000000000008 _ZN2nn4time26g_pStandardUserSystemClockE +000000000039cbb4 g DF .text 0000000000000070 _Unwind_Find_FDE +00000000001e0efc g DF .text 0000000000000224 FSS_get_ascender_descender_leading +0000000000030954 g DF .text 00000000000000c8 nnutilZlib_adler32_combine64 +000000000021a4e4 g DF .text 0000000000000074 _ZN2nn3hid6detail24GetSupportedNpadStyleSetEPNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +00000000000bf238 g DF .text 0000000000000018 _ZN2nn7account33ExternalNetworkServiceAccountInfoD1Ev +0000000000177140 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm44ELm4ELl0EEEEEELm44ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm44ELm4EvEEj +00000000007dec10 w DO .rodata 000000000000001f _ZTSN2nn3ngc19ProfanityFilterBaseE +000000000012d8f4 g DF .text 0000000000000004 _ZN2nn2fs14AssertCheckUidERKNS_7account3UidE +0000000000146208 g DF .text 0000000000000134 _ZN2nn3ngc6detail12BinaryReader9ReadArrayEPhm +000000000029e4f0 g DF .text 000000000000000c _ZN7android6Parcel15restoreAllowFdsEb +000000000039f1b8 g DF .text 0000000000000058 __clear_cache +0000000000047c64 g DF .text 0000000000000380 _ZN2nn2fs24HierarchicalRomFileTable10CreateFileEPiPKcRKNS0_11RomFileInfoE +000000000023dfec w DF .text 00000000000006b4 _ZN22nerd_gillette_internal5otete7jaimev19SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_13ShapeInPacketERT_ +00000000001b66b0 g DF .text 000000000000001c _ZNK2nn3mii8CoreDataneERKS1_ +00000000001ca138 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard22SetMovedCursorCallbackEPFvPKNS0_14MovedCursorArgEE +00000000002c5b90 g DF .text 0000000000000020 _ZN7android21SurfaceComposerClient17setConductorLayerERKNS_2spINS_7IBinderEEEb +000000000031b6e4 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIwwEEPwEEjT0_S5_S5_S5_S5_T_ +00000000000bf3c0 g DF .text 0000000000000008 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarC2Ev +00000000001447f0 g DF .text 0000000000000054 _ZN2nn3ngc19ProfanityFilterBase16IsIncludesAtSignEPKDsi +00000000003610e0 g DF .text 0000000000000018 _ZNSt3__15mutexD2Ev +00000000001836e0 g DF .text 000000000000002c _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImpl9StartTaskEv +00000000002cf4c8 g DF .text 0000000000000054 _ZN7android7String85setToERKS0_ +00000000000524dc g DF .text 0000000000000108 _ZN2nn2fs6detail9MountDataEPKcNS_3ncm6DataIdENS4_9StorageIdEPvm +0000000000949628 w DO .data 0000000000000020 _ZTVN2nn7account48NintendoAccountApplicationAuthorizationProcedureE +000000000097c0c0 w DO .data 0000000000000018 _ZTINSt3__115messages_bynameIwEE +00000000002a15e8 g DF .text 000000000000000c _ZN7android6Parcel4BlobC2Ev +000000000012550c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +00000000000dd9d8 g DF .text 0000000000002254 celt_decode_with_ec +0000000000189030 g DF .text 0000000000000008 _ZN2nn5audio26GetReleasedMemoryPoolCountEPKNS0_19AudioRendererConfigE +0000000000096cc8 w DF .text 0000000000000108 _ZN2nn2os6detail17OsResourceManagerC2Ev +00000000000ba2ec w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E39_nn_sf_sync_GetBaasAccountAdministratorENS0_3OutINS0_13SharedPointerINS5_4baas14IAdministratorEEEvEERKNS5_3UidE +0000000000132e6c g DF .text 0000000000000054 _ZN2nn4htcs10InitializeEPFPvmEPFvS1_mEi +000000000022e230 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm13EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000000e9244 g DF .text 0000000000000148 ec_enc_icdf +000000000018c040 g DF .text 000000000000000c _ZN2nn5audio20GetVoiceChannelCountEPKNS0_9VoiceTypeE +0000000000286d68 g DF .text 000000000000000c NvRmGpuChannelCycleStatsInstallBuffer +000000000006db34 w DF .text 000000000000014c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutHandleArgumentInfoILi0ELi1EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutHandleClientArgumentTypeEj +00000000000febe0 g DF .text 00000000000001ac silk_insertion_sort_increasing +00000000001d03bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_UnbindSharedLowLevelLayerEm +000000000017eeb0 g DF .text 0000000000000008 _ZN2nn4time45IsAutomaticCorrectionEnabledFromClockSnapshotERKNS0_13ClockSnapshotE +00000000000724bc g DF .text 0000000000000094 nnmem_nlib_dprintf +00000000000b2b54 g DF .text 000000000000007c _ZN2nn7account14InitializeWithEONS_2sf13SharedPointerINS0_31IAccountServiceForAdministratorEEE +000000000022b9cc g DF .text 0000000000000064 _ZN2nn3hid6system13GetNpadStatesEPNS1_15NpadSystemStateEiRKj +00000000007e86f0 w DO .rodata 0000000000000029 _ZTSN2nn3ntc6detail7service14IStaticServiceE +0000000000822d92 w DO .rodata 0000000000000001 _ZNSt3__110moneypunctIwLb0EE4intlE +000000000097e2b0 g DO .data 0000000000000018 _ZTIN10__cxxabiv117__array_type_infoE +0000000000216ff0 g DF .text 0000000000000060 _ZN2nn3hid6detail18EnableHandheldHidsEv +00000000002577a0 g DF .text 0000000000000088 _ZN2nn3web15ShowNewsPageArg17SetBackgroundKindENS0_17WebBackgroundKindE +000000000097d390 g DO .data 0000000000000018 _ZTINSt3__112system_errorE +000000000032461c g DF .text 0000000000000090 _ZNSt3__124__libcpp_debug_exceptionC2ERKS0_ +000000000017a11c g DF .text 0000000000000024 nnsslConnectionWrite +0000000000314594 g DF .text 0000000000000068 _ZN2nn3fgm8Debugger4WaitEv +0000000000169bd8 g DF .text 0000000000000050 _ZN2nn8settings6system12IsNfcEnabledEv +00000000001d2d64 g DF .text 000000000000011c _ZN2nn2vi12CloseDisplayEPNS0_7DisplayE +00000000001681c4 g DF .text 0000000000000050 _ZN2nn8settings6system21IsBluetoothAfhEnabledEv +0000000000399a7c g DF .text 0000000000000060 unw_set_fpreg +00000000000bd820 g DF .text 0000000000000018 _ZN2nn7account12AsyncContextC1Ev +0000000000178ae8 g DF .text 00000000000000b8 _ZN2nn3ssl10Connection19GetSessionCacheModeEPNS1_16SessionCacheModeE +0000000000948460 w DO .data 0000000000000018 _ZTIN2nn7account4baas14IAdministratorE +00000000000c2ad8 g DF .text 000000000000004c _ZN2nn2am17GetDebugFunctionsEv +000000000034e20c w DF .text 0000000000000498 _ZNSt3__111__money_putIwE13__gather_infoEbbRKNS_6localeERNS_10money_base7patternERwS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS9_IwNSA_IwEENSC_IwEEEESJ_Ri +00000000000ac5b8 g DF .text 0000000000000010 _ZN2nn6socket8resolver3tls17GetTlsPairPointerERPNS2_30ResolverThreadLocalStoragePairE +0000000000235120 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E42_nn_sf_sync_AcquireAudioControlEventHandleENS0_3OutINS0_12NativeHandleEvEE +000000000022f2e0 g DF .text 0000000000000060 _ZNK2nn3hid13VibrationNode19GetCurrentVibrationEv +000000000000347c g DF .text 00000000000000dc _ZN2nn6crypto6detail29alg_p256_generate_private_keyEPKjiPKNS1_17p256_ec_parameterEPj +000000000014507c g DF .text 0000000000000060 _ZN2nn3ngc6detail14ContentsReader18GetVersionDataSizeEPj +00000000001d045c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_AttachSharedLayerToLowLevelLayerENS_2vi7fbshare17SharedLayerHandleEmRKNSH_27SharedLayerTextureIndexListE +0000000000251364 w DF .text 00000000000001c8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi26ELm1152EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +000000000002481c g DF .text 00000000000001f8 _ZN2nn5image6detail4jpeg13jpeg_idct_6x6EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000096fe8 g DF .text 0000000000000070 _ZN2nn2os6detail10RngManagerC2Ev +000000000016fac0 g DF .text 0000000000000070 _ZN2nn8settings6detail17SetLockScreenFlagEb +000000000018b93c g DF .text 0000000000000008 _ZNK2nn5audio12SplitterInfo12NeedToUpdateEv +00000000001746f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E41_nn_sf_sync_GetDeviceTimeZoneLocationNameENS0_3OutINS_4time12LocationNameEvEE +0000000000228b7c g DF .text 0000000000000044 _ZN2nn3hid16GetDebugPadStateEPNS0_13DebugPadStateE +00000000003ca4f8 g DF .text 0000000000000058 fmin +00000000000aff9c g DF .text 000000000000009c _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferIcEElPhmPT_ +00000000001e4dc8 g DF .text 0000000000000018 save_graymap_to_cache +000000000029d8c4 g DF .text 00000000000000e0 _ZNK7android6Parcel10readObjectEb +00000000000acb00 g DF .text 0000000000000040 _ZN2nn6socket8resolver19EnableResolverCallsEv +00000000007cc520 w DO .rodata 00000000000000fa _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000008b94 w DF .text 00000000000000ac _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE10ComputeMacEb +00000000000906e4 g DF .text 0000000000000014 _ZN2nn2os11SetTlsValueENS0_7TlsSlotEm +00000000007d0310 w DO .rodata 0000000000000036 _ZTSN2nn4bcat6detail3ipc30IDeliveryCacheDirectoryServiceE +00000000003c26f0 w DF .text 000000000000001c isspace_l +00000000003a819c g DF .text 00000000000001e0 bindtextdomain +0000000000043878 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000002cd624 g DF .text 00000000000000e0 _ZNK7android7RefBase9decStrongEPKv +0000000000250828 g DF .text 0000000000000014 _ZN2nn3ldn14MakeSubnetMaskEi +00000000008208b0 w DO .rodata 0000000000000013 _ZTSN2nn3i2c8ISessionE +000000000097d300 g DO .data 0000000000000018 _ZTINSt3__19strstreamE +000000000018a8b0 g DF .text 0000000000000008 _ZNK2nn5audio11SinkManager14GetSampleCountEv +00000000000a1ab8 g DF .text 0000000000000004 nnsocketSocket +0000000000150bb8 g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient14SetRequirementERKNS0_11RequirementE +0000000000170c70 g DF .text 0000000000000060 _ZN2nn8settings6detail24SetDebugPadGenericPadMapERKNS0_21DebugPadGenericPadMapE +00000000002864f4 g DF .text 0000000000000044 nvgr_sync_dump +00000000003c2e0c w DF .text 0000000000000024 iswxdigit_l +00000000001baff8 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw13SetGlassColorEi +0000000000234f58 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E41_nn_sf_sync_IsUsbFullKeyControllerEnabledENS0_3OutIbvEE +00000000002ce31c g DF .text 000000000000003c _ZN7android8String16C2ERKNS_7String8E +000000000008b8b8 g DF .text 00000000000000bc _ZN2nn3mem19NumberLineAllocator8AllocateEPiii +00000000001a3ccc g DF .text 0000000000000028 _ZNK2nn5audio6server7MixInfo16HasAnyConnectionEv +00000000001c9ecc g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard6LaunchEv +00000000003d33c0 g DF .text 0000000000000024 nrand48 +0000000000948050 w DO .data 0000000000000018 _ZTIN2nn7account7profile14IProfileEditorE +00000000003e027c g DF .text 0000000000000084 bsearch +0000000000956180 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000399b94 g DF .text 0000000000000020 unw_is_signal_frame +00000000003a43e8 g DF .text 0000000000000008 __negsf2 +0000000000158474 g DF .text 0000000000000008 _ZN2nn4nifm6detail12HttpResponseC2Ev +00000000001588a0 g DF .text 0000000000000050 _ZN2nn3nsd15GetNasApiFqdnExEPNS0_4FqdnE +000000000003c078 g DF .text 00000000000001d4 _ZN2nn4util8BitArray10RightShiftEPS1_RKS1_i +000000000006ae58 g DF .text 0000000000000008 _ZN2nn2fs30SaveDataTransferSizeCalculator23QuerySaveDataExportSizeEv +0000000000328590 w DF .text 0000000000000004 _ZNSt3__19basic_iosIcNS_11char_traitsIcEEED2Ev +00000000001464c4 g DF .text 0000000000000188 _ZN2nn3ngc6detail12BinaryReader9ReadArrayEPjm +00000000002539c8 g DF .text 0000000000000060 _ZN2nn3web22ShowOfflineHtmlPageArgC2EPKc +0000000000947ec0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEEE +00000000003544a8 g DF .text 000000000000015c _ZNSt3__114collate_bynameIcEC1EPKcm +00000000000b6ac0 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm4ELl0EEEEEELm0ELm16ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm4EEEj +00000000001c5ae0 g DF .text 0000000000000038 _ZNK2nn3mii15PrivateDatabase8GetCountEi +00000000009471e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000000d8750 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000003ddd98 w DF .text 0000000000000020 fgetc_unlocked +0000000000215d20 g DF .text 00000000000000c0 _ZN2nn3hid6detail18InitializeDebugPadEv +0000000000216a24 g DF .text 0000000000000088 _ZN2nn3hid6system6detail27CheckFirmwareUpdateRequiredEPNS1_28FirmwareUpdateRequiredReasonENS1_11UniquePadIdE +00000000002b812c g DF .text 0000000000000064 _ZN7android18BnProducerListener10onTransactEjRKNS_6ParcelEPS1_j +000000000094c3d8 w DO .data 0000000000000078 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IAudioControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000096e830 g DO .data 0000000000000070 _ZTTN7android20BnGraphicBufferAllocE +000000000097d878 g DO .data 0000000000000028 _ZTVSt15underflow_error +00000000003aac24 g DF .text 0000000000000008 __stdin_read +00000000000d9078 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E43_nn_sf_sync_EnumerateDeliveryCacheDirectoryENS0_3OutIivEERKNS0_8OutArrayINS5_13DirectoryNameEEE +000000000022b788 g DF .text 0000000000000044 _ZN2nn3hid6system30SetNpadPlayerLedBlinkingDeviceERKjRKNS_4util10BitFlagSetILi32ENS1_10DeviceTypeEEE +0000000000236370 g DF .text 0000000000000070 _ZN2nn8irsensor6detail17GetIrCameraHandleEPNS0_14IrCameraHandleERKj +00000000002b3f10 g DF .text 0000000000000258 _ZN7android12ConsumerBase21addReleaseFenceLockedEiNS_2spINS_13GraphicBufferEEERKNS1_INS_5FenceEEE +000000000013e7a0 g DF .text 0000000000000058 _ZN2nn3nfp15SetErrorVisibleEb +00000000001bbf8c g DF .text 0000000000000094 _ZNK2nn3mii6detail12StoreDataRaw8ValidateEv +000000000095a690 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000094d540 w DO .data 0000000000000018 _ZTIN2nn2am7service18IHomeMenuFunctionsE +00000000000fa768 g DF .text 00000000000015fc silk_Encode +00000000002708d8 g DF .text 0000000000000014 NvRmSyncWait +000000000012cc50 g DF .text 0000000000000054 _ZN2nn2fs21MountSaveDataReadOnlyEPKcNS_13ApplicationIdERKNS_7account3UidE +0000000000239724 g DF .text 0000000000000054 _ZN2nn8irsensor6detail15IrSensorSessionD1Ev +000000000012d748 g DF .text 0000000000000054 _ZN2nn2fs19MountSystemSaveDataEPKcmRKNS_7account3UidE +00000000000c78b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_AcquireForegroundRightsEv +00000000002c39bc g DF .text 0000000000000034 _ZN7android14SurfaceControl7setSizeEjj +00000000003de4ac g DF .text 0000000000000010 putwchar +00000000000bc198 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE17GetCmifBaseObjectEv +00000000002aaa4c g DF .text 0000000000000228 _ZN7android10BufferItem9unflattenERPKvRmRPKiS4_ +0000000000314d50 g DF .text 0000000000000024 _ZN2nn4gpio18GetInternalManagerEv +0000000000045f30 g DF .text 0000000000000278 _ZN2nn4diag6detail20GetAllModuleInfoImplEPmPvmb +0000000000314fc0 g DF .text 0000000000000060 _ZN2nn4gpio15UnbindInterruptEPNS0_14GpioPadSessionE +000000000002a478 g DF .text 0000000000000010 _ZN2nn5image6detail4jpeg13jpeg_mem_initEPNS2_18jpeg_common_structE +00000000007b8d60 w DO .rodata 0000000000000016 _ZTSN2nn14MemoryResourceE +00000000001c35b8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding5Ei +000000000011eef0 g DF .text 0000000000000148 _ZN2nn7friends19AcceptFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS0_9RequestIdE +000000000025d188 g DF .text 0000000000000004 NvOsFsync +0000000000822dd4 g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5lowerE +0000000000174264 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E26_nn_sf_sync_SetAudioVolumeENS5_6system11AudioVolumeEi +00000000003e778c g DF .text 0000000000000038 __nnmusl_TryAcquireSemaphore +00000000003dbcfc g DF .text 0000000000000020 remque +000000000039e914 g DF .text 0000000000000200 __addsf3 +0000000000059f7c w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000032f250 w DF .text 0000000000000030 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPFRNS_8ios_baseES5_E +0000000000264ad8 g DF .text 0000000000000004 NvOsInterruptUnregister +0000000000329758 w DF .text 00000000000000c4 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE4swapERS3_ +00000000003cd81c g DF .text 00000000000001d8 remquo +000000000029c0cc g DF .text 0000000000000008 _ZNK7android12MemoryDealer4heapEv +0000000000210364 g DF .text 0000000000000004 ptrs_to_offsets +000000000025acf8 g DF .text 0000000000000078 nvdcutilSwHotplugOut +000000000017b70c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_GetOptionENS0_3OutIbvEENS6_10OptionTypeE +00000000000cbeb0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE32_nn_sf_sync_GetDisplayControllerENS0_3OutINS0_13SharedPointerINS6_18IDisplayControllerEEEvEE +0000000000294f14 g DF .text 0000000000000030 _ZN7android7BBinderC2Ev +0000000000228d7c g DF .text 0000000000000018 _ZN2nn3hid5debug36GetAvailableFirmwareVersionForRevertEPNS0_6system15FirmwareVersionENS2_11UniquePadIdE +0000000000122d7c g DF .text 0000000000000008 _ZNK2nn7friends16UserPresenceView9GetStatusEv +000000000017be1c w DF .text 00000000000001e4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSI_ILm4ELm4ELl4EEEEEELm0ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEESU_j +00000000000c5ea4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_DisallowToEnterSleepEv +0000000000155538 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_4nifm6detail15IGeneralServiceEE19FunctionForBoolTypeEv +000000000013a498 g DF .text 0000000000000078 _ZN2nn3nfc14FinalizeSystemEv +00000000000a1eb8 g DF .text 00000000000002bc _ZN2nn6socket6detail16InitializeCommonERKNS0_6ConfigE +00000000001b684c g DF .text 0000000000000004 _ZN2nn3mii6detail25CalculateSizeAndAlignmentD1Ev +000000000009145c g DF .text 0000000000000004 nnosInitializeMultiWaitHolderForInterruptEvent +00000000007bbc00 w DO .rodata 00000000000001aa _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account29IAccountServiceForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001cb3bc g DF .text 0000000000000088 _ZN2nn5swkbd6detail18InlineKeyboardImpl16CalcMovedCursor_ENS_6applet13StorageHandleEm +000000000015b2f0 g DF .text 0000000000000054 _ZN2nn2oe36EndHandlingCaptureButtonShortPressedEv +000000000022bd1c g DF .text 0000000000000054 _ZN2nn3hid6system20GetNpadInterfaceTypeERKj +000000000016c650 g DF .text 0000000000000070 _ZN2nn8settings6detail13GetBatteryLotEPNS0_7factory10BatteryLotE +00000000002203b8 w DF .text 0000000000000004 _ZN2nn3hid6detail12DebugPadLifoD0Ev +00000000003ab100 g DF .text 0000000000000004 __pthread_once +0000000000953400 g DO .data 0000000000000018 _ZTIN2nn3ngc6detail17MemoryInputStreamE +0000000000259338 g DF .text 0000000000000050 nvdcEventHotplug +0000000000398b5c g DF .text 0000000000000028 __cxa_uncaught_exception +00000000009449f8 w DO .data 00000000000000a8 _ZTVN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEEE +00000000000c0a30 g DF .text 00000000000000b8 _ZN2nn7account34NetworkServiceAccountAdministrator40ResumeProcedureToLinkWithNintendoAccountEPNS0_31NintendoAccountLinkageProcedureERKNS0_9SessionIdE +0000000000256b14 g DF .text 0000000000000104 _ZN2nn3web14ShowWebPageArg28SetUserAgentAdditionalStringEPKc +000000000025a59c g DF .text 000000000000006c nvdcPanelGetVendorID +0000000000024a14 g DF .text 00000000000001b4 _ZN2nn5image6detail4jpeg13jpeg_idct_5x5EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000001c513c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding2Ev +00000000001bcd48 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetHairColorEi +00000000002c7518 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient12getUnderscanERKNS_2spINS_7IBinderEEERi +000000000032c10c w DF .text 00000000000000e8 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4syncEv +0000000000363ba4 w DF .text 00000000000001bc _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmmc +00000000001e78c8 g DF .text 0000000000000a10 load_cff +000000000022b970 g DF .text 000000000000005c _ZN2nn3hid6system12GetNpadStateEPNS1_15NpadSystemStateERKj +0000000000821110 w DO .rodata 00000000000000fd _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +00000000003343e0 w DF .text 0000000000000034 _ZNKSt3__17collateIwE7do_hashEPKwS3_ +00000000003a43d8 g DF .text 0000000000000008 __negdf2 +0000000000948510 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000a34c8 g DF .text 0000000000000160 _ZN2nn6socket6detail7ConnectEiPK8sockaddrj +0000000000158a40 g DF .text 0000000000000064 _ZN2nn3nsd6detail8FinalizeEv +00000000003c5854 w DF .text 0000000000000050 strxfrm_l +000000000011b648 g DF .text 0000000000000014 _ZN2nn3err18ErrorResultVariantC2ERKNS_6ResultE +00000000001d049c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E51_nn_sf_sync_StartDetachSharedLayerFromLowLevelLayerENS_2vi7fbshare17SharedLayerHandleE +000000000031ca50 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIhhEEPhEEjT0_S5_S5_S5_S5_T_ +000000000004424c w DF .text 0000000000000190 _ZN2nn2sf4hipc6detail17HipcMessageReader10InitializeEPKv +00000000003655c0 w DF .text 0000000000000030 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEaSEw +00000000000cc3a0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_PopInteractiveInDataENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEE +00000000002540ac g DF .text 000000000000001c _ZN2nn3web26OfflineHtmlPageReturnValueC1Ev +0000000000075810 g DF .text 0000000000000144 nnmem_nlib_strcplen +00000000000913a0 g DF .text 0000000000000004 nnosUnlockMutex +00000000007d50cc g DO .rodata 000000000000002a silk_sign_iCDF +00000000002c93e8 g DF .text 00000000000000d8 _ZN7android13GraphicBufferC1Ev +0000000000167b80 g DF .text 0000000000000058 _ZN2nn8settings6system18GetAudioOutputModeENS1_21AudioOutputModeTargetE +000000000018fc78 g DF .text 0000000000000064 _ZN2nn5audio22RequestSuspendAudioInsENS_6applet20AppletResourceUserIdENS_8TimeSpanE +0000000000328eec w DF .text 0000000000000084 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6snextcEv +00000000001b61a0 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor9GetHeightEv +00000000000bc064 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE30_nn_sf_sync_ApplyResponseAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEERKNS0_7InArrayIcEE +00000000001fc810 g DF .text 00000000000000ac get_charData +00000000000ba8e8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEE17GetCmifBaseObjectEv +00000000007d4bd6 g DO .rodata 0000000000000008 silk_Quantization_Offsets_Q10 +0000000000340fa4 w DF .text 0000000000000008 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13do_date_orderEv +0000000000023934 g DF .text 00000000000001ec _ZN2nn5image6detail4jpeg15jpeg_fdct_ifastEPiPPhi +000000000014f938 g DF .text 0000000000000080 _ZN2nn3ngc6detail19BuildRankDictionaryEPjPhjPKj +0000000000259230 g DF .text 0000000000000074 nvdcQueryUnderflows +000000000097d9a0 g DO .data 0000000000000018 _ZTIN10__cxxabiv116__shim_type_infoE +000000000006f3b8 g DF .text 0000000000000004 _ZN2nn4lmem19GetExpHeapBlockSizeEPKv +00000000001a3064 g DF .text 0000000000000008 _ZNK2nn5audio6server14MemoryPoolInfo7GetSizeEv +00000000001b65f4 g DF .text 0000000000000014 _ZN2nn3mii18GetMouthGreenColorENS0_11CommonColorENS0_9GammaTypeE +000000000014f9b8 g DF .text 00000000000000b0 _ZN2nn3ngc6detail19BuildRankDictionaryEPjPhjPKm +000000000009ebcc g DF .text 0000000000000094 _ZN2nn2sf4hipc6server34HipcServerSessionManagerWithDomain20ProcessManagerInvokeEPNS2_17HipcServerSessionEPKNS1_6detail25HipcMessageBufferAccessorEPKNS6_21HipcMessageHeaderInfoEPvm +0000000000152098 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E40_nn_sf_sync_IsAnyInternetRequestAcceptedENS0_3OutIbvEENS5_8ClientIdE +0000000000230ec8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E31_nn_sf_sync_StartFirmwareUpdateENS5_6system11UniquePadIdE +0000000000046f48 g DF .text 000000000000000c _ZN2nn2fs6detail24IsEnabledHandleAccessLogEPKv +00000000000bfcb8 g DF .text 0000000000000070 _ZN2nn7account29LoadCachedNintendoAccountInfoEPNS0_25CachedNintendoAccountInfoERKNS0_10UserHandleEPvm +00000000000f758c g DF .text 00000000000001f0 check_control_input +00000000000093c8 w DF .text 000000000000000c _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEED1Ev +00000000000d4f88 g DF .text 000000000000000c _ZN2nn4bcat6detail25DeliveryCacheProgressImpl10NotifyDoneENS_6ResultE +00000000007d65d0 g DO .rodata 0000000000000019 _ZTSN2nn5codec11OpusEncoderE +000000000012a6f4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +000000000004d8b4 g DF .text 00000000000000c4 _ZN2nn2fs6detail18FileSystemAccessor15RenameDirectoryEPKcS4_ +00000000000a1ac4 g DF .text 0000000000000004 nnsocketClose +0000000000239a48 g DF .text 000000000000000c _ZN2nn8irsensor6detail15IrSensorSession16GetFunctionLevelEPNS0_21IrSensorFunctionLevelERKNS0_14IrCameraHandleE +00000000007c6330 w DO .rodata 000000000000013e _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service7IWindowENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000016a978 g DF .text 0000000000000048 _ZN2nn8settings6system17SetLockScreenFlagEb +00000000000a0288 g DF .text 0000000000000020 _ZN2nn2sf4hipc10CreatePortEPNS_3svc6HandleES4_i +00000000009471c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000001cd444 w DF .text 00000000000000b0 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_5visrv2sf26IApplicationDisplayServiceEEEvi +00000000001e4db8 g DF .text 0000000000000010 find_graymap_in_cache +0000000000186810 g DF .text 000000000000000c _ZN2nn5audio14IsDelayEnabledEPKNS0_9DelayTypeE +000000000022cf50 g DF .text 000000000000004c _ZN2nn3hid25SetGyroscopeZeroDriftModeERKNS0_19SixAxisSensorHandleERKNS0_22GyroscopeZeroDriftModeE +0000000000347534 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb0EE16do_negative_signEv +000000000017fd04 g DF .text 00000000000000b0 _ZN2nn4time14ToCalendarTimeEPNS0_12CalendarTimeEPNS0_22CalendarAdditionalInfoERKNS0_9PosixTimeE +000000000007d410 g DF .text 0000000000000088 nnmem_nlib_snwprintf_fallback +0000000000286924 g DF .text 000000000000000c NvRmGpuRegOpsSessionCreateChannelless +00000000002c8abc g DF .text 0000000000000118 sync_print +000000000003b7f4 g DF .text 000000000000002c _ZNK2nn4util16BinaryFileHeader14FindFirstBlockEi +00000000000888e0 g DF .text 0000000000000004 _ZN2nn7nlibsdk4heap19DataCorruptionErrorEPKv +00000000007db810 w DO .rodata 0000000000000019 _ZTSN2nn3nfc6detail7ISystemE +0000000000070fa0 g DF .text 0000000000000030 _ZN2nn4lmem6detail23GetRequiredUnitHeapSizeEmiib +00000000002cf184 g DF .text 0000000000000098 _ZN7android7String86formatEPKcz +000000000039e70c g DF .text 0000000000000208 __adddf3 +00000000007ebbf0 w DO .rodata 000000000000002d _ZTSN2nn5audio6detail24IAudioInManagerForAppletE +000000000009cc34 g DF .text 0000000000000004 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase18WaitAndProcessAutoEv +00000000001b00fc g DF .text 00000000000000b4 _ZN2nn5audio3dsp20DspExceptionNotifier11AddObserverEPFvPvES3_ +00000000001d4dd0 g DF .text 0000000000000070 _ZN2nn2vi13SetLayerAlphaEPNS0_5LayerEf +000000000006b088 g DF .text 0000000000000094 _ZN2nn2fs16SaveDataExporter15PullInitialDataEPvm +000000000002676c g DF .text 00000000000004d0 _ZN2nn5image6detail4jpeg15jpeg_idct_14x14EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000190240 g DF .text 0000000000000064 _ZN2nn5audio28RequestSuspendAudioRenderersENS_6applet20AppletResourceUserIdENS_8TimeSpanE +00000000007e5cb0 w DO .rodata 0000000000000103 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEvEE +000000000023c47c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E17GetCmifBaseObjectEv +000000000095d120 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_EE +000000000022040c w DF .text 0000000000000004 _ZN2nn3hid6detail17NpadSystemExtLifoD0Ev +00000000000b1fc0 g DF .text 0000000000000034 _ZN2nn7account6detail18OAuthProcedureBaseC2EOS2_ +0000000000124150 g DF .text 0000000000000028 _ZN2nn7friends6detail28CheckInternetRequestAcceptedEv +0000000000359f20 w DF .text 0000000000000290 _ZNSt3__113utf16_to_utf8IjEENS_9enable_ifIXoosr7is_sameIT_tEE5valuesr7is_sameIS2_jEE5valueENS_12codecvt_base6resultEE4typeEPKS2_S8_RS8_PhSA_RSA_mNS_12codecvt_modeE +000000000020f4f0 g DF .text 0000000000000010 FsScratchSpace_shrink +00000000000917a0 g DF .text 0000000000000080 _ZN2nn2os6detail13ThreadManager13CleanupThreadEv +0000000000952b20 w DO .data 0000000000000018 _ZTIN2nn3nfp6detail14ISystemManagerE +0000000000134678 g DF .text 0000000000000070 _ZN2nn4htcs6detail25virtual_socket_collection3AddENS_2sf13SharedPointerINS_3tma7ISocketEEE +0000000000042b30 g DF .text 0000000000000138 _ZN2nn4edid6cea86115VisitDataBlocksEPKhmPFbS3_mNS1_8BlockTagEPvES5_ +000000000004f068 g DF .text 0000000000000138 _ZN2nn2fs9WriteFileENS0_10FileHandleElPKvmRKNS0_11WriteOptionE +0000000000122260 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo19GetRequestRouteInfoEv +0000000000353f30 g DF .text 0000000000000068 _ZNSt3__16localeC2ERKS0_S2_i +00000000000b77c8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE24_nn_sf_sync_GetUserCountENS0_3OutIivEE +00000000001b01b0 g DF .text 00000000000000c0 _ZN2nn5audio3dsp20DspExceptionNotifier14RemoveObserverEPFvPvE +000000000005f9f4 g DF .text 0000000000000030 _ZN2nn2fs6detail29DirectoryServiceObjectAdapterC1EONS_2sf13SharedPointerINS_5fssrv2sf10IDirectoryEEE +00000000000a006c g DF .text 0000000000000048 _ZN2nn2sf4hipc21CloseClientPortHandleENS_3svc6HandleE +00000000001bcd4c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetHairFlipEi +00000000003e0f68 w DF .text 0000000000000094 __strtoumax_internal +00000000007dfa90 g DO .rodata 000000000000001e _ZTSN2nn3ngc6detail11InputStreamE +000000000029ed68 g DF .text 00000000000001a0 _ZN7android6Parcel14writeByteArrayEmPKh +00000000009531c8 w DO .data 0000000000000010 _ZTIN2nn3ngc19ProfanityFilterBaseE +0000000000263030 g DF .text 0000000000000158 NvOsThreadCreateWithAttr +00000000003bbc30 g DF .text 000000000000000c crypt +00000000003cfa6c g DF .text 0000000000000030 __expo2f +000000000080d4d0 w DO .rodata 00000000000000fe _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail14IrSensorServerEEEEEE13ServiceObjectE +00000000003e0e40 w DF .text 0000000000000094 __strtol_internal +000000000018ec10 g DF .text 000000000000008c _ZN2nn5audio22ResampleOutputFrame2ChEPNS0_17ResamplerState2ChEPKsPsiif +00000000001b5898 g DF .text 0000000000000050 _ZNK2nn2la21CommonArgumentsWriter6ExportEPvm +0000000000226538 g DF .text 0000000000000060 _ZN2nn3hid6detail35ResetSixAxisSensorCalibrationValuesENS0_6system25UniqueSixAxisSensorHandleE +00000000000bf7a0 g DF .text 0000000000000058 _ZNK2nn7account38ExternalNetworkServiceAccountRegistrar37LoadNetworkServiceAccountIdTokenCacheEPmPcm +00000000000a5750 g DF .text 0000000000000004 _ZN2nn6socket6detail8InetNtopEiPKvPcj +0000000000947d00 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas24IManagerForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +000000000094b930 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000094bb00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000007ca160 w DO .rodata 0000000000000025 _ZTSN2nn2am7service18IHomeMenuFunctionsE +00000000001e05b8 g DF .text 000000000000010c fontfile_type +00000000001c3408 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw8SetNoseYEi +00000000000720c0 g DF .text 0000000000000120 nnmem_nlib_condrwlock_wait_until +00000000000880bc g DF .text 0000000000000164 _ZN2nn7nlibsdk4heap14TlsHeapCentral5Dump_E15NMallocDumpModei +00000000000a226c g DF .text 0000000000000034 _ZN2nn6socket6detail12SetLastErrnoEi +000000000013410c g DF .text 0000000000000098 _ZN2nn4htcs6detail25virtual_socket_collectionD2Ev +000000000094e470 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000178a30 g DF .text 00000000000000b8 _ZN2nn3ssl10Connection9GetIoModeEPNS1_6IoModeE +00000000001b8fbc g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw16GetEyebrowAspectEv +000000000001ffdc g DF .text 00000000000000b8 _ZN2nn5image6detail4jpeg19jinit_marker_readerEPNS2_22jpeg_decompress_structE +00000000001d1e00 w DF .text 00000000000001b8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi70ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl16EEENSG_ILm8ELm8ELl24EEENSG_ILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSG_ILm4ELm4ELl8EEENSG_ILm4ELm4ELl12EEENSG_ILm8ELm8ELl32EEENSG_ILm8ELm8ELl40EEEEEELm48ELm16ELb1EEESP_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEESW_NSU_24BufferClientArgumentTypeENSU_23InRawClientArgumentTypeILm8ELm8EvEESZ_NSY_ILm4ELm4EvEES10_S10_S10_SZ_SZ_j +00000000000703dc g DF .text 000000000000000c _ZN2nn4lmem6detail19GetExpHeapAllocModeEPNS1_8HeapHeadE +00000000000efc8c g DF .text 0000000000000b04 silk_A2NLSF +0000000000115bc4 g DF .text 000000000000016c opus_multistream_encoder_create +000000000015d000 g DF .text 000000000000007c _ZN2nn4pctl10SetPinCodeEPKc +00000000001b631c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor8GetMoleYEv +000000000008f2bc g DF .text 0000000000000068 _ZN2nn2os22MoveAllMultiWaitHolderEPNS0_13MultiWaitTypeES2_ +0000000000944688 g DO .data 0000000000000030 _ZTVN2nn2fs6detail29DirectoryServiceObjectAdapterE +000000000095a5e0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000007adc5c g DO .rodata 0000000000000004 _ZN2nn4util8Color4u812ConstantBlueE +00000000003a1650 g DF .text 0000000000000028 __fixdfdi +00000000001504a8 g DF .text 000000000000008c _ZN2nn4nifm6detail29TemporaryNetworkProfileClientC1ERKNS0_18NetworkProfileDataE +0000000000a41490 g DO .bss 0000000000000008 _ZN22nerd_gillette_internal5otete14ScopeAllocator10s_instanceE +00000000003ca62c g DF .text 0000000000000160 fmod +0000000000024bc8 g DF .text 00000000000003e4 _ZN2nn5image6detail4jpeg13jpeg_idct_4x4EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000002a1634 g DF .text 000000000000003c _ZN7android6Parcel4Blob7releaseEv +000000000015ac2c w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm76784EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +0000000000006bd4 g DF .text 00000000000004d0 _ZN2nn6crypto6detail8Sha1Impl16ProcessLastBlockEv +00000000000c5358 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000188f30 g DF .text 0000000000000008 _ZNK2nn5audio15AudioBufferListINS0_25FinalOutputRecorderBufferEE5frontEv +00000000007f0830 w DO .rodata 0000000000000064 _ZTSN2nn2sf6detail18EmplacedImplHolderINS_5audio6server24AudioRendererManagerImpl17AudioRendererImplEEE +00000000003a43e0 g DF .text 0000000000000008 __negdi2 +00000000002203c0 w DF .text 0000000000000004 _ZN2nn3hid6detail15TouchScreenLifoD0Ev +00000000009495a8 g DO .data 0000000000000010 _ZTIN2nn7account28NetworkServiceAccountManagerE +00000000001289a8 w DF .text 0000000000000210 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm56EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILi1ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSL_ILm4ELm4ELl0EEEEEELm24ELm4ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEESV_NS2_23InRawClientArgumentTypeILm16ELm8EvEENSY_ILm4ELm4EvEEj +0000000000822dac g DO .rodata 0000000000000004 _ZNSt3__16locale4noneE +0000000000084154 g DF .text 0000000000000104 _ZN2nn7nlibsdk4heap14TlsHeapCentral8AllocPhyEPvm +00000000000c1fc4 g DF .text 0000000000000034 _ZNK2nn7account49ExternalNetworkServiceAccountIntroducingProcedure26GetLinkedNintendoAccountIdEPNS0_17NintendoAccountIdE +000000000015dc70 g DF .text 0000000000000050 _ZN2nn4pctl14DeleteSettingsEv +000000000036d3dc g DF .text 0000000000000018 _ZNSt3__122__libcpp_mutex_destroyEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +000000000004482c g DF .text 00000000000000dc _ZN2nn4diag6detail8VLogImplERKNS0_11LogMetaInfoEPKcSt9__va_list +00000000000a4470 g DF .text 0000000000000070 _ZN2nn6socket6detail10SockAtMarkEi +000000000023b0d0 g DF .text 0000000000000008 _ZN2nn8irsensor30GetIrLedProcessorDefaultConfigEPNS0_20IrLedProcessorConfigE +0000000000124314 g DF .text 0000000000000048 _ZN2nn7friends6detail17SetAsyncAllocatorEPFPvmEPFvS2_mE +0000000000160298 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +00000000001c3208 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetAuthorTypeEi +0000000000250a8c g DF .text 00000000000000e4 _ZN2nn3ldn6detail33CreateMonitorServiceCreatorByHipcEv +00000000009a9170 g DO .bss 0000000000000008 _ZN2nn2ro6detail14g_pRoDebugFlagE +00000000001b9300 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw16GetMustacheScaleEv +0000000000270818 g DF .text 0000000000000040 NvRmSyncMerge +00000000003552b0 g DF .text 0000000000000044 _ZNKSt3__15ctypeIwE10do_scan_isEtPKwS3_ +00000000003a87a8 g DF .text 0000000000000308 __get_locale +000000000017641c w DF .text 00000000000001cc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi25ELm256EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +000000000094e8a8 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +0000000000162300 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm4EEENS2_27OutHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000232b9c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E12GetProxyInfoEv +0000000000945928 g DO .data 0000000000000038 _ZTVN2nn2os6detail36MultiWaitHolderOfMessageQueueNotFullE +00000000001e49ec g DF .text 00000000000001cc save_to_cache +00000000003ce7a4 g DF .text 0000000000000154 sincos +0000000000170820 g DF .text 0000000000000070 _ZN2nn8settings6detail19GetHostFsMountPointEPNS0_6system16HostFsMountPointE +0000000000091214 g DF .text 0000000000000034 _ZN2nn2os19AllocateMemoryPagesEmm +0000000000947fc8 w DO .data 0000000000000080 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile14IProfileEditorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000000c7f50 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_GetLastForegroundCaptureImageExENS0_3OutIbvEERKNS0_9OutBufferE +0000000000255fe4 g DF .text 000000000000001c _ZN2nn3web6detail23SharePageReturnValue2_0C1Ev +0000000000822dd8 g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5digitE +000000000009c4d0 g DF .text 0000000000000090 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase16ReceiveAsSessionEPNS_2os19MultiWaitHolderTypeEPvm +00000000001a7b7c g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_25PcmInt16DataSourceCommandE +0000000000805210 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi81EE4MaskE +0000000000971f60 g DO .data 0000000000000248 _ZTCN7android17BnSurfaceComposerE0_NS_11BnInterfaceINS_16ISurfaceComposerEEE +00000000000c2b74 g DF .text 0000000000000050 _ZN2nn2am27IsInitializedAsSystemAppletEv +000000000095bed8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail37SixAxisSensorUserCalibrationStateLifoE +000000000008f200 g DF .text 0000000000000010 _ZN2nn2os10TryWaitAnyEPNS0_13MultiWaitTypeE +0000000000149130 g DF .text 0000000000000018 _ZN2nn3ngc6detail2Bp12SetAllocatorEPNS1_16WorkBufAllocatorE +00000000001bc870 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw16GetMustacheScaleEv +00000000002c4a24 g DF .text 00000000000001dc _ZN7android8Composer19getLayerStateLockedERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEE +0000000000329068 w DF .text 0000000000000040 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2Ev +0000000000053d94 w DF .text 000000000000006c _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBaseD2Ev +00000000003ab004 g DF .text 0000000000000010 pthread_attr_getschedpolicy +00000000001582f8 g DF .text 00000000000000f8 _ZN2nn4nifm6detail12HttpPostData9EncodeAddEPKcS4_iNS1_6Base644ModeE +000000000035bfa0 g DF .text 00000000000000a0 _ZNKSt3__120__time_get_c_storageIwE3__rEv +00000000003bcf30 g DF .text 00000000000000ac __crypt_des +0000000000948550 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas14IAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000263984 g DF .text 0000000000000008 NvOsTlsAddTerminator +00000000000c2748 g DF .text 000000000000004c _ZN2nn2am21GetLibraryAppletProxyEv +00000000002393a0 g DF .text 0000000000000014 _ZN2nn8irsensor6detail7SessionD1Ev +00000000001bc88c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetMoleScaleEv +000000000022d2c8 g DF .text 0000000000000060 _ZN2nn3hid6system20GetSleepButtonStatesEPNS1_16SleepButtonStateEi +00000000003a3bec g DF .text 00000000000000f4 __mulvsi3 +0000000000036508 g DF .text 0000000000000088 nnutilZlib_inflatePrime +00000000000419a8 g DF .text 0000000000000030 _ZN2nn4edid6detail17GetVideoInterfaceEh +0000000000800120 w DO .rodata 00000000000001a9 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail16IDatabaseServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +000000000097b890 g DO .data 0000000000000018 _ZTINSt3__18numpunctIwEE +000000000009f2c4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage10SetBuffersEPNS0_6detail14PointerAndSizeE +000000000017131c w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object11DisposeImplEv +0000000000227748 g DF .text 0000000000000090 _ZN2nn3hid6detail18SendVibrationValueERKNS0_21VibrationDeviceHandleERKNS0_14VibrationValueE +000000000097da58 g DO .data 0000000000000038 _ZTVN10__cxxabiv116__shim_type_infoE +00000000000ba88c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17_nn_sf_sync_StoreERKNS6_11ProfileBaseERKNS6_8UserDataE +000000000016ae10 g DF .text 0000000000000044 _ZN2nn8settings6system22GetTelemetryDirtyFlagsEPNS_4util10BitFlagSetILi128ENS1_18TelemetryDirtyFlagEEE +0000000000167e88 g DF .text 0000000000000044 _ZN2nn8settings6system20SetBacklightSettingsERKNS1_17BacklightSettingsE +00000000002cedb8 g DF .text 0000000000000030 _ZN7android7String8C1ENS0_13StaticLinkageE +0000000000241c70 g DF .text 0000000000000060 _ZN22nerd_gillette_internal5otete11ImageCodec212QuantizationILm5EEEiRhh +00000000000b13d0 g DF .text 0000000000000038 _ZN2nn6socket6detail12FreeAddrInfoEP8addrinfo +00000000007e3ed0 w DO .rodata 0000000000000027 _ZTSN2nn8settings22IFactorySettingsServerE +0000000000331190 w DF .text 00000000000000a0 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE6sentryD2Ev +000000000014ed10 g DF .text 00000000000000bc _ZNK2nn3ngc6detail9SparseSet7Select1Ej +00000000007e0130 w DO .rodata 000000000000015f _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +000000000014c878 g DF .text 0000000000000058 _ZNK2nn3ngc6detail9SbvSelect7MemSizeEv +0000000000198df4 g DF .text 0000000000000290 _ZN2nn5audio11OpenAudioInEPNS0_7AudioInEPKcRKNS0_16AudioInParameterE +00000000000c0ae8 g DF .text 00000000000000a8 _ZN2nn7account34NetworkServiceAccountAdministrator52CreateProcedureToUpdateLinkageStateOfNintendoAccountEPNS0_6detail24SimpleOAuthProcedureBaseE +00000000002501fc g DF .text 00000000000000ac _ZN2nn3ldn7ConnectERKNS0_11NetworkInfoERKNS0_14SecurityConfigERKNS0_10UserConfigEi +0000000000042130 g DF .text 0000000000000068 _ZN2nn4edid6detail23GetEstablishedTimingIIIEPFbPKNS0_15DisplayModeInfoEPKNS0_17DisplayTimingInfoEPKNS0_13ImageSizeInfoEPvESB_h +000000000006aaf0 g DF .text 0000000000000174 _ZN2nn2fs23SaveDataTransferManager20OpenSaveDataExporterEPNSt3__110unique_ptrINS0_16SaveDataExporterENS2_14default_deleteIS4_EEEENS0_15SaveDataSpaceIdEm +00000000001b5b74 g DF .text 0000000000000008 _ZNK2nn2la32NifmToWifiWebAuthArgumentsWriter13GetExportSizeEv +00000000001cb2b0 g DF .text 000000000000007c _ZN2nn5swkbd6detail18InlineKeyboardImpl23CalcFinishedInitialize_ENS_6applet13StorageHandleEm +00000000000743f0 g DF .text 00000000000000fc nnmem_nlib_strlen_generic +000000000009f054 w DF .text 00000000000000f4 _ZN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage17PrepareForProcessERKNS1_19CmifMessageMetaInfoE +00000000001d039c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E50_nn_sf_sync_BindSharedLowLevelLayerToIndirectLayerEmNS_6applet20AppletResourceUserIdE +0000000000091384 g DF .text 0000000000000004 nnosTryWaitTimerEvent +00000000001dd890 g DF .text 0000000000000110 FSS_init +000000000023c434 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E35_nn_sf_sync_StopImageProcessorAsyncENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleE +0000000000071d38 g DF .text 0000000000000044 nnmem_nlib_rwlock_trywrlock_for +00000000003c271c w DF .text 0000000000000010 isupper_l +00000000000c4a6c g DF .text 0000000000000010 _ZN2nn2am23GetAppletResourceUserIdEv +00000000001301f0 w DF .text 000000000000019c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm4ELb0EEESH_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSM_27OutObjectClientArgumentTypeENSM_23InRawClientArgumentTypeILm1ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000015ed2c g DF .text 0000000000000128 _ZN2nn4pctl18PairingAccountInfo11GetMiiImageEPmPvm +00000000003cc7d0 g DF .text 0000000000000198 log1pf +000000000005e3b4 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl8EEENSG_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENSQ_ILm4ELm4EvEEj +00000000001bf508 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetHairTypeEv +000000000095d050 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail9HidServerEEEEEE13ServiceObjectE +00000000002304f8 g DF .text 0000000000000044 _ZN2nn3hid15BindXpadIdEventEPNS_2os15SystemEventTypeENS1_14EventClearModeE +0000000000152a14 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E23_nn_sf_sync_SetSharableEb +000000000015c354 g DF .text 0000000000000058 _ZN2nn2oe20GetCurrentFocusStateEv +00000000003cc968 g DF .text 000000000000001c log1pl +0000000000955d20 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf14ISslConnectionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +0000000000823fbd g DO .rodata 0000000000000001 _ZNSt3__113allocator_argE +0000000000006af8 g DF .text 00000000000000dc _ZN2nn6crypto6detail8Sha1Impl7GetHashEPvm +00000000002c8c60 g DF .text 0000000000000028 _ZN7android11DisplayEDID5clearEv +000000000000981c w DF .text 000000000000009c _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE10ComputeMacEb +000000000015fa04 g DF .text 0000000000000068 _ZN2nn4pctl6detail3ipc10GetServiceEv +00000000002a47e0 g DF .text 0000000000000034 _ZN7android14IPCThreadStateC2Ev +000000000022b168 g DF .text 0000000000000064 _ZN2nn3hid6system13DeactivateNfcEjNS_6applet20AppletResourceUserIdE +000000000025351c g DF .text 00000000000000b4 _ZN2nn3web35ShowApplicationLegalInformationPageEPNS0_26OfflineHtmlPageReturnValueERKNS0_38ShowApplicationLegalInformationPageArgE +0000000000098e80 g DF .text 0000000000000010 _ZN2nn2ro6detail8RoModule8CallInitEv +000000000012d5c8 g DF .text 0000000000000070 _ZN2nn2fs26WriteSaveDataThumbnailFileEmRKNS_7account3UidEPKvmS6_m +000000000023285c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E37_nn_sf_sync_StartConsoleSixAxisSensorENS_6applet20AppletResourceUserIdENS5_26ConsoleSixAxisSensorHandleE +0000000000264538 g DF .text 0000000000000008 NvOsMemset +00000000003abfb0 g DF .text 0000000000000020 __secs_to_zone +000000000017d290 w DF .text 00000000000000b0 _ZN2nn4time6detail25AdjustableSystemClockBaseINS0_23StandardUserSystemClockEE6AdjustEv +00000000007f6270 g DO .rodata 0000000000000018 _ZN2nn3mii6detail17PantsRegularColorE +0000000000a80c20 w DO .bss 0000000000000010 _ZNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE2idE +0000000000024fac g DF .text 000000000000021c _ZN2nn5image6detail4jpeg13jpeg_idct_3x3EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000000453b0 g DF .text 0000000000000028 _ZN2nn4diag6detail16PrintDebugStringEPKc +0000000000122510 g DF .text 0000000000000008 _ZNK2nn7friends23NintendoNetworkIdFriend10GetMiiNameEv +0000000000955a60 w DO .data 0000000000000018 _ZTIN2nn3ssl2sf11ISslContextE +0000000000263940 g DF .text 0000000000000008 NvOsTlsGet +00000000003de524 g DF .text 0000000000000018 setbuffer +0000000000005a38 w DF .text 0000000000000088 _ZNK2nn6crypto6detail7AesImplILm24EE12DecryptBlockEPvmPKvm +000000000025a490 g DF .text 00000000000000a4 nvdcDPMS +00000000003a7ca4 g DF .text 0000000000000000 _setjmp +00000000000c5204 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_OpenSystemApplicationProxyENS0_3OutINS0_13SharedPointerINS6_17IApplicationProxyEEEvEEmONS0_12NativeHandleE +0000000000135f84 g DF .text 0000000000000014 _ZN2nn2lm6detail20LogPacketTransmitterC1EPvmPFbPKhmEhhmbb +000000000015551c g DF .text 000000000000001c _ZN2nn4nifm21FinalizeSystemForTestEv +00000000001d2e80 g DF .text 00000000000000b4 _ZN2nn2vi20GetDisplayVsyncEventEPNS_2os15SystemEventTypeEPNS0_7DisplayE +0000000000086910 w DF .text 000000000000013c _ZN2nn7nlibsdk4heap14TlsHeapCentral14MergeFreeSpansEPNS1_4SpanES4_m +0000000000122964 g DF .text 000000000000000c _ZN2nn7friends11PlayHistoryC1Ev +000000000004f27c g DF .text 00000000000000f4 _ZN2nn2fs11SetFileSizeENS0_10FileHandleEl +000000000010bc20 g DF .text 0000000000000090 opus_decoder_get_nb_samples +0000000000125830 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E18_nn_sf_sync_CancelEv +00000000000d8390 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000318e60 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_GetOscillatorClockENS0_3OutIjvEE +0000000000170168 g DF .text 00000000000000c4 _ZN2nn8settings6detail27BindTelemetryDirtyFlagEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000001d6b50 g DF .text 000000000000001c _ZN2nn2vi6detail18SystemServiceProxy28GetApplicationDisplayServiceEv +00000000003a5f58 g DF .text 00000000000001ac __atomic_compare_exchange_1 +00000000003ab1ec g DF .text 0000000000000004 sem_timedwait +000000000018fe90 g DF .text 000000000000005c _ZN2nn5audio29RequestResumeAudioInsForDebugENS_6applet20AppletResourceUserIdE +0000000000286cbc g DF .text 000000000000000c NvRmGpuChannelZcullBind +00000000003a6104 g DF .text 00000000000001ac __atomic_compare_exchange_2 +000000000094bda8 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service13ILockAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000002cc06c g DF .text 0000000000000008 _ZNK7android6Region14mergeExclusiveERKS0_ +0000000000330f68 w DF .text 0000000000000084 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEEC2EPNS_15basic_streambufIwS2_EE +00000000003a62b0 g DF .text 00000000000001ac __atomic_compare_exchange_4 +0000000000041000 g DF .text 00000000000001c0 _ZN2nn4util30PickOutCharacterFromUtf8StringEPcPPKc +00000000001221dc g DF .text 0000000000000024 _ZN2nn7friends6Friend6UpdateEv +00000000003a645c g DF .text 00000000000001ac __atomic_compare_exchange_8 +00000000000901a0 g DF .text 0000000000000018 _ZN2nn2os13DestroyThreadEPNS0_10ThreadTypeE +00000000000c5858 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE30_nn_sf_sync_GetAudioControllerENS0_3OutINS0_13SharedPointerINS6_16IAudioControllerEEEvEE +000000000097b790 g DO .data 0000000000000018 _ZTINSt3__114collate_bynameIcEE +00000000002a1270 g DF .text 0000000000000014 _ZNK7android6Parcel11ipcDataSizeEv +000000000035be6c g DF .text 00000000000000a0 _ZNKSt3__120__time_get_c_storageIwE3__cEv +000000000024f9e0 g DF .text 0000000000000084 _ZN2nn3ldn22AttachStateChangeEventEPNS_2os15SystemEventTypeE +00000000002cb19c g DF .text 0000000000000070 _ZNK7android4Rect9transformEjii +00000000002384e8 g DF .text 0000000000000070 _ZN2nn8irsensor6detail23SetAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +0000000000327340 g DF .text 00000000000000b4 _ZNSt3__17promiseIvE9set_valueEv +000000000021bb44 g DF .text 00000000000001fc _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_17NpadJoyRightStateEiRKj +00000000002864b0 g DF .text 0000000000000044 nvgr_read_event_counter +0000000000144e54 g DF .text 000000000000008c _ZN2nn3ngc6detail14ContentsReader14GetFileContentEPvPcj +00000000001afbe8 g DF .text 000000000000008c _ZN2nn5audio3dsp17ApplyUniformGain1EPiPKiii +00000000003a3af8 g DF .text 00000000000000f4 __mulvdi3 +00000000001a253c g DF .text 0000000000000008 _ZNK2nn5audio6server12BehaviorInfo18GetUserLibRevisionEv +000000000080d330 g DO .rodata 0000000000000027 _ZTSN2nn8irsensor6detail15IrSensorSessionE +000000000036dedc g DF .text 0000000000000034 __cxa_bad_typeid +00000000003e3bd0 g DF .text 0000000000000010 pthread_mutexattr_init +0000000000825274 g DO .rodata 000000000000000c _ZTSSt8bad_cast +00000000003b8368 w DF .text 0000000000000090 strtod_l +00000000007a8630 g DO .rodata 0000000000000019 _ZTSN2nn5image11JpegEncoderE +000000000032f130 w DF .text 000000000000004c _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryC1ERS3_ +000000000016e954 g DF .text 0000000000000070 _ZN2nn8settings6detail13GetRegionCodeEPi +000000000018aa0c g DF .text 0000000000000094 _ZN2nn5audio11SinkManager19UpdateSinkOutStatusEPNS0_6common13SinkOutStatusE +0000000000092558 g DF .text 0000000000000048 _ZNK2nn2os6detail11TickManager17ConvertToTimeSpanENS0_4TickE +00000000003e1ed0 w DF .text 0000000000000090 strcasecmp_l +00000000007c5050 w DO .rodata 0000000000000028 _ZTSN2nn2am7service21IStackableAppletProxyE +0000000000163d34 g DF .text 0000000000000048 _ZN2nn5prepo6detail7msgpack13WriteFixArrayEPNS2_17OutputStreamParamEh +0000000000167af8 g DF .text 0000000000000044 _ZN2nn8settings6system14GetAudioVolumeEPNS1_11AudioVolumeENS1_17AudioVolumeTargetE +000000000006d468 g DF .text 0000000000000070 _ZN2nn3htc13GetBridgePortEPcm +00000000000ca55c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24ITransferStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000001a4f50 g DF .text 0000000000000024 _ZNK2nn5audio6server22CircularBufferSinkInfo26ShouldUpdateWorkBufferInfoEPKNS0_6common15SinkInParameterE +0000000000017e04 g DF .text 00000000000000f0 _ZN2nn5image6detail4jpeg22jpeg_finish_decompressEPNS2_22jpeg_decompress_structE +00000000003a7d2c g DF .text 000000000000005c opendir +000000000029c7f0 g DF .text 0000000000000064 _ZN7android10MemoryBaseD2Ev +0000000000358858 g DF .text 000000000000000c _ZNKSt3__114__codecvt_utf8IwE10do_unshiftER11__mbstate_tPcS4_RS4_ +0000000000255760 g DF .text 00000000000000a4 _ZN2nn3web16ShowSharePageArgC2ENS0_14ShareStartPageE +0000000000357d1c g DF .text 0000000000000008 _ZNKSt3__17codecvtIDsc11__mbstate_tE11do_encodingEv +0000000000396764 g DF .text 0000000000000054 _ZNSt13runtime_errorD1Ev +00000000000d3548 g DF .text 0000000000000038 _ZN2nn6applet46TakeScreenShotOfOwnLayerIntoCallerAppletBufferEb +00000000002533a8 g DF .text 000000000000001c _ZN2nn3web20LobbyPageReturnValueC2Ev +0000000000168088 g DF .text 0000000000000060 _ZN2nn8settings6system27GetBluetoothDevicesSettingsEPNS1_24BluetoothDevicesSettingsEi +00000000001a2210 g DF .text 0000000000000074 _ZN2nn5audio6server18PerformanceManager12GetNextEntryEPNS1_25PerformanceEntryAddressesENS0_20PerformanceEntryTypeEj +0000000000081720 g DF .text 0000000000000018 nnmem_nlib_semaphore_wait +0000000000958eb8 w DO .data 0000000000000028 _ZTVN2nn5audio6server10EffectInfoILNS0_10EffectTypeE3ENS0_14DelayParameterEEE +0000000000156ec8 g DF .text 0000000000000018 _ZN2nn4nifm17NetworkConnection9GetResultEv +0000000000161708 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_17InRawArgumentInfoILm32ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEEEEELm32ELm1ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_23InRawClientArgumentTypeILm32ELm1EvEENS2_24BufferClientArgumentTypeEj +000000000021e864 g DF .text 0000000000000060 _ZN2nn3hid6detail27GetLastActiveNpadControllerEPj +00000000000094d8 w DF .text 0000000000000344 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE9UpdateAadEPKvm +00000000003c2abc g DF .text 0000000000000004 __iswctype_l +00000000003cf83c g DF .text 0000000000000058 __cosdf +00000000007e6170 w DO .rodata 0000000000000106 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEvEE +000000000006ee64 g DF .text 0000000000000044 _ZN2nn4lmem15GetStartAddressEPNS0_6detail8HeapHeadE +00000000007d4cce g DO .rodata 000000000000000c silk_pitch_contour_10_ms_iCDF +00000000003de4ac w DF .text 0000000000000010 putwchar_unlocked +000000000023af8c g DF .text 0000000000000018 _ZN2nn8irsensor32GetPointingProcessorMarkerStatesEPNS0_28PointingProcessorMarkerStateEPiiRKNS0_14IrCameraHandleE +0000000000324e14 g DF .text 00000000000000ac _ZNSt3__18__c_node5__addEPNS_8__i_nodeE +00000000003dffb0 g DF .text 0000000000000080 __toread +00000000001b5c50 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor9GetGenderEv +0000000000324958 g DF .text 00000000000000b4 _ZNSt3__111__libcpp_dbD1Ev +000000000025bff0 g DF .text 000000000000001c NvMemoryProfilerEndFree +000000000035c040 g DF .text 000000000000012c _ZNSt3__110__time_getC1EPKc +0000000000362e08 w DF .text 0000000000000064 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6resizeEmc +0000000000234a70 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E43_nn_sf_sync_GetXcdHandleForNpadWithIrSensorEjNS0_3OutImvEENS_6applet20AppletResourceUserIdE +00000000000ce270 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE31_nn_sf_sync_GetWindowControllerENS0_3OutINS0_13SharedPointerINS6_17IWindowControllerEEEvEE +0000000000125e88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_GetPlayHistoryStatisticsENS0_3OutINS5_21PlayHistoryStatisticsEvEERKNS_7account3UidE +0000000000979628 w DO .data 0000000000000010 _ZTTNSt3__113basic_ostreamIcNS_11char_traitsIcEEEE +0000000000174adc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_GetTelemetryDirtyFlagsENS0_3OutINS_4util10BitFlagSetILi128ENS5_6system18TelemetryDirtyFlagEEEvEE +00000000001d20d0 w DF .text 0000000000000198 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm4ELm4ELl8EEENSD_ILm8ELm1ELl0EEEEEELm12ELm0ELb0EEESG_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSL_23InRawClientArgumentTypeILm4ELm4EvEENSN_ILm8ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000003160e0 g DF .text 0000000000000004 _ZN2nn3i2c8FinalizeEv +00000000008055f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi112EE4MaskE +0000000000074e28 g DF .text 000000000000008c nnmem_nlib_wcsncat +000000000094ba70 w DO .data 0000000000000018 _ZTIN2nn2am7service18ISystemAppletProxyE +00000000001a9848 g DF .text 00000000000000b0 _ZN2nn5audio3dsp6detail14ApplyDepopMix2EPiiii +000000000014633c g DF .text 0000000000000188 _ZN2nn3ngc6detail12BinaryReader9ReadArrayEPtm +000000000036d690 g DF .text 0000000000000008 _ZNSt3__116__libcpp_tls_getENSt13__libcxx_shim19__libcxx_shim_ver_111__tls_key_tE +000000000022a0a4 g DF .text 000000000000000c _ZNK2nn3hid15KeyCodeComposer21GetRomajiHiraganaModeEv +0000000000979250 g DO .data 0000000000000020 _ZTVSt16nested_exception +00000000000bbe08 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E43_nn_sf_sync_DebugSetAvailabilityErrorDetailEj +000000000031a174 g DF .text 0000000000000054 _ZN2nn3pwm10SetEnabledEPNS0_14ChannelSessionEb +0000000000119150 g DF .text 0000000000000010 _ZN2nn5codec6detail19SetLsbDepthInternalEP11OpusEncoderi +0000000000398848 g DF .text 00000000000000ec __cxa_rethrow +000000000006772c g DF .text 000000000000010c _ZN2nn2fs20OpenSaveDataIteratorEPNSt3__110unique_ptrINS0_16SaveDataIteratorENS1_14default_deleteIS3_EEEENS0_15SaveDataSpaceIdE +000000000007df54 g DF .text 00000000000000d4 nnmem_nlib_strto_float_fallback +0000000000138730 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENS2_24BufferClientArgumentTypeEj +00000000009496f8 g DO .data 0000000000000020 _ZTVN2nn7account13ProfileEditorE +00000000001a8168 g DF .text 000000000000000c _ZN2nn5audio3dsp17ResetAuxBufferDspEPNS0_10AuxInfoDspE +000000000013bc28 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm256EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENS2_24BufferClientArgumentTypeEj +0000000000953840 w DO .data 0000000000000018 _ZTIN2nn4nifm6detail12IScanRequestE +0000000000359878 g DF .text 00000000000000ec _ZNKSt3__115__codecvt_utf16IDiLb0EE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_ +00000000000c5d10 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service18ICommonStateGetterEEEvi +0000000000804d70 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi44EE4MaskE +0000000000230440 g DF .text 0000000000000004 _ZN2nn3hid15VibrationWriterD1Ev +0000000000028654 g DF .text 0000000000000248 _ZN2nn5image6detail4jpeg13jpeg_idct_8x4EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000001d9d48 g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine15SetOutlineWidthEt +00000000003cdeec g DF .text 0000000000000058 rint +00000000000913b8 g DF .text 0000000000000004 nnosTimedWaitConditionVariable +00000000001688a0 g DF .text 0000000000000044 _ZN2nn8settings7factory19GetConfigurationId1EPNS1_16ConfigurationId1E +00000000002a62a8 g DF .text 0000000000000038 android_atomic_dec +00000000009494a0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001b62dc g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetMustacheYEv +0000000000237eb0 g DF .text 0000000000000080 _ZN2nn8irsensor6detail22RunTeraPluginProcessorERKNS0_14IrCameraHandleERKNS0_25TeraPluginProcessorConfigE +00000000000251c8 g DF .text 00000000000000a0 _ZN2nn5image6detail4jpeg13jpeg_idct_2x2EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000044f34 g DF .text 0000000000000084 _ZN2nn4diag6detail25ReplaceDefaultLogObserverEPFvRKNS0_11LogMetaDataERKNS0_7LogBodyEPvE +00000000001a310c g DF .text 000000000000000c _ZN2nn5audio6server14MemoryPoolInfo7SetUsedEb +0000000000199f9c g DF .text 00000000000001dc _ZN2nn5audio23OpenFinalOutputRecorderEPNS0_19FinalOutputRecorderERKNS0_28FinalOutputRecorderParameterERKNS_6applet20AppletResourceUserIdE +00000000001a4ce8 g DF .text 0000000000000038 _ZN2nn5audio6server12SinkInfoBaseC1Ev +00000000003e7618 g DF .text 0000000000000018 __nnmusl_FinalizeConditionVariable +0000000000147654 g DF .text 0000000000000074 _ZN2nn3ngc6detail3Bp_C2EPNS1_16WorkBufAllocatorE +000000000017f28c g DF .text 0000000000000064 _ZN2nn4time26StandardNetworkSystemClock14GetCurrentTimeEPNS0_9PosixTimeE +00000000000a1cb8 g DF .text 000000000000004c _ZN2nn6socket6detail12AllocAlignedEmm +00000000000cd7bc w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service19IOverlayAppletProxyEEEvi +00000000001c6254 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +0000000000040c34 g DF .text 00000000000000dc _ZN2nn4util33ConvertCharacterUtf8ToUtf16NativeEPtPKc +0000000000070cf0 g DF .text 000000000000018c _ZN2nn4lmem6detail14CreateUnitHeapEPvmmitNS0_13InfoPlacementEPNS1_8HeapHeadE +00000000001a2b4c g DF .text 0000000000000070 _ZNK2nn5audio6server9DelayInfo13GetWorkBufferENS1_14EffectInfoBase5IndexE +000000000003bca4 g DF .text 0000000000000060 _ZN2nn4util8BitArray5resetEv +0000000000187c24 g DF .text 000000000000000c _ZN2nn5audio17GetReverbLateModeEPKNS0_10ReverbTypeE +00000000003e3d40 w DF .text 0000000000000088 localtime_r +000000000011a4f8 g DF .text 0000000000000010 _ZN2nn3err36ErrorViewerStartupParamForSystemData9SetResultERKNS_6ResultE +0000000000160c80 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E48_nn_sf_sync_GetPlayTimerEventToRequestSuspensionENS0_3OutINS0_12NativeHandleEvEE +000000000022fbe0 g DF .text 0000000000000004 _ZN2nn3hid15VibrationPlayerD1Ev +000000000029e4d8 g DF .text 0000000000000018 _ZN7android6Parcel12pushAllowFdsEb +00000000002d3418 g DF .text 0000000000000008 _ZNK7android10VectorImpl8itemSizeEv +000000000018dd58 g DF .text 000000000000002c _ZN2nn5audio16Axfx2DelayTapOutEPNS0_14Axfx2DelayLineEi +00000000001bb5b8 g DF .text 000000000000000c _ZN2nn3mii6detail19GetReplacedNicknameEPNS0_8NicknameE +0000000000184430 w DF .text 0000000000000190 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSF_ILm4ELm4ELl0EEENSF_ILm4ELm4ELl4EEEEEELm16ELm4ELb1EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm8ELm8EvEENSS_ILm4ELm4EvEESU_j +000000000018bf40 g DF .text 000000000000003c _ZN2nn5audio19SetVoiceDestinationEPNS0_19AudioRendererConfigEPNS0_9VoiceTypeEPNS0_12FinalMixTypeE +000000000026c5e0 g DF .text 0000000000000004 NvRmSyncFreeSyncpoints +00000000000c7a58 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service16IAudioControllerEEEvi +00000000000d5554 g DF .text 0000000000000094 _ZN2nn4bcat25MountDeliveryCacheStorageENS_13ApplicationIdE +0000000000185684 g DF .text 0000000000000190 _ZN2nn5audio14WriteAuxBufferEPNS0_13AuxBufferInfoEPijPKij +00000000002cee00 g DF .text 00000000000000ac _ZN7android7String8C1EPKc +00000000007e4ad0 w DO .rodata 0000000000000126 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +000000000025cd6c g DF .text 00000000000000e8 NvOsAllocAlignLeak +00000000000a6610 w DF .text 0000000000000120 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSE_ILm4ELm4ELl4EEENSE_ILm4ELm4ELl8EEEEEELm12ELm8ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESP_NSN_23InRawClientArgumentTypeILm4ELm4EvEESR_SR_j +0000000000184090 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000a80ca0 w DO .bss 0000000000000010 _ZNSt3__110moneypunctIcLb0EE2idE +00000000007c37d0 w DO .rodata 0000000000000152 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000000cded0 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IOverlayFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000007ed4e0 w DO .rodata 0000000000000030 _ZTSN2nn5audio6detail27IAudioOutManagerForDebuggerE +00000000000a1a40 g DF .text 000000000000000c _ZN2nn6socket13GetHostByNameEPKc +0000000000955fa0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +000000000018bd2c g DF .text 0000000000000018 _ZN2nn5audio18GetSubMixMixVolumeEPKNS0_10SubMixTypeES3_ii +000000000039f7b4 g DF .text 0000000000000068 __nesf2 +00000000000d84a4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +00000000003dcda8 w DF .text 000000000000014c fgetwc_unlocked +000000000008ce5c g DF .text 0000000000000010 _ZN2nn2os11SetHostArgvEPPc +000000000097bbb0 w DO .data 0000000000000018 _ZTINSt3__118__time_get_storageIcEE +00000000007c5b20 w DO .rodata 0000000000000107 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000170970 g DF .text 0000000000000098 _ZN2nn8settings6detail30GetWirelessLanCountryCodeCountEPi +000000000017a9c0 w DF .text 0000000000000068 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6Object7ReleaseEv +0000000000318d8c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E25_nn_sf_sync_IsInitializedENS0_3OutIbvEE +00000000003cc06c g DF .text 000000000000000c llrint +00000000007ccf90 w DO .rodata 000000000000010d _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000039f81c g DF .text 0000000000000068 __gtsf2 +00000000003c81c8 g DF .text 00000000000000b0 coshf +0000000000046f40 g DF .text 0000000000000008 _ZN2nn2fs6detail24IsEnabledHandleAccessLogENS1_23IdentifyAccessLogHandleE +00000000001b4b28 g DF .text 0000000000000134 _ZN2nn2la20PrepareLibraryAppletEPKvmNS_6applet8AppletIdEbNS3_17LibraryAppletModeE +0000000000126300 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_ChangeFriendRequestReceptionERKNS_7account3UidEb +0000000000230c44 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E29_nn_sf_sync_DeactivateJoyXpadENS5_9JoyXpadIdE +00000000002860e8 g DF .text 000000000000001c nvgr_get_video_metadata +00000000000a1abc g DF .text 0000000000000004 nnsocketWrite +000000000021e9fc g DF .text 00000000000000c4 _ZN2nn3hid6detail40BindPlayReportControllerUsageUpdateEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000092d04 g DF .text 0000000000000088 _ZN2nn2os6detail13MultiWaitImpl22RecalcMultiWaitTimeoutEPNS_8TimeSpanES3_ +00000000008042f0 w DO .rodata 0000000000000024 _ZTSN2nn3hid6detail17InputDetectorLifoE +00000000003c8278 g DF .text 000000000000001c coshl +00000000001a259c g DF .text 0000000000000108 _ZNK2nn5audio6server12BehaviorInfo13CopyErrorInfoEPNS0_6common17BehaviorParameter9ErrorInfoEPi +0000000000270498 g DF .text 00000000000000b8 NvRmMemGetSize +0000000000079554 g DF .text 0000000000000188 nnmem_nlib_mq_receive_until +000000000004c538 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem17DoCreateDirectoryEPKc +00000000001686b4 g DF .text 0000000000000044 _ZN2nn8settings6system36SetExternalSteadyClockInternalOffsetEl +00000000000a1ad0 g DF .text 000000000000009c nnsocketFcntl +00000000001c74b4 g DF .text 0000000000000134 _ZN2nn3mii11AppletInput27InitializeForAppendMiiImageEPKNS_4util4UuidEii +000000000015d6dc g DF .text 0000000000000038 _ZN2nn4pctl24ConfirmSnsPostPermissionEv +000000000017d8cc g DF .text 000000000000001c _ZN2nn4time19InitializeForRepairEv +00000000003c2b20 w DF .text 000000000000003c iswgraph_l +0000000000a0bf50 g DO .bss 0000000000001890 _ZN2nn5audio22g_AudioRendererManagerE +0000000000187b98 g DF .text 0000000000000040 _ZN2nn5audio18SetReverbEarlyModeEPNS0_10ReverbTypeENS1_9EarlyModeE +00000000001a31d4 g DF .text 000000000000004c _ZNK2nn5audio6server10PoolMapper14FindMemoryPoolENS0_7CpuAddrEm +0000000000822d90 w DO .rodata 0000000000000001 _ZNSt3__110moneypunctIcLb0EE4intlE +0000000000361d60 g DF .text 0000000000000024 _ZNSt3__111regex_errorD0Ev +000000000004b1d8 g DF .text 00000000000000a0 _ZN2nn2fs17FileHandleStorageC2ENS0_10FileHandleE +000000000095a5c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000253b24 g DF .text 0000000000000090 _ZN2nn3web22ShowOfflineHtmlPageArg16SetFooterEnabledEb +00000000000c0cf0 g DF .text 00000000000000b8 _ZN2nn7account34NetworkServiceAccountAdministrator44ResumeProcedureToLinkNnidWithNintendoAccountEPNS0_6detail24SimpleOAuthProcedureBaseERKNS0_9SessionIdE +00000000007d7260 w DO .rodata 0000000000000029 _ZTSN2nn5codec6detail20IHardwareOpusDecoderE +00000000001bce4c g DF .text 0000000000000040 _ZN2nn3mii6detail11UtilityImplC1Ev +00000000002346b8 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3hid16IHidSystemServerEED2Ev +000000000021b74c g DF .text 00000000000001fc _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_16NpadJoyDualStateEiRKj +00000000000901d0 g DF .text 0000000000000260 _ZN2nn2os13SetThreadNameEPNS0_10ThreadTypeEPKc +0000000000145160 g DF .text 0000000000000084 _ZN2nn3ngc6detail16WorkBufAllocator10ReallocateEPvm +0000000000824080 g DO .rodata 0000000000000016 _ZTSNSt3__111regex_errorE +00000000001ce49c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000002ceb3c g DF .text 00000000000000a8 _ZN7android8String1610replaceAllEDsDs +00000000001c9550 g DF .text 0000000000000014 _ZN2nn5swkbd25GetRequiredWorkBufferSizeEb +00000000000c0988 g DF .text 00000000000000a8 _ZN2nn7account34NetworkServiceAccountAdministrator40CreateProcedureToLinkWithNintendoAccountEPNS0_31NintendoAccountLinkageProcedureE +0000000000113ed8 g DF .text 000000000000001c opus_multistream_decode +0000000000175c08 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm24ELm4ELl0EEEEEELm0ELm24ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm24ELm4EEEj +0000000000181294 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E30_nn_sf_sync_IsRtcResetDetectedENS0_3OutIbvEE +000000000018a7cc g DF .text 0000000000000020 _ZN2nn5audio11SinkManagerC1EiPNS0_8SinkInfoEii +000000000094d348 w DO .data 0000000000000080 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21ILibraryAppletCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000323ddc g DF .text 000000000000002c _ZNSt3__112__rs_defaultC2Ev +00000000007c5c30 w DO .rodata 00000000000000f8 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000009593a8 g DO .data 0000000000000020 _ZN2nn2ec6detail18g_ShopPageArgMutexE +0000000000215460 g DF .text 0000000000000070 _ZN2nn3hid6detail30SetCaptureButtonAutoPilotStateERKNS0_5debug27CaptureButtonAutoPilotStateE +00000000000ca554 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24ITransferStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001242d4 g DF .text 0000000000000040 _ZN2nn7friends6detail14GetMiiImageUrlEPNS0_3UrlERKNS0_16MiiImageUrlParamE +00000000001c9eec g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard6AppearERKNS0_9AppearArgE +00000000001b6510 g DF .text 000000000000001c _ZNK2nn3mii8CreateIdneERKS1_ +00000000001c920c g DF .text 0000000000000028 _ZN2nn5swkbd25GetRequiredWorkBufferSizeEi +00000000002b89cc g DF .text 0000000000000030 _ZN7android16ISurfaceComposerD1Ev +00000000000ad414 g DF .text 0000000000000004 _ZN2nn6socket8resolver13GetHostByNameEPKcPKNS0_14ResolverOptionEm +0000000000951450 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000018b488 g DF .text 0000000000000014 _ZN2nn5audio12SplitterInfo9SetInUsedEb +0000000000820dc0 w DO .rodata 00000000000000fb _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +0000000000177650 g DF .text 0000000000000080 _ZN2nn8settings6detail20SetXpadGenericPadMapERKNS0_22BasicXpadGenericPadMapEi +00000000001745c0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_SetAudioOutputModeEii +00000000000f401c g DF .text 00000000000019bc silk_NSQ_del_dec_c +00000000000fdbe4 g DF .text 0000000000000664 silk_resampler_private_down_FIR +000000000010c150 g DF .text 0000000000000014 opus_encoder_alloc_get_size +00000000000bf0ec g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService10GetCountryEPm +00000000007d4bfe g DO .rodata 0000000000000007 silk_NLSF_EXT_iCDF +000000000023d3f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_E42_nn_sf_sync_UnregisterAppletResourceUserIdENS_6applet20AppletResourceUserIdE +00000000003597b4 g DF .text 00000000000000b0 _ZNKSt3__115__codecvt_utf16IDsLb1EE9do_lengthER11__mbstate_tPKcS5_m +0000000000025268 g DF .text 0000000000000030 _ZN2nn5image6detail4jpeg13jpeg_idct_1x1EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000000989f8 g DF .text 000000000000019c _ZN2nn2ro6detail18LookupGlobalManualEPKc +000000000010bcb0 g DF .text 00000000000000ac opus_decode +0000000000942cf0 g DO .data 0000000000000038 _ZTIN2nn2fs15RomFsFileSystemE +00000000007b1580 w DO .rodata 000000000000003e _ZTSN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4ImplE +000000000097b6c8 g DO .data 0000000000000060 _ZTVNSt3__120__codecvt_utf8_utf16IDsEE +0000000000227ce0 g DF .text 0000000000000008 _ZN2nn3hid6detail33GetVibrationDeviceHandleDeviceIdxERKNS0_21VibrationDeviceHandleE +00000000001b66ac g DF .text 0000000000000004 _ZNK2nn3mii8CoreDataeqERKS1_ +0000000000134450 g DF .text 00000000000000b8 _ZN2nn4htcs6detail25virtual_socket_collection8CreateIdEv +00000000001412dc g DF .text 0000000000000070 _ZN2nn3ngc15ProfanityFilter17GetContentVersionEv +0000000000958fe0 g DO .data 0000000000000010 _ZTIN2nn5audio6server14EffectInfoBaseE +00000000003e675c g DF .text 0000000000000194 __nnmusl_DirDelete +000000000039f518 g DF .text 0000000000000068 __nedf2 +00000000007c5020 w DO .rodata 0000000000000025 _ZTSN2nn2am7service18ISystemAppletProxyE +00000000001e3284 g DF .text 0000000000000104 __init_heap +00000000009515c0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc20INotificationServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000001da56c g DF .text 0000000000000050 _ZN2nn6fontll18ScalableFontEngine7SetFontEPc +0000000000353a54 g DF .text 00000000000000b8 _ZNSt3__16locale8__globalEv +00000000000749e0 g DF .text 0000000000000120 nnmem_nlib_strrchr_generic +0000000000238ec0 g DF .text 0000000000000040 _ZNK2nn8irsensor6detail13StatusManager17GetClusteringLifoERKNS0_14IrCameraHandleE +00000000000b6394 w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi26ELm104EEENSI_ILi1ELi6ELm0EEEEEELm0ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeESU_j +00000000000bd130 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE24_nn_sf_sync_PrepareAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000943f00 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf17ISaveDataImporterE +0000000000220430 w DF .text 0000000000000004 _ZN2nn3hid6detail15SleepButtonLifoD0Ev +0000000000273a40 g DF .text 0000000000000038 NvRmChannelClose +0000000000091468 g DF .text 0000000000000004 nnosSendMessageQueue +00000000000358d0 g DF .text 0000000000000048 nnutilZlib_inflateBackEnd +0000000000228a08 g DF .text 0000000000000044 _ZN2nn3hid17StopSixAxisSensorERKNS0_26ConsoleSixAxisSensorHandleE +0000000000298d9c g DF .text 00000000000000d0 _ZN7android12BnMemoryHeap10onTransactEjRKNS_6ParcelEPS1_j +000000000006fd00 g DF .text 0000000000000064 _ZN2nn4lmem6detail16GetHeapTotalSizeEPNS1_8HeapHeadE +00000000001a32dc g DF .text 0000000000000008 _ZNK2nn5audio6server11AddressInfo7GetSizeEv +000000000011bc88 g DF .text 0000000000000144 _ZN2nn3err6detail23TryParseErrorCodeStringEPNS0_9ErrorCodeEPKc +0000000000230ac8 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E40_nn_sf_sync_SetTouchScreenAutoPilotStateERKNS0_7InArrayINS5_10TouchStateEEE +000000000097a628 w DO .data 0000000000000040 _ZTVNSt3__18messagesIwEE +00000000007b1490 w DO .rodata 0000000000000028 _ZTSN2nn2fs3fsa25ICommonMountNameGeneratorE +00000000002696b4 g DF .text 0000000000000004 _Z23hosGetSystemEventHandleijPN2nn2os15SystemEventTypeE +000000000009dc94 w DF .text 00000000000000d0 _ZN2nn2sf4hipc6server17HipcServerMessage19SetOutNativeHandlesEPNS0_12NativeHandleE +00000000000b22dc g DF .text 0000000000000058 _ZN2nn7account6detail18OAuthProcedureBase7SuspendEPNS0_9SessionIdE +00000000000c201c w DF .text 0000000000000024 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureD0Ev +00000000002c9b80 g DF .text 0000000000000060 _ZN7android13GraphicBuffer4lockEjRKNS_4RectEPPv +000000000039f580 g DF .text 0000000000000068 __gtdf2 +00000000000d5f4c g DF .text 00000000000000d4 _ZN2nn4bcat22GetPushNotificationLogEPiPNS0_19PushNotificationLogEi +0000000000111234 g DF .text 0000000000000008 opus_repacketizer_get_nb_frames +0000000000147898 g DF .text 0000000000000174 _ZN2nn3ngc6detail3Bp_6ImportEPNS1_12BinaryReaderE +0000000000122458 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest14GetRequestTypeEv +000000000036d428 g DF .text 0000000000000018 _ZNSt3__131__libcpp_recursive_mutex_unlockEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +00000000001ce74c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_GetDisplayModeENS0_3OutINS_2vi15DisplayModeInfoEvEEm +00000000002a0fe8 g DF .text 0000000000000228 _ZNK7android6Parcel4readERNS0_26FlattenableHelperInterfaceE +00000000000a1a68 g DF .text 0000000000000004 _ZN2nn6socket9GetHErrnoEv +00000000000cb5c4 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22IGlobalStateControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000009ad7c g DF .text 0000000000000060 _ZN2nn2sf4hipc6client24HipcClientSessionManager16CreateNewSessionEPNS_3svc6HandleE +000000000005faf4 g DF .text 0000000000000030 _ZN2nn2fs6detail30FileSystemServiceObjectAdapterC2EONS_2sf13SharedPointerINS_5fssrv2sf11IFileSystemEEE +00000000009487c0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000023ae10 g DF .text 0000000000000024 _ZN2nn8irsensor38GetImageTransferProcessorDefaultConfigEPNS0_30ImageTransferProcessorExConfigE +000000000024f288 g DF .text 0000000000000070 _ZN2nn3hid24ShowControllerStrapGuideEv +0000000000228ea0 g DF .text 0000000000000018 _ZN2nn3hid6system22GetFirmwareUpdateStateEPNS1_19FirmwareUpdateStateERKNS1_26FirmwareUpdateDeviceHandleE +000000000005ec98 w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSG_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEESR_j +00000000001d4b64 g DF .text 0000000000000080 _ZN2nn2vi16SetLayerPositionEPNS0_5LayerEff +00000000002573b8 g DF .text 0000000000000104 _ZN2nn3web15ShowNewsPageArg12SetWhitelistEPKc +00000000002cb8f8 g DF .text 0000000000000024 _ZN7android6RegionaSERKS0_ +00000000003c3c88 g DF .text 0000000000000020 feholdexcept +0000000000051f30 g DF .text 0000000000000048 _ZN2nn2fs19MountContentStorageENS0_16ContentStorageIdE +0000000000232738 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E27_nn_sf_sync_PermitVibrationEb +000000000032e8dc w DF .text 0000000000000154 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE7putbackEw +00000000003e3ce4 w DF .text 0000000000000050 gmtime_r +0000000000314810 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_8DebuggerEEEEES7_E17GetCmifBaseObjectEv +00000000003e729c g DF .text 00000000000000a8 __nnmusl_WaitThread +000000000014b688 g DF .text 0000000000000020 _ZN2nn3ngc6detail17MemoryInputStream4InitEPKvm +000000000014664c g DF .text 0000000000000188 _ZN2nn3ngc6detail12BinaryReader9ReadArrayEPym +0000000000045654 g DF .text 0000000000000028 _ZN2nn4diag16GetAllModuleInfoEPPNS0_10ModuleInfoEPvm +0000000000805310 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi89EE4MaskE +0000000000286868 g DF .text 0000000000000054 NvRmGpuDeviceChooseKind +00000000003e6c84 g DF .text 000000000000000c __nnmusl_InitializeLock +00000000001b9ca0 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw11SetEyebrowYEi +00000000000824e0 w DF .text 0000000000000008 nnmem_nlib_realloc +00000000000c5980 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE29_nn_sf_sync_GetDebugFunctionsENS0_3OutINS0_13SharedPointerINS6_15IDebugFunctionsEEEvEE +00000000001bcd2c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw7SetTypeEi +00000000001d2988 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000003b820 g DF .text 0000000000000024 _ZNK2nn4util17BinaryBlockHeader13FindNextBlockEi +0000000000123b58 g DF .text 0000000000000008 _ZNK2nn7friends13FriendSetting25GetOnlineNotificationFlagEv +00000000001a7ba4 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_12DelayCommandE +0000000000946350 w DO .data 0000000000000018 _ZTIN2nn2sf4impl6detail16ImplTemplateBaseINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_EE +0000000000a69940 g DO .bss 0000000000000020 _ZN7android22GraphicBufferAllocator5sLockE +000000000021efc0 g DF .text 0000000000000014 _ZN2nn3hid6detail7SessionD1Ev +0000000000977e60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003cb900 w DF .text 000000000000002c lgammal_r +00000000003e1d64 w DF .text 00000000000000dc stpncpy +0000000000136560 g DF .text 0000000000000070 _ZN2nn2lm6detail24LogPacketTransmitterBaseD1Ev +0000000000358548 g DF .text 0000000000000008 _ZNKSt3__17codecvtIDic11__mbstate_tE11do_encodingEv +00000000001b7510 g DF .text 0000000000000018 _ZN2nn3mii6detail26GetOrderIndexByCommonColorENS0_11CommonColorE +0000000000227aac g DF .text 0000000000000010 _ZN2nn3hid6detail25MakeVibrationDeviceHandleEhii +00000000000a8754 w DF .text 0000000000000120 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSE_ILm8ELm8ELl8EEEEEELm16ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_NSM_23InRawClientArgumentTypeILm4ELm4EvEENSP_ILm8ELm8EvEEj +00000000007e90c0 g DO .rodata 0000000000000004 _ZN2nn5audio22AudioRendererParameter14EffectCountMaxE +00000000003a92d4 g DF .text 000000000000003c flockfile +0000000000328d10 w DF .text 0000000000000004 _ZNSt3__19basic_iosIwNS_11char_traitsIwEEED1Ev +000000000094d460 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002729d0 g DF .text 00000000000000e8 NvRmStreamPushIncr +000000000081fb10 w DO .rodata 0000000000000014 _ZTSN2nn4gpio8IManagerE +000000000094f8d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000912fc g DF .text 0000000000000004 nnosStartThread +00000000000ce0e0 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IApplicationProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000000408c8 g DF .text 000000000000015c _ZN2nn4util24ConvertStringUtf32ToUtf8EPciPKj +000000000015d404 w DF .text 000000000000003c _ZN2nn4pctl6detail17EventObjectHolderD2Ev +00000000000ae42c g DF .text 0000000000000090 _ZN2nn6socket8resolver3tls6Client24SetCurrentGaiErrorStringEPKc +00000000000c8edc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_GetApplicationIdENS0_3OutINS_3ncm13ApplicationIdEvEE +000000000002f608 g DF .text 0000000000000004 _ZN2nn5image11ExifBuilderD2Ev +0000000000050220 g DF .text 000000000000019c _ZN2nn2fs13OpenDirectoryEPNS0_15DirectoryHandleEPKci +000000000094c680 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000024b038 g DF .text 0000000000000004 _ZN22nerd_gillette_internal5otete7jaimev223DecodeFullSilhouetteROKERNS_30ContiguousStorageContainerBaseINS_15NumericalVectorIfLm2EEELb1EEERNS0_14InputBitStreamERKNS1_23FullSilhouetteCodecDataEPFS4_NS3_IsLm2EEEE +00000000002954d0 g DF .text 00000000000001a8 _ZN7android7BBinder10onTransactEjRKNS_6ParcelEPS1_j +00000000002a13dc g DF .text 00000000000000b0 _ZN7android6Parcel14releaseObjectsEv +000000000003d9fc g DF .text 0000000000000244 _ZN2nn4util6TinyMt10InitializeEPKji +00000000000b9ff4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE44_nn_sf_sync_DebugInvalidateTokenCacheForUserERKNS5_3UidE +0000000000047528 g DF .text 0000000000000014 _ZN2nn2fs24HierarchicalRomFileTable25QueryFileEntryStorageSizeEj +000000000003b624 g DF .text 000000000000001c _ZNK2nn4util16BinaryFileHeader16IsAlignmentValidEv +0000000000070cec g DF .text 0000000000000004 _ZN2nn4lmem6detail13DumpFrameHeapEPNS1_8HeapHeadE +00000000003431b4 w DF .text 00000000000000b0 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__get_monthnameERiRS4_S4_RjRKNS_5ctypeIwEE +0000000000365408 w DF .text 0000000000000050 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC1ERKS5_mmRKS4_ +000000000036b730 g DF .text 0000000000000074 _ZNSt3__112strstreambufD2Ev +0000000000165974 g DF .text 0000000000000020 _ZN2nn5prepo16SystemPlayReport3AddEPKcS3_ +0000000000353b94 g DF .text 0000000000000160 _ZNSt3__16localeC2EPKc +00000000000a0728 g DF .text 000000000000003c _ZN2nn2sf4hipc20ConnectToHipcServiceEPNS_3svc6HandleEPKc +00000000001b03d0 g DF .text 0000000000000f44 _ZN2nn5audio15SrcProcessFrameEPiS1_jjPNS0_14UpsamplerStateE +0000000000239a3c g DF .text 000000000000000c _ZN2nn8irsensor6detail15IrSensorSession16SetFunctionLevelERKNS0_14IrCameraHandleERKNS0_21IrSensorFunctionLevelE +000000000025b098 g DF .text 0000000000000070 nvdcutilGetMode +000000000008f280 g DF .text 000000000000003c _ZN2nn2os24UnlinkAllMultiWaitHolderEPNS0_13MultiWaitTypeE +0000000000805930 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout12RussianLatinE +00000000002d1f68 g DF .text 0000000000000014 _ZN7android10VectorImplD0Ev +00000000000d176c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object12AddReferenceEv +00000000002cbd90 g DF .text 0000000000000088 _ZN7android6Region13translateSelfEii +000000000031ec48 w DF .text 000000000000052c _ZNSt3__16__sortIRNS_6__lessIjjEEPjEEvT0_S5_T_ +00000000003c2e54 g DF .text 0000000000000024 __isxdigit_l +00000000000a3d90 g DF .text 0000000000000170 _ZN2nn6socket6detail10SetSockOptEiiiPKvj +0000000000334228 w DF .text 00000000000000fc _ZNKSt3__17collateIcE12do_transformEPKcS3_ +000000000006625c g DF .text 000000000000010c _ZN2nn2fs13MountSaveDataEPKcNS0_6UserIdE +0000000000174454 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_GetVibrationMasterVolumeENS0_3OutIfvEE +0000000000031aa8 g DF .text 00000000000000c0 nnutilZlib_deflateResetKeep +000000000017bcc0 w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSI_ILm4ELm4ELl4EEEEEELm8ELm4ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm4ELm4EvEESV_j +000000000095ca28 w DO .data 00000000000001b8 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14HidDebugServerEEEEEE13ServiceObjectESJ_E6ObjectE +0000000000264b54 g DF .text 0000000000000004 NvOsSharedMemFree +00000000001a4e90 g DF .text 000000000000003c _ZN2nn5audio6server14DeviceSinkInfo7CleanUpEv +00000000003621a0 g DF .text 0000000000000054 _ZNSt3__119__shared_mutex_base15try_lock_sharedEv +0000000000255dd8 g DF .text 000000000000005c _ZNK2nn3web20SharePageReturnValue22GetPostServiceNameSizeEv +000000000008e410 g DF .text 000000000000000c _ZN2nn2os22FinalizeInterruptEventEPNS0_18InterruptEventTypeE +00000000003a7e14 g DF .text 00000000000000ac readdir_r +00000000000ed40c g DF .text 000000000000012c quant_fine_energy +00000000001b91b0 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw13GetMouthScaleEv +0000000000258980 g DF .text 0000000000000048 nvdcGetCrc +000000000094d050 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000097494 g DF .text 0000000000000008 nnResultGetModule +00000000000c0858 g DF .text 000000000000010c _ZN2nn7account34NetworkServiceAccountAdministrator36SynchronizeProfileAsyncIfTimeElapsedEPbPNS0_12AsyncContextENS_8TimeSpanE +000000000019d340 g DF .text 000000000000001c _ZN2nn5audio6server13CommandBuffer8SetStateERKNS2_18CommandBufferStateE +000000000022f128 g DF .text 00000000000000c0 _ZN2nn3hid13VibrationNodeC2Ev +000000000097ba60 w DO .data 0000000000000028 _ZTINSt3__19__num_putIwEE +00000000000c1c90 g DF .text 0000000000000034 _ZN2nn7account31NintendoAccountLinkageProcedure38GetUrlForIntroductionOfExtraMembershipEPNS0_10RequestUrlE +000000000018d7c0 g DF .text 000000000000000c _ZN2nn5audio6common20GetSplitterInfoMagicEv +00000000000304cc g DF .text 00000000000003c0 nnutilZlib_adler32 +000000000004df68 g DF .text 0000000000000044 _ZN2nn2fs6detail18FileSystemAccessor19GetFileTimeStampRawEPNS0_16FileTimeStampRawEPKc +00000000002b584c g DF .text 00000000000001f0 _ZN7android22IGraphicBufferProducer11asInterfaceERKNS_2spINS_7IBinderEEE +00000000000c7fa0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_GetCallerAppletCaptureImageExENS0_3OutIbvEERKNS0_9OutBufferE +0000000000205a5c g DF .text 00000000000002d0 FSS_get_gpos_pts +000000000022b698 g DF .text 0000000000000054 _ZN2nn3hid6system17GetNpadDeviceTypeERKj +0000000000174424 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_SetAccountNotificationSettingsERKNS0_7InArrayINS5_6system27AccountNotificationSettingsEEE +00000000001c7224 w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm88ELm4ELl0EEEEEELm88ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm88ELm4EvEEj +00000000001d03dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E52_nn_sf_sync_ConnectSharedLowLevelLayerToSharedBufferEmNS_2vi7fbshare18SharedBufferHandleE +0000000000048434 g DF .text 0000000000000044 _ZN2nn2fs24HierarchicalRomFileTable23GetDirectoryInformationEPNS0_16RomDirectoryInfoERKNS1_8EntryKeyE +000000000012a8a8 w DF .text 00000000000000a0 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm14EE27InitializeShimLibraryHolderINS_7friends6detail3ipc15IServiceCreatorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENKUlPvE_clESH_ +0000000000184c1c g DF .text 0000000000000008 _ZN2nn5audio25GetAudioOutBufferDataSizeEPKNS0_14AudioOutBufferE +000000000021b124 g DF .text 0000000000000084 _ZN2nn3hid6detail18SwapNpadAssignmentERKjS3_ +0000000000181214 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E31_nn_sf_sync_GetCurrentTimePointENS0_3OutINSL_20SteadyClockTimePointEvEE +0000000000091274 g DF .text 0000000000000034 _ZN2nn2os15FreeMemoryPagesEmm +0000000000235040 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E39_nn_sf_sync_GetAvailableFirmwareVersionENS0_3OutINS5_6system15FirmwareVersionEvEENSL_11UniquePadIdE +00000000000bef18 g DF .text 0000000000000004 _ZN2nn7account25CachedNintendoAccountInfoC1Ev +00000000002cdc04 g DF .text 0000000000000004 _ZN7android10HeapObjectnwEm +000000000011a88c g DF .text 0000000000000050 _ZN2nn3err9ShowErrorENS_6ResultERKNS0_12ErrorContextE +0000000000353fa8 g DF .text 0000000000000074 _ZNSt3__16locale14__install_ctorERKS0_PNS0_5facetEl +0000000000048264 g DF .text 0000000000000150 _ZN2nn2fs24HierarchicalRomFileTable12GetFileEntryEPjPNS1_12FileRomEntryERKNS1_8EntryKeyE +00000000001a4d20 g DF .text 0000000000000014 _ZN2nn5audio6server12SinkInfoBase6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPNS3_13SinkOutStatusEPKNS3_15SinkInParameterERNS1_10PoolMapperE +0000000000234ab4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E40_nn_sf_sync_RegisterAppletResourceUserIdENS_6applet20AppletResourceUserIdEb +00000000000be750 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +000000000009bb94 g DF .text 000000000000000c _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor6GetTagEv +0000000000046488 g DF .text 00000000000000bc _ZN2nn2fs22GetGlobalAccessLogModeEPj +0000000000364c98 w DF .text 000000000000008c _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE12find_last_ofEPKcmm +0000000000044ee0 g DF .text 0000000000000054 _ZN2nn4diag6detail18CallAllLogObserverERKNS0_11LogMetaDataERKNS0_7LogBodyE +000000000006fdf8 g DF .text 0000000000000004 _ZN2nn4lmem6detail14DestroyExpHeapEPNS1_8HeapHeadE +0000000000193518 g DF .text 00000000000000d0 _ZN2nn5audio27CreateAudioOutManagerByHipcEv +00000000000c7bd4 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_ChangeMainAppletMasterVolumeEfl +0000000000195198 w DF .text 0000000000000188 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESF_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSK_23InRawClientArgumentTypeILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001222d8 g DF .text 000000000000000c _ZN2nn7friends13FriendRequestC1Ev +00000000003160ac g DF .text 0000000000000004 nngpioGetInterruptEnable +000000000094d6f0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000117ef0 g DF .text 0000000000000020 _ZN2nn5codec11OpusDecoderC2Ev +00000000001986b4 g DF .text 0000000000000008 _ZN2nn5audio21GetAudioOutSampleRateEPKNS0_8AudioOutE +000000000009a560 g DF .text 00000000000000c0 _ZThn8_N2nn2sf4cmif6server23CmifServerDomainManager6Domain12ReserveEntryEPNS1_18CmifDomainObjectIdEi +0000000000359660 g DF .text 00000000000000a0 _ZNKSt3__115__codecvt_utf16IDsLb1EE6do_outER11__mbstate_tPKDsS5_RS5_PcS7_RS7_ +00000000001c34c8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetGlassColorEi +0000000000953568 w DO .data 0000000000000170 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15IGeneralServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001d3afc g DF .text 0000000000000070 _ZN2nn2vi19SetDisplayUnderscanEPNS0_7DisplayEi +0000000000979350 g DO .data 0000000000000018 _ZTINSt3__117__assoc_sub_stateE +00000000003dc718 g DF .text 0000000000000010 __flbf +000000000015442c w DF .text 000000000000016c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm1ELl0EEENSC_17InRawArgumentInfoILm16ELm1ELl0EEEEEELm16ELm16ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm1EEENS2_23InRawClientArgumentTypeILm16ELm1EvEEj +00000000002354cc w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSD_ILm8ELm8ELl8EEEEEELm16ELm8ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSL_23InRawClientArgumentTypeILm4ELm4EvEENSO_ILm8ELm8EvEEj +000000000011bf4c g DF .text 0000000000000020 _ZN2nn3err6detail27MakeErrorInfoCommonFilePathEPcmNS0_9ErrorCodeE +000000000032985c w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE7seekoffExNS_8ios_base7seekdirEj +00000000003a7f00 g DF .text 0000000000000050 seekdir +000000000080593c g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout7SwedishE +00000000001714c4 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm30ELm1ELl0EEEEEELm0ELm30ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm30ELm1EEEj +000000000022ea5c g DF .text 0000000000000044 _ZN2nn3hid25EndForcedVibrationSessionEv +0000000000346eec w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb0EE11do_groupingEv +000000000009e510 w DF .text 0000000000000008 _ZNK2nn2sf4hipc6server18Hipc2ServerMessage12GetInObjectsEPNS0_4cmif6server20CmifServerObjectInfoE +0000000000953258 g DO .data 0000000000000040 _ZTVN2nn3ngc6detail15NullInputStreamE +000000000016dd6c g DF .text 0000000000000070 _ZN2nn8settings6detail14GetMiiAuthorIdEPNS_4util4UuidE +00000000000002c0 g DF .text 000000000000011c _ZN2nn6crypto16EncryptAes128CbcEPvmPKvmS3_mS3_m +000000000005164c g DF .text 00000000000001d0 _ZN2nn2fs9MountCodeEPKcS2_NS_3ncm9ProgramIdE +000000000002edb4 g DF .text 0000000000000148 _ZN2nn5image11JpegEncoder6EncodeEPmPvmS3_mPNS0_11ExifBuilderE +000000000094da20 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEEE +000000000011aadc g DF .text 00000000000000a0 _ZN2nn3err20ShowSystemUpdateEulaENS_8settings6system10RegionCodeERNS0_8EulaDataE +00000000001b61f4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetHairTypeEv +00000000003dbdb0 g DF .text 000000000000006c lfind +00000000000bfd40 g DF .text 0000000000000028 _ZN2nn7account28NetworkServiceAccountManagerC1ERKNS0_3UidEPNS0_4baas24IManagerForSystemServiceE +000000000017b094 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E31_nn_sf_sync_RegisterInternalPkiENS0_3OutImvEENS6_11InternalPkiE +000000000036c1ec g DF .text 0000000000000014 _ZNSt3__114error_categoryC2Ev +00000000000d4ca8 g DF .text 0000000000000058 _ZN2nn6applet26SetInputDetectionSourceSetEj +0000000000113a0c g DF .text 0000000000000058 validate_layout +0000000000117328 g DF .text 0000000000000004 opus_multistream_encoder_destroy +000000000015a274 w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm16ELm1ELl0EEEEEELm0ELm16ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm16ELm1EEEj +000000000006f22c g DF .text 000000000000004c _ZN2nn4lmem24GetExpHeapAllocationModeEPNS0_6detail8HeapHeadE +000000000024fafc g DF .text 0000000000000044 _ZN2nn3ldn18GetStateForMonitorEv +0000000000041be4 g DF .text 0000000000000048 _ZN2nn4edid6detail31PhysicalAddressDataBlockVisitorEPKhmNS0_6cea8618BlockTagEPv +00000000001093c0 g DF .text 0000000000000084 silk_scale_copy_vector16 +000000000018886c g DF .text 0000000000000068 _ZN2nn5audio24GetI3dl2ReverbParametersEPKNS0_15I3dl2ReverbTypeE +000000000022fee8 g DF .text 0000000000000040 _ZN2nn3hid15VibrationPlayer20SetLoopStartPositionEi +000000000003f004 g DF .text 0000000000000080 _ZN2nn4util9VSNPrintfEPcmPKcSt9__va_list +00000000000b2bd0 g DF .text 00000000000000b4 _ZN2nn7account8FinalizeEv +00000000001202c4 g DF .text 0000000000000158 _ZN2nn7friends15GetRelationshipEPNS0_12AsyncContextEPNS0_12RelationshipERKNS_7account3UidENS5_23NetworkServiceAccountIdE +0000000000121e84 g DF .text 0000000000000008 _ZNK2nn7friends11BlockedUser12GetAccountIdEv +0000000000956edc g DO .data 00000000000000c8 _ZN2nn5audio10__ErCoefs2E +000000000097a188 w DO .data 0000000000000070 _ZTVNSt3__110moneypunctIcLb0EEE +000000000007d498 g DF .text 000000000000010c nnmem_nlib_strto_int32_fallback +00000000000a06b4 g DF .text 0000000000000054 _ZN2nn2sf4hipc21UnregisterHipcServiceEPKc +00000000007ca3f0 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000002950e4 g DF .text 0000000000000008 _ZN7android7BBinder4dumpEiRKNS_6VectorINS_8String16EEE +00000000001654a0 g DF .text 0000000000000020 _ZN2nn5prepo10PlayReport3AddEPKcd +000000000016acd4 g DF .text 0000000000000048 _ZN2nn8settings6system12SetQuestFlagEb +00000000001d336c g DF .text 0000000000000068 _ZN2nn2vi17SetDefaultDisplayEPNS0_7DisplayE +000000000095dd30 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail20IrSensorSystemServerEEEEEE13ServiceObjectE +000000000015c514 g DF .text 0000000000000068 _ZN2nn2oe16EnableScreenShotEv +0000000000009e10 w DF .text 0000000000000084 _ZN2nn6crypto6detail19GcmModeAes128Helper7EncryptE12__Uint8x16_tPNS1_11GcmModeImplIS2_EE +0000000000165460 g DF .text 0000000000000020 _ZN2nn5prepo10PlayReport3AddEPKcl +0000000000337dcc w DF .text 0000000000000304 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRb +00000000000bb108 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_4baas14IAdministratorEEEvi +0000000000133cf8 g DF .text 0000000000000168 _ZN2nn4htcs6detail4sendENS_2sf13SharedPointerINS_3tma7ISocketEEEPKvmiRi +00000000001b66a8 g DF .text 0000000000000004 _ZN2nn3mii12DumpCharInfoERKNS0_8CharInfoE +00000000001b97ec g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw15SetFacelineMakeEi +000000000032c1f4 w DF .text 00000000000000cc _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5tellgEv +000000000033a6d8 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRd +000000000011eda8 g DF .text 0000000000000148 _ZN2nn7friends19CancelFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS0_9RequestIdE +000000000033ab68 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRe +000000000033a248 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRf +000000000097b630 g DO .data 0000000000000018 _ZTINSt3__120__codecvt_utf8_utf16IwEE +000000000025540c g DF .text 00000000000002b0 _ZN2nn3web16ShowSharePageArgC2Ev +00000000000763a8 g DF .text 000000000000018c nnmem_nlib_utf8_to_utf32char +00000000000c1cf4 g DF .text 0000000000000030 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureC1ERKNS0_3UidEPNS0_4http15IOAuthProcedureE +000000000095d8e8 g DO .data 0000000000000080 _ZTVN2nn8irsensor6detail7SessionE +00000000003a1678 g DF .text 0000000000000078 __fixdfsi +00000000008045e0 w DO .rodata 0000000000000029 _ZTSN2nn3hid6detail22SixAxisSensorStateLifoE +0000000000237f30 g DF .text 00000000000001a0 _ZN2nn8irsensor6detail28GetTeraPluginProcessorStatesEPNS0_24TeraPluginProcessorStateEPiiljiRKNS0_14IrCameraHandleE +000000000004d978 g DF .text 00000000000000a4 _ZN2nn2fs6detail18FileSystemAccessor12GetEntryTypeEPNS0_18DirectoryEntryTypeEPKc +0000000000338628 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRl +00000000003398e8 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRm +00000000001798e4 g DF .text 0000000000000020 _ZN2nn3ssl10Connection12GetContextIdEPm +000000000019e610 g DF .text 0000000000000080 _ZN2nn5audio6server13CommandBuffer29GenerateClearMixBufferCommandEj +0000000000049e44 w DF .text 0000000000000300 _ZN2nn2fs26KeyValueRomStorageTemplateINS0_24HierarchicalRomFileTable11RomEntryKeyENS2_17DirectoryRomEntryELi768EE11AddInternalEPjRKS3_jPKvmRKS4_ +00000000000d1824 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +00000000001f00e8 g DF .text 0000000000000078 FracSqrt +000000000097d010 g DO .data 0000000000000078 _ZTVNSt3__19strstreamE +00000000007f6ef0 g DO .rodata 0000000000000050 _ZN2nn3mii6detail18Ver3GlassTypeTableE +0000000000346f10 w DF .text 0000000000000018 _ZNKSt3__110moneypunctIcLb0EE16do_negative_signEv +00000000003de510 g DF .text 0000000000000014 setbuf +00000000000c60c4 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetReaderLockAccessorExENS0_3OutINS0_13SharedPointerINS6_13ILockAccessorEEEvEEi +000000000009ee28 w DF .text 0000000000000058 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_S6_E32_nn_sf_sync_CloneCurrentObjectExENS0_3OutINS0_12NativeHandleEvEEj +00000000007e47b0 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEEvEE +0000000000338f88 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRt +000000000021f39c g DF .text 00000000000003d0 _ZN2nn3hid6detail20SharedMemoryAccessor8ActivateEv +000000000022d284 g DF .text 0000000000000044 _ZN2nn3hid6system21InitializeSleepButtonEv +00000000008237f0 w DO .rodata 0000000000000022 _ZTSNSt3__120__time_get_c_storageIcEE +00000000003629f4 w DF .text 00000000000000ac _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_RKS4_ +00000000001bafd0 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw12SetHairColorEi +00000000003ab0d8 w DF .text 0000000000000004 pthread_getspecific +00000000003c2ec0 g DF .text 0000000000000018 __toupper_l +0000000000338ad8 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRx +0000000000339d98 w DF .text 0000000000000004 _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjRy +00000000000063a8 g DF .text 0000000000000040 _ZN2nn6crypto6detail8Sha1Impl10InitializeEv +0000000000140b84 g DF .text 0000000000000128 _ZN2nn3nfp12GetModelInfoEPNS0_9ModelInfoERKNS0_12DeviceHandleE +000000000018b044 g DF .text 0000000000000010 _ZN2nn5audio12SplitterInfo18GetInParameterSizeEi +000000000097bfb8 w DO .data 0000000000000010 _ZTINSt3__111__money_putIwEE +00000000002b4628 g DF .text 0000000000000118 _ZN7android18GraphicBufferAlloc19createGraphicBufferEjjijPi +00000000003a778c g DF .text 0000000000000000 feraiseexcept +0000000000396688 g DF .text 0000000000000004 _ZNSt13bad_exceptionD1Ev +0000000000945978 g DO .data 0000000000000038 _ZTVN2nn2os6detail37MultiWaitHolderOfMessageQueueNotEmptyE +00000000000c49ac g DF .text 00000000000000c0 _ZN2nn2am35FinalizeSystemApplicationInterfacesEv +00000000001609f0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E43_nn_sf_sync_UnlockSystemSettingsRestrictionERKNS0_7InArrayIcEE +000000000018d7f4 g DF .text 000000000000000c _ZN2nn5audio6common18GetCurrentRevisionEv +00000000001a4d58 g DF .text 0000000000000008 _ZNK2nn5audio6server12SinkInfoBase9GetNodeIdEv +00000000001cb724 g DF .text 0000000000000038 _ZN2nn5swkbd6detail18InlineKeyboardImpl22CalcUnsetUserWordInfo_ENS_6applet13StorageHandleEm +00000000001ddac4 g DF .text 0000000000000008 FS_error +00000000001a5490 g DF .text 0000000000000008 _ZNK2nn5audio6server12SplitterInfo16HasNewConnectionEv +00000000002c3abc g DF .text 0000000000000024 _ZN7android14SurfaceControl9setMatrixEffff +0000000000042198 g DF .text 0000000000000070 _ZN2nn4edid6detail17GetStandardTimingEPNS0_15DisplayModeInfoEhh +00000000003a16f0 g DF .text 00000000000000c0 __fixdfti +000000000094d628 w DO .data 00000000000000a8 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22IGlobalStateControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000017ef34 g DF .text 0000000000000070 _ZN2nn4time37GetEphemeralNetworkSystemClockContextEPNS0_18SystemClockContextE +0000000000241580 w DF .text 0000000000000474 _ZN22nerd_gillette_internal5otete7jaimev29SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_11ArmInPacketERT_ +0000000000100570 g DF .text 0000000000000114 silk_apply_sine_window +000000000015b948 g DF .text 0000000000000208 _ZN2nn2oe27SetPerformanceConfigurationEi +000000000015e5b8 g DF .text 0000000000000114 _ZN2nn4pctl23GetSynchronizationEventEv +0000000000314818 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_8DebuggerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +0000000000314488 g DF .text 0000000000000040 _ZN2nn3fgm8Debugger8FinalizeEv +0000000000083698 w DF .text 00000000000001b4 _ZN2nn7nlibsdk4heap12TlsHeapCache18FreeFuncSize_Mode0INSt3__117integral_constantIbLb1EEEEEiPS2_Pvm +0000000000122990 g DF .text 0000000000000008 _ZNK2nn7friends11PlayHistory7IsValidEv +00000000001b6608 g DF .text 0000000000000014 _ZN2nn3mii17GetMouthBlueColorENS0_9GammaTypeE +000000000022ce2c g DF .text 0000000000000048 _ZN2nn3hid28ResetAccelerometerParametersERKNS0_19SixAxisSensorHandleE +0000000000953af0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000002cdbf4 g DF .text 0000000000000004 _ZN7android7RefBase13onLastWeakRefEPKv +0000000000804c10 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi33EE4MaskE +00000000001388fc w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEENSG_ILi1ELi5ELm0EEENSK_ILm8ELm8ELl8EEEEEELm16ELm4ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm8ELm4EvEESV_NSY_ILm8ELm8EvEEj +000000000016eb94 g DF .text 0000000000000070 _ZN2nn8settings6detail34SetServiceDiscoveryControlSettingsERKNS0_6system31ServiceDiscoveryControlSettingsE +0000000000044edc g DF .text 0000000000000004 nndetailDiagPutImplForC +0000000000223e14 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm11EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +0000000000318b54 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E24_nn_sf_sync_SetClockRateEij +0000000000942c20 w DO .data 0000000000000018 _ZTIN2nn2fs26FileStorageBasedFileSystemE +00000000000b48e8 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE24_nn_sf_sync_ListAllUsersERKNS0_8OutArrayINS5_3UidEEE +000000000022e164 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm10EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000003ab2d8 g DF .text 0000000000000004 nanosleep +000000000009addc g DF .text 0000000000000054 _ZN2nn2sf4hipc6client22QueryPointerBufferSizeEPtNS_3svc6HandleE +000000000026c338 g DF .text 0000000000000028 NvRmMemRd08 +000000000012efe0 w DF .text 00000000000001a8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl68EEENS7_21OutObjectArgumentInfoILi0ELi0EEENSB_ILm66ELm2ELl0EEEEEELm0ELm72ELb0EEESG_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSL_27OutObjectClientArgumentTypeENSM_ILm66ELm2EEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000286060 g DF .text 000000000000000c nvgr_get_id +0000000000273f38 g DF .text 0000000000000008 NvRmChannelSupportPreFences +00000000001aa478 g DF .text 0000000000000004 _ZN2nn5audio3dsp7MailBox10InitializeEv +000000000095a7c0 w DO .data 0000000000000018 _ZTIN2nn5visrv2sf19IManagerRootServiceE +0000000000219a80 g DF .text 0000000000000070 _ZN2nn3hid6detail24SendKeyboardLockKeyEventENS_4util10BitFlagSetILi32ENS0_6system20KeyboardLockKeyEventEEE +000000000035a964 g DF .text 0000000000000048 _ZNSt3__18numpunctIwED0Ev +000000000094d4b8 w DO .data 0000000000000088 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IHomeMenuFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001cda84 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetDisplayVsyncEventENS0_3OutINS0_12NativeHandleEvEEm +00000000002cc308 g DF .text 0000000000000018 _ZN7android6Region7xorSelfERKS0_ii +000000000000a6fc g DF .text 0000000000000004 _ZN2nn5image6detail4jpeg19jpeg_abort_compressEPNS2_20jpeg_compress_structE +000000000004d250 g DF .text 0000000000000140 _ZN2nn2fs6detail18FileSystemAccessorD1Ev +00000000007e2810 w DO .rodata 000000000000015b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000009495c0 w DO .data 0000000000000018 _ZTIN2nn7account34NetworkServiceAccountAdministratorE +000000000097a268 w DO .data 0000000000000070 _ZTVNSt3__110moneypunctIwLb0EEE +000000000031ff54 w DF .text 0000000000000540 _ZNSt3__16__sortIRNS_6__lessImmEEPmEEvT0_S5_T_ +000000000097c2f0 g DO .data 0000000000000038 _ZTVNSt3__119__shared_weak_countE +000000000015cddc g DF .text 0000000000000054 _ZN2nn2oe20SwitchLcdBacklightOnEv +000000000032967c w DF .text 0000000000000040 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEC1Ev +0000000000a6fb30 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_3fgm8DebuggerEE8_globalsE +0000000000315f3c w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl4EEENSB_ILm1ELm1ELl0EEEEEELm8ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSK_ILm1ELm1EvEEj +00000000001e28c4 g DF .text 00000000000001e8 FSS_map_char_variant +000000000034f140 w DF .text 0000000000000024 _ZNSt3__114codecvt_bynameIcc11__mbstate_tED0Ev +0000000000946270 g DO .data 0000000000000038 _ZTIN2nn2sf4hipc6server34HipcServerSessionManagerWithDomainE +000000000026334c g DF .text 0000000000000058 NvOsEventPoolWait +000000000003dd7c g DF .text 0000000000000014 _ZN2nn4util6TinyMt9SaveStateEPNS1_5StateE +00000000003a9310 g DF .text 0000000000000184 fmemopen +000000000009c34c g DF .text 0000000000000008 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase5StartEv +0000000000177fd4 g DF .text 00000000000000c8 _ZN2nn3ssl7Context12AddPolicyOidEPKcj +0000000000184060 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_GetAddOnContentListChangedEventENS0_3OutINS0_12NativeHandleEvEE +00000000001ab6a4 g DF .text 00000000000001d0 _ZN2nn5audio10ReverbInitEPKNS0_15ReverbParameterEPNS0_11ReverbStateEPvb +00000000001b16fc g DF .text 0000000000000018 _ZN2nn2ec24GetShopResultFromStorageERKNS_6applet13StorageHandleE +000000000013f194 g DF .text 0000000000000078 _ZN2nn3nfp14FinalizeSystemEv +00000000000cdf70 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetApplicationIdForLogoENS0_3OutINS_3ncm13ApplicationIdEvEE +0000000000200b4c g DF .text 0000000000000724 trim_convert +0000000000258ea0 g DF .text 000000000000008c nvdcQueryDisplayInfo +000000000096e8a0 g DO .data 0000000000000160 _ZTCN7android20BnGraphicBufferAllocE0_NS_11BnInterfaceINS_19IGraphicBufferAllocEEE +00000000007a82b0 g DO .rodata 0000000000000050 _ZN2nn5image6detail4jpeg19jpeg_natural_order2E +000000000095bf10 w DO .data 0000000000000018 _ZTIN2nn3hid6detail37SixAxisSensorUserCalibrationStateLifoE +0000000000948640 w DO .data 0000000000000018 _ZTIN2nn7account3nas40IOAuthProcedureForNintendoAccountLinkageE +000000000011880c g DF .text 0000000000000004 _ZN2nn5codec22OpusMultiStreamDecoderD0Ev +00000000002c8f5c g DF .text 00000000000000d0 _ZNK7android5Fence7flattenERPvRmRPiS3_ +000000000010a304 g DF .text 000000000000002c opus_packet_parse +000000000026c360 g DF .text 0000000000000028 NvRmMemRd16 +000000000011b640 g DF .text 0000000000000008 _ZN2nn3err18ErrorResultVariantC1Ev +0000000000333124 w DF .text 0000000000000008 _ZThn16_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev +000000000097da90 g DO .data 0000000000000038 _ZTVN10__cxxabiv123__fundamental_type_infoE +000000000095db20 w DO .data 0000000000000018 _ZTIN2nn8irsensor15IIrSensorServerE +000000000014762c g DF .text 0000000000000028 _ZN2nn3ngc6detail3Bp_C2Ev +00000000002c8d78 g DF .text 000000000000000c _ZN7android5FenceC1Ei +0000000000326558 g DF .text 0000000000000084 _ZNSt3__112future_errorC2ENS_10error_codeE +0000000000353b4c g DF .text 0000000000000008 _ZNSt3__16localeD1Ev +00000000000b5fd4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEE29_nn_sf_sync_CheckAvailabilityEv +00000000001b9ffc g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw16SetMustacheScaleEi +000000000006e4f4 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3htc4tenv15IServiceManagerEED2Ev +0000000000187134 g DF .text 00000000000000c0 _ZN2nn5audio17SetAuxInputOutputEPNS0_7AuxTypeEPKaS4_i +0000000000184098 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000095c810 w DO .data 0000000000000010 _ZTIN2nn4util17IntrusiveListNodeE +000000000032850c g DF .text 0000000000000084 _ZNSt3__18ios_baseD1Ev +0000000000118618 g DF .text 0000000000000064 _ZN2nn5codec11OpusEncoder17SetBitRateControlENS0_18OpusBitRateControlE +00000000001d02d0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_SetConductorLayerEmb +00000000000819f4 g DF .text 0000000000000008 nnmem_nlib_thread_create +00000000003b83f8 w DF .text 0000000000000090 __strtold_l +0000000000099ec8 g DF .text 00000000000000d8 _ZN2nn2sf33GetCurrentEffectiveMemoryResourceEv +000000000017590c w DF .text 0000000000000104 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm32ELm8ELl0EEEEEELm32ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm32ELm8EvEEj +0000000000263694 g DF .text 0000000000000044 NvOsConditionCreate +000000000009ded8 w DF .text 0000000000000308 _ZN2nn2sf4hipc6server18Hipc2ServerMessage17PrepareForProcessERKNS0_4cmif19CmifMessageMetaInfoE +00000000002a05c4 g DF .text 0000000000000038 _ZNK7android6Parcel10readIntPtrEPl +00000000007d4d95 g DO .rodata 00000000000000a2 silk_pulses_per_block_BITS_Q5 +00000000001d43dc g DF .text 00000000000002a4 _ZN2nn2vi11CreateLayerEPPNS0_5LayerEPNS0_7DisplayEii +00000000001bcd6c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw14SetEyebrowTypeEi +000000000003b86c g DF .text 0000000000000014 _ZNK2nn4util17BinaryBlockHeader12GetNextBlockEv +0000000000072fe0 g DF .text 000000000000018c nnmem_nlib_memchr_not +000000000004c6b4 w DF .text 0000000000000008 _ZN2nn2fs13MemoryStorageD0Ev +00000000002194c8 g DF .text 00000000000000c0 _ZN2nn3hid6detail18InitializeKeyboardEv +000000000027ac60 g DF .text 000000000000007c NvBlitOpen +00000000002c8d68 g DF .text 0000000000000010 _ZN7android5FenceC1Ev +00000000003294c0 w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE10pubseekposENS_4fposI11__mbstate_tEEj +00000000000d85ec w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E25_nn_sf_sync_SetPassphraseENS_13ApplicationIdERKNS0_7InArrayIcEE +0000000000150768 g DF .text 0000000000000060 _ZN2nn4nifm6detail13RequestClientD2Ev +0000000000099fa0 g DF .text 00000000000000b4 _ZN2nn2sf33ScopedCurrentMemoryResourceSetterC1EPNS_14MemoryResourceE +00000000000bd6bc g DF .text 0000000000000034 _ZN2nn7account12AsyncContextC2EOS1_ +00000000001bc858 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw13GetMouthScaleEv +00000000003dc7a4 g DF .text 0000000000000010 __fseterr +0000000000318e40 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_GetPowerClockInfoEventENS0_3OutINS0_12NativeHandleEvEE +000000000039d42c g DF .text 00000000000000b0 __fixtfdi +00000000007a824c g DO .rodata 0000000000000064 _ZN2nn5image6detail4jpeg19jpeg_natural_order3E +00000000001321d0 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSK_ILm4ELm4ELl4EEEEEELm8ELm4ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEESY_j +000000000095df30 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail19IUserServiceCreatorE +0000000000361cf4 g DF .text 0000000000000008 _ZNKSt3__113random_device7entropyEv +0000000000092aec g DF .text 00000000000000e8 _ZN2nn2os6detail17MemoryHeapManager13ReleaseToHeapEmm +000000000017b138 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E17GetCmifBaseObjectEv +000000000008d290 g DF .text 000000000000001c _ZN2nn2os14IsMemoryLockedEPvm +00000000001c3218 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw9SetGenderEi +000000000036b400 g DF .text 0000000000000094 _ZNSt3__112strstreambufC1EPclS1_ +000000000003f1d8 g DF .text 000000000000005c _ZN2nn4util14TVFormatStringEPFvmPKciEmS2_St9__va_list +000000000004b81c g DF .text 0000000000000004 _ZN2nn2fs6detail21LogResultErrorMessageENS_6ResultE +000000000029f580 g DF .text 0000000000000090 _ZN7android6Parcel17writeStrongBinderERKNS_2spINS_7IBinderEEE +0000000000169a64 g DF .text 0000000000000048 _ZN2nn8settings6system35SetAutomaticApplicationDownloadFlagEb +000000000017d4e8 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_7timesrv6detail7service16ITimeZoneServiceEED2Ev +00000000001516f8 g DF .text 000000000000010c _ZN2nn4nifm6detail21ServiceProviderClient29GetSystemServiceSharedPointerEPNS_2sf13SharedPointerINS1_15IGeneralServiceEEE +00000000000be5dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E30_nn_sf_sync_GetDeviceAccountIdENS0_3OutImvEERKNS5_3UidE +0000000000157b9c g DF .text 000000000000003c _ZN2nn4nifm6detail16SsidListAccessorD2Ev +00000000002599ec g DF .text 0000000000000008 nvdcFlipSyncFd +00000000000b2114 g DF .text 00000000000000b4 _ZN2nn7account6detail18OAuthProcedureBase12PrepareAsyncEPNS0_12AsyncContextE +0000000000822550 w DO .rodata 000000000000002f _ZTSNSt3__113basic_istreamIwNS_11char_traitsIwEEEE +00000000001c08d4 g DF .text 0000000000000034 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetCreateIdEPNS1_12Ver3CreateIdE +000000000080d6c0 w DO .rodata 00000000000000f6 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_EE +0000000000329380 w DF .text 0000000000000008 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9pbackfailEi +000000000016957c g DF .text 0000000000000050 _ZN2nn8settings6system24GetVibrationMasterVolumeEv +0000000000184c14 g DF .text 0000000000000008 _ZN2nn5audio28GetAudioOutBufferDataPointerEPKNS0_14AudioOutBufferE +000000000004b598 g DF .text 0000000000000124 _ZN2nn2fs10VerifyPathEPKcii +000000000015ef94 g DF .text 0000000000000008 _ZN2nn4pctl11PairingInfoD2Ev +000000000033bfd8 w DF .text 00000000000001e0 _ZNSt3__19__num_getIwE17__stage2_int_prepERNS_8ios_baseEPwRw +0000000000171148 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E43_nn_sf_sync_SetInitialSystemAppletProgramIdENS_3ncm9ProgramIdE +000000000005eacc w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm4ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeEj +00000000009462a8 w DO .data 0000000000000058 _ZTVN2nn2sf22UnmanagedServiceObjectINS0_4hipc6detail12IHipcManagerENS2_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEE +0000000000979e60 w DO .data 00000000000000a8 _ZTVNSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000038230 g DF .text 000000000000008c nnutilZlib_inflateGetDictionary +00000000000a0950 g DF .text 0000000000000128 _ZN2nn2sm16GetServiceHandleEPNS_3svc6HandleEPKcm +0000000000947f70 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000003670bc w DF .text 00000000000000a4 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE16find_last_not_ofEPKwmm +000000000017c3ac w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEENSI_ILi1ELi5ELm0EEEEEELm0ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeESU_j +00000000003b992c g DF .text 0000000000000024 cacosf +00000000003b9950 g DF .text 0000000000000024 cacosh +00000000000d8230 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E45_nn_sf_sync_CreateDeliveryCacheStorageServiceENS0_3OutINS0_13SharedPointerINS7_28IDeliveryCacheStorageServiceEEEvEEm +00000000000d8444 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc12IBcatServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +0000000000358dc4 g DF .text 000000000000000c _ZNKSt3__114__codecvt_utf8IDiE10do_unshiftER11__mbstate_tPcS4_RS4_ +000000000018d0f0 g DF .text 0000000000000008 _ZN2nn5audio6common13NodeIdManager7GetTypeEj +00000000007a81cc g DO .rodata 0000000000000080 _ZN2nn5image6detail4jpeg19jpeg_natural_order4E +00000000003b99c8 g DF .text 0000000000000050 cacosl +000000000026c388 g DF .text 0000000000000028 NvRmMemRd32 +000000000016a47c g DF .text 0000000000000044 _ZN2nn8settings5fwdbg20SetSettingsItemValueEPKcS3_PKvm +00000000001a0f4c g DF .text 0000000000000450 _ZN2nn5audio6server11InfoUpdater12UpdateVoicesERNS1_12VoiceContextEPNS1_14MemoryPoolInfoEi +0000000000958be8 w DO .data 0000000000000090 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail12IAudioDeviceES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl15AudioDeviceImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6ObjectE +0000000000150b94 g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient17GetAdditionalInfoEPNS0_14AdditionalInfoEPj +0000000000986e80 g DO .data 000000000000000e __seed48 +00000000001cbe8c g DF .text 0000000000000024 _ZN2nn2vi17GetManagerServiceEv +00000000002cdc64 g DF .text 0000000000000028 _ZN7android12SharedBuffer7deallocEPKS0_ +000000000006a924 g DF .text 00000000000000a4 _ZN2nn2fs23SaveDataTransferManagerC2Ev +00000000001b4e68 g DF .text 0000000000000144 _ZN2nn2la18StartLibraryAppletEPvmPNS0_29LibraryAppletStartHookUserArgEPFvvE +00000000001c75e8 g DF .text 0000000000000140 _ZN2nn3mii11AppletInput27InitializeForUpdateMiiImageERKNS_4util4UuidEPS4_ii +000000000032999c w DF .text 0000000000000008 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9pbackfailEj +00000000007e5540 w DO .rodata 0000000000000029 _ZTSN2nn3ssl6detail22ISslServiceFactoryBaseE +0000000000958b58 w DO .data 0000000000000090 _ZTVN2nn5audio6detail14IAudioRendererE +00000000001710dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_GetWirelessLanCountryCodeCountENS0_3OutIivEE +0000000000228e24 g DF .text 0000000000000018 _ZN2nn3hid6system19StartFirmwareUpdateEPNS1_26FirmwareUpdateDeviceHandleENS1_11UniquePadIdE +00000000000b62f4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E12GetProxyInfoEv +00000000001d25a4 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000224abc w DF .text 00000000000001d4 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm8EEEEEiPT_i +00000000003e7544 g DF .text 0000000000000018 __nnmusl_YieldThread +00000000008234c0 g DO .rodata 000000000000001a _ZTSNSt3__112ctype_bynameIcEE +0000000000333140 w DF .text 0000000000000028 _ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev +00000000009a2778 g DO .bss 0000000000000008 optarg +00000000003629f4 w DF .text 00000000000000ac _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1ERKS5_RKS4_ +00000000000a18a8 g DF .text 0000000000000004 _ZN2nn6socket10SockAtMarkEi +0000000000132f24 g DF .text 0000000000000010 _ZN2nn4htcs42InitializeForDisableDisconnectionEmulationEPvmi +00000000001c9e24 g DF .text 0000000000000008 _ZN2nn5swkbd14InlineKeyboardC2Ev +000000000024cd44 g DF .text 0000000000000278 _ZN2nn5album14SaveScreenshotEPKvmNS0_9ImageSizeENS0_17AlbumReportOptionE +00000000000d95dc w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceEEEvi +0000000000232000 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E35_nn_sf_sync_DeactivateSixAxisSensorENS5_11BasicXpadIdE +0000000000354f58 g DF .text 000000000000004c _ZNSt3__114collate_bynameIwED1Ev +0000000000062164 g DF .text 000000000000011c _ZN2nn2fs18ForceEraseGameCardEv +0000000000242608 g DF .text 00000000000003f4 _ZN22nerd_gillette_internal5otete11ImageCodec26EncodeINS_15StaticImageViewIKhEEEEfRKNS3_IhEERKT_ +0000000000074c40 w DF .text 0000000000000068 nnmem_nlib_wcsncpy +0000000000357f50 g DF .text 0000000000000008 _ZNKSt3__17codecvtIDsc11__mbstate_tE13do_max_lengthEv +00000000003dc794 g DF .text 0000000000000010 __freadptrinc +00000000000b820c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E50_nn_sf_sync_InvalidateServiceEntryRequirementCacheENS_13ApplicationIdE +0000000000135f74 g DF .text 0000000000000008 _ZNK2nn2lm6detail15LogPacketHeader14GetPayloadSizeEv +00000000007a8128 g DO .rodata 00000000000000a4 _ZN2nn5image6detail4jpeg19jpeg_natural_order5E +00000000001bb288 g DF .text 00000000000000bc _ZN2nn3mii6detail20CalculateAndSetCrc16EPvit +0000000000230ca8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E39_nn_sf_sync_SetHomeButtonAutoPilotStateENS5_5debug24HomeButtonAutoPilotStateE +0000000000122518 g DF .text 0000000000000008 _ZNK2nn7friends23NintendoNetworkIdFriend19GetMiiImageUrlParamEv +00000000007b0fd0 w DO .rodata 0000000000000025 _ZTSN2nn2fs26FileStorageBasedFileSystemE +0000000000091460 g DF .text 0000000000000004 nnosInitializeMessageQueue +00000000001d0058 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_CreateIndirectProducerEndPointENS0_3OutImvEEmNS_6applet20AppletResourceUserIdE +00000000007d3e7e g DO .rodata 000000000000002c silk_CB_lags_stage2 +0000000000805790 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi146EE4MaskE +00000000007d3eaa g DO .rodata 0000000000000088 silk_CB_lags_stage3 +00000000001b51f4 g DF .text 0000000000000034 _ZN2nn2la18SetCommonParameterERKNS0_9CommonArgE +0000000000090534 g DF .text 0000000000000028 _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEPNS0_10ThreadTypeE +000000000022d6e0 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm11EEEvPNS0_16TouchScreenStateIXT_EEE +00000000000c5634 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ISystemAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +0000000000139eac g DF .text 00000000000000dc _ZN2nn3nfc10ReadMifareEPNS0_19MifareReadBlockDataERKNS0_12DeviceHandleEPKNS0_24MifareReadBlockParameterEm +0000000000122f40 g DF .text 0000000000000008 _ZNK2nn7friends12ProfileExtra11GetNicknameEv +000000000095b9d8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail15NpadFullKeyLifoE +00000000002cbc68 g DF .text 0000000000000018 _ZN7android6Region6orSelfERKS0_ +00000000003e78f8 w DF .text 0000000000000004 __nnmusl_random_lock_finalize +000000000022fb84 g DF .text 0000000000000008 _ZNK2nn3hid23VibrationNodeConnection14GetDestinationEv +00000000003a543c g DF .text 0000000000000514 __atomic_compare_exchange +000000000012390c g DF .text 00000000000000ec _ZN2nn7friends13FriendSetting13DropNewlyFlagEv +0000000000219c2c g DF .text 00000000000000c0 _ZN2nn3hid6detail15InitializeMouseEv +00000000001bf1f0 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw8GetBuildEv +000000000023ed14 g DF .text 0000000000000018 _ZN22nerd_gillette_internal5otete7jaimev221GetTanHalfFieldOfViewEPfS2_ +00000000003a7c4c g DF .text 0000000000000000 fabsf +0000000000366074 w DF .text 0000000000000134 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmPKwm +00000000001810dc w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINS_7timesrv6detail7service12ISteadyClockEEEvi +0000000000168c6c g DF .text 0000000000000078 _ZN2nn8settings7factory19GetEticketDeviceKeyEPNS1_16Rsa2048DeviceKeyE +00000000001a0da8 g DF .text 000000000000003c _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_18I3dl2ReverbCommandE +00000000008051b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi78EE4MaskE +0000000000316080 g DF .text 0000000000000004 nngpioInitialize +00000000003c9ac8 g DF .text 000000000000001c fabsl +00000000000916bc g DF .text 0000000000000018 _ZN2nn2os6detail26TimedWaitInterProcessEventEPNS1_21InterProcessEventTypeENS_8TimeSpanE +0000000000156e10 g DF .text 0000000000000004 _ZN2nn4nifm7Request6CancelEv +00000000001b6234 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor7GetEyeXEv +000000000015280c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E21_nn_sf_sync_GetResultEv +0000000000065bac w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE28DoDeleteDirectoryRecursivelyEPKc +00000000001a4ee8 g DF .text 0000000000000068 _ZN2nn5audio6server22CircularBufferSinkInfoC1Ev +0000000000316280 g DF .text 0000000000000010 _ZN2nn3i2c12CloseSessionERKNS0_10I2cSessionE +000000000004d664 g DF .text 0000000000000084 _ZN2nn2fs6detail18FileSystemAccessor15DeleteDirectoryEPKc +0000000000810d00 w DO .rodata 00000000000000cd _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000007a8058 g DO .rodata 00000000000000d0 _ZN2nn5image6detail4jpeg19jpeg_natural_order6E +000000000003c540 g DF .text 0000000000000034 _ZN2nn4util12CompressGzipEPmPvmPKvmS2_m +0000000000132ec0 g DF .text 0000000000000058 _ZN2nn4htcs42InitializeForDisableDisconnectionEmulationEPFPvmEPFvS1_mEi +0000000000235dc4 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm1ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm1EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000003554ac g DF .text 0000000000000098 _ZNKSt3__15ctypeIwE10do_tolowerEw +0000000000181518 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service16ITimeZoneServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object12AddReferenceEv +0000000000173fd8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_SetLanguageCodeENS5_12LanguageCodeE +00000000000bc174 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E50_nn_sf_sync_GetUrlForIntroductionOfExtraMembershipENS0_3OutINS5_10RequestUrlEvEE +00000000008048b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi6EE4MaskE +00000000007c4820 w DO .rodata 000000000000010e _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001bf718 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetEyeColorEv +00000000001bcdac g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetBeardTypeEi +0000000000125078 w DF .text 0000000000000330 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm14EE27InitializeShimLibraryHolderINS_7friends6detail3ipc15IServiceCreatorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS7_EEE_clESJ_ +00000000000939b8 g DF .text 000000000000004c _ZN2nn2os6detail21AddressSpaceAllocatorC2Emmm +0000000000065b7c w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE12DoCreateFileEPKcli +00000000000d4f24 g DF .text 0000000000000020 _ZN2nn4bcat6detail25DeliveryCacheProgressImpl26UpdateDownloadFileProgressEl +0000000000158518 g DF .text 000000000000000c _ZN2nn4nifm6detail12HttpResponse5ClearEv +000000000097baf0 w DO .data 0000000000000048 _ZTINSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000094d8c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001b67a0 g DF .text 0000000000000018 _ZN2nn3mii6detail18GetEyeRotateOffsetENS0_7EyeTypeE +00000000001ce8fc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_SetDisplayGammaEmf +000000000011b628 g DF .text 0000000000000008 _ZNK2nn3err19ApplicationErrorArg16GetDialogMessageEv +000000000025bd40 g DF .text 000000000000001c NvMemoryProfilerEndAlloc +00000000002a6200 g DF .text 000000000000000c android_atomic_release_store +00000000003e0d18 w DF .text 0000000000000094 __strtoll_internal +00000000000c24b8 g DF .text 0000000000000084 _ZNK2nn7account13ProfileEditor16LoadProfileImageEPmPvm +0000000000950638 g DO .data 0000000000000078 _ZTVN2nn5codec22OpusMultiStreamDecoderE +00000000007adab4 g DO .rodata 0000000000000004 _ZN2nn4util6detail22AngleIndexQuarterRoundE +000000000025401c g DF .text 0000000000000090 _ZN2nn3web22ShowOfflineHtmlPageArg18SetWebAudioEnabledEb +00000000000ce02c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001287a8 w DF .text 0000000000000200 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSK_ILm4ELm4ELl0EEEEEELm24ELm4ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENSX_ILm4ELm4EvEEj +000000000009ae84 g DF .text 00000000000000b4 _ZN2nn2sf4hipc6client16DuplicateSessionEPNS_3svc6HandleES4_ +0000000000803af0 w DO .rodata 000000000000004e _ZTSN2nn3hid6detail8RingLifoINS0_13KeyboardStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000007f6288 g DO .rodata 0000000000000018 _ZN2nn3mii6detail17PantsSpecialColorE +000000000035b27c g DF .text 0000000000000040 _ZNSt3__114__num_get_base10__get_baseERNS_8ios_baseE +00000000007ce590 w DO .rodata 000000000000014c _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000287000 g DF .text 0000000000000014 NvRmGpuSwizzlerClose +00000000007a7f54 g DO .rodata 0000000000000104 _ZN2nn5image6detail4jpeg19jpeg_natural_order7E +000000000025ef88 g DF .text 0000000000000044 NvOsShowError +00000000000b49fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE28_nn_sf_sync_GetProfileDigestENS0_3OutINS5_13ProfileDigestEvEERKNS5_3UidE +0000000000220400 w DF .text 0000000000000004 _ZN2nn3hid6detail16NpadJoyRightLifoD0Ev +00000000007d90f0 w DO .rodata 0000000000000018 _ZTSN2nn3tma12IHtcsManagerE +000000000014ef64 g DF .text 00000000000000d4 _ZN2nn3ngc6detail15CompressedArrayaSEOS2_ +000000000002a420 g DF .text 0000000000000004 _ZN2nn5image6detail4jpeg15jpeg_free_smallEPNS2_18jpeg_common_structEPvm +00000000001cf3ec w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSM_24BufferClientArgumentTypeENSM_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000001994b0 g DF .text 00000000000000a4 _ZN2nn5audio11StopAudioInEPNS0_7AudioInE +0000000000165450 g DF .text 0000000000000010 _ZN2nn5prepo10PlayReport5ClearEv +000000000036e11c g DF .text 0000000000000554 __cxa_demangle +00000000007e5170 w DO .rodata 00000000000000dc _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +0000000000948a28 w DO .data 0000000000000058 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail14ISessionObjectENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000160174 g DF .text 0000000000000008 _ZN2nn4pctl6detail3ipc35InitializeWatcherIpcSessionIfNeededEv +00000000000a1b6c g DF .text 0000000000000004 nnsocketInetPton +00000000000c4700 g DF .text 00000000000002ac _ZN2nn2am37InitializeSystemApplicationInterfacesEv +00000000002535d0 g DF .text 00000000000000b4 _ZN2nn3web18ShowSystemDataPageEPNS0_26OfflineHtmlPageReturnValueERKNS0_21ShowSystemDataPageArgE +00000000000d9238 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E21_nn_sf_sync_GetDigestENS0_3OutINS5_6DigestEvEE +000000000018370c g DF .text 0000000000000024 _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImpl9GetResultEv +00000000007d4bca g DO .rodata 0000000000000004 silk_type_offset_VAD_iCDF +0000000000198d14 g DF .text 0000000000000004 _ZN2nn5audio20CreateAudioInManagerEv +00000000003121b4 g DF .text 00000000000000bc nvnBootstrapLoader +000000000035c1f0 g DF .text 000000000000001c _ZNSt3__110__time_getD1Ev +000000000006d388 g DF .text 0000000000000070 _ZN2nn3htc19GetBridgeSubnetMaskEPcm +0000000000091368 g DF .text 0000000000000004 nnosFinalizeTimerEvent +0000000000256dcc g DF .text 000000000000001c _ZN2nn3web18WebPageReturnValueC2Ev +0000000000362b28 w DF .text 00000000000000cc _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1ERKS5_mmRKS4_ +0000000000090788 g DF .text 0000000000000010 _ZN2nn2os17GetMemoryHeapSizeEv +00000000003cacbc g DF .text 000000000000014c hypot +0000000000108274 g DF .text 00000000000002cc silk_residual_energy16_covar_FIX +00000000001812d4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E29_nn_sf_sync_GetInternalOffsetENS0_3OutINS_12TimeSpanTypeEvEE +00000000003b2718 g DF .text 0000000000000724 powf +00000000001de0bc g DF .text 000000000000001c FSS_get_cmap +0000000000171dac w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm2052EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000000cc7e0 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_CreateGameMovieTrimmerENS0_3OutINS0_13SharedPointerINS_6grcsrv17IGameMovieTrimmerEEEvEEONS0_12NativeHandleEm +00000000001e56f8 g DF .text 000000000000034c loadGlyph +0000000000356d3c g DF .text 0000000000000330 _ZNKSt3__17codecvtIwc11__mbstate_tE6do_outERS1_PKwS5_RS5_PcS7_RS7_ +00000000000935d0 g DF .text 000000000000005c _ZN2nn2os6detail22MultiWaitHolderOfEvent20RemoveFromObjectListEv +0000000000180770 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E12GetProxyInfoEv +000000000094ebe0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000003b2e3c g DF .text 0000000000000044 powl +00000000007c2910 w DO .rodata 0000000000000151 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000001bc7ec g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw13GetRegionMoveEv +00000000002348b8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E26_nn_sf_sync_IsNfcActivatedENS0_3OutIbvEEj +0000000000120ccc g DF .text 0000000000000148 _ZN2nn7friends29GetExternalApplicationCatalogEPNS0_12AsyncContextEPNS0_26ExternalApplicationCatalogERKNS0_28ExternalApplicationCatalogIdENS_8settings12LanguageCodeE +00000000001a29bc g DF .text 000000000000005c _ZN2nn5audio6server15BufferMixerInfo6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPKNS0_10EffectInfo11InParameterERNS1_10PoolMapperE +00000000001d5ba8 g DF .text 000000000000000c _ZN2nn2vi6detail22ServiceReferenceHolder23ResetIndirectLayerTableEv +00000000000bf228 g DF .text 0000000000000010 _ZN2nn7account33ExternalNetworkServiceAccountInfoC2EOS1_ +00000000001b162c g DF .text 0000000000000048 _ZN2nn2ec29ShowShopInformationWithParamsEPKcRKNS_7account3UidENS0_8SourceIdE +00000000009436e0 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf5IFileE +000000000015ebe4 g DF .text 0000000000000004 _ZN2nn4pctl10InitializeEv +000000000029dc34 g DF .text 0000000000000060 _ZN7android6ParcelD2Ev +00000000003d2690 g DF .text 0000000000000004 c32rtomb +00000000007cd2b0 w DO .rodata 0000000000000028 _ZTSN2nn2am7service21IApplicationFunctionsE +00000000000d3e28 g DF .text 0000000000000080 _ZN2nn6applet13CreateStorageEPNS0_13StorageHandleEm +0000000000264adc g DF .text 0000000000000008 NvOsInterruptEnable +00000000001b6450 g DF .text 00000000000000c0 _ZNK2nn3mii8CreateIdeqERKS1_ +0000000000325e1c g DF .text 000000000000018c _ZNKSt3__111__libcpp_db22__less_than_comparableEPKvS2_ +00000000001bf8a4 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetEyeRotateEv +000000000023a0e0 g DF .text 0000000000000094 _ZN2nn8irsensor6detail15IrSensorSession17RunIrLedProcessorERKNS0_14IrCameraHandleERKNS0_26PackedIrLedProcessorConfigE +0000000000395c7c g DF .text 0000000000000020 _ZSt10unexpectedv +0000000000093580 g DF .text 0000000000000050 _ZN2nn2os6detail22MultiWaitHolderOfEvent15AddToObjectListEv +0000000000259454 g DF .text 0000000000000054 nvdcSetThreadPriority +00000000002360bc w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3hid19IHidTemporaryServerEED2Ev +0000000000a80cf0 w DO .bss 0000000000000010 _ZNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2idE +00000000003a1900 g DF .text 0000000000000040 __fixunsdfdi +000000000017fb54 g DF .text 0000000000000094 _ZN2nn4time21GetDeviceLocationNameEPNS0_12LocationNameE +0000000000367f9c g DF .text 00000000000001e4 _ZNSt3__15stoulERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPmi +00000000000f7a9c g DF .text 0000000000000164 silk_control_audio_bandwidth +0000000000286dc0 g DF .text 000000000000000c NvRmGpuChannelEventsControl +0000000000955838 w DO .data 0000000000000080 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +00000000001d9788 w DF .text 0000000000000154 _ZNSt3__118__insertion_sort_3IRPFbRKN2nn6fontll15OtfKerningTable11KerningPairES6_EPS4_EEvT0_SB_T_ +00000000002359e4 w DF .text 00000000000000f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm6ELm1ELl0EEEEEELm6ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm6ELm1EvEEj +0000000000274aa0 g DF .text 0000000000000008 NvRmChannelRegRd +00000000001cfeb4 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +000000000026374c g DF .text 0000000000000020 NvOsConditionWaitTimeout +0000000000009344 w DF .text 0000000000000078 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE17InitializeHashKeyEv +00000000000906bc g DF .text 0000000000000014 _ZN2nn2os11FreeTlsSlotENS0_7TlsSlotE +0000000000141010 g DF .text 0000000000000118 _ZN2nn3ngc15ProfanityFilter10InitializeEPvmb +0000000000127d74 w DF .text 0000000000000198 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSI_ILm16ELm8ELl16EEENSI_ILm8ELm8ELl32EEEEEELm40ELm4ELb1EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm16ELm8EvEESW_NSV_ILm8ELm8EvEEj +000000000019cd14 w DF .text 0000000000000034 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E25_nn_sf_sync_RequestUpdateERKNS0_9OutBufferESG_RKNS0_8InBufferE +0000000000347020 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb0EE14do_curr_symbolEv +00000000001648d0 g DF .text 0000000000000050 _ZN2nn5prepo6detail7msgpack22WriteUnsignedInteger64EPNS2_17OutputStreamParamEm +0000000000811c10 w DO .rodata 0000000000000031 _ZTSN2nn3ldn6detail30IUserLocalCommunicationServiceE +00000000003c3d6c g DF .text 0000000000000008 catopen +000000000039647c g DF .text 00000000000000e8 __cxa_vec_delete2 +00000000007c8e80 w DO .rodata 000000000000001a _ZTSN2nn2am7service8IStorageE +000000000016aedc g DF .text 0000000000000044 _ZN2nn8settings6system13GetTvSettingsEPNS1_10TvSettingsE +0000000000396564 g DF .text 00000000000000fc __cxa_vec_delete3 +0000000000160864 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E52_nn_sf_sync_GetFreeCommunicationApplicationListCountENS0_3OutIivEE +000000000021a8dc g DF .text 0000000000000074 _ZN2nn3hid6detail24SetNpadCommunicationModeENS0_21NpadCommunicationModeE +0000000000805590 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi109EE4MaskE +00000000002cebe4 g DF .text 0000000000000120 _ZN7android8String166removeEmm +00000000001b8e70 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetEyeRotateEv +00000000002953ec g DF .text 000000000000006c _ZN7android7BBinderD0Ev +000000000082239c g DO .rodata 0000000000000004 _ZNSt3__18ios_base4leftE +0000000000a80d98 g DO .bss 0000000000000010 _ZNSt3__17codecvtIDsc11__mbstate_tE2idE +00000000001602f0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +000000000017d450 g DF .text 0000000000000004 _ZN2nn4time25AdjustableUserSystemClock11from_time_tEl +000000000022c8dc g DF .text 0000000000000004 _ZN2nn3hid6system29GetAllowedBluetoothLinksCountEv +000000000097b7b0 w DO .data 0000000000000018 _ZTINSt3__17collateIwEE +0000000000139d5c g DF .text 00000000000000d8 _ZN2nn3nfc10InitializeEv +0000000000955b48 w DO .data 0000000000000120 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf14ISslConnectionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +00000000001c6e08 w DF .text 0000000000000170 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm16ELm1ELl0EEENSI_ILm1ELm1ELl16EEEEEELm17ELm4ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm16ELm1EvEENSU_ILm1ELm1EvEEj +0000000000124b88 g DF .text 0000000000000044 _ZN2nn7friends6detail20AsyncContextInternal35AttachCompletionEventReadableHandleEPNS_2os11SystemEventE +000000000016bb40 g DF .text 0000000000000090 _ZN2nn8settings6detail28NeedsToUpdateHeadphoneVolumeEPbS2_Pab +00000000001bfdcc g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetNoseTypeEv +0000000000158978 g DF .text 0000000000000084 _ZN2nn3nsd6detail10InitializeEv +00000000003d3590 g DF .text 00000000000001f4 fnmatch +000000000023a810 g DF .text 0000000000000004 _ZN2nn8irsensor6detail14SessionManagerD2Ev +000000000023de44 g DF .text 00000000000000f0 _ZN22nerd_gillette_internal5otete7jaimev119DecodeShapeCountROKERmPKhmPm +00000000003de1d0 g DF .text 000000000000008c printf +000000000094ca98 w DO .data 0000000000000088 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000017d8e8 g DF .text 0000000000000044 _ZN2nn4time13IsInitializedEv +00000000003620ec g DF .text 0000000000000030 _ZNSt3__119__shared_mutex_base6unlockEv +00000000000417e4 g DF .text 0000000000000004 _ZN2nn4edid24GetDisplayModePreferenceEPNS0_15DisplayModeInfoEPNS0_17DisplayTimingInfoEPNS0_13ImageSizeInfoEPKNS0_4EdidE +0000000000951810 w DO .data 0000000000000018 _ZTIN2nn3tma12IHtcsManagerE +0000000000155418 g DF .text 000000000000001c _ZN2nn4nifm16InitializeSystemEv +0000000000274118 g DF .text 00000000000000b4 NvRmChannelSyncPointWait +00000000000bbd78 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E43_nn_sf_sync_DebugUnlinkNintendoAccountAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000343bb4 w DF .text 0000000000000060 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_monthERiRS4_S4_RjRKNS_5ctypeIwEE +0000000000949530 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000c282c g DF .text 000000000000004c _ZN2nn2am19GetOverlayFunctionsEv +0000000000160290 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +00000000001c91ac g DF .text 0000000000000018 _ZN2nn5swkbd21CopyInitialStringInfoEPNS0_15ShowKeyboardArgEi +000000000022bd70 g DF .text 0000000000000044 _ZN2nn3hid6system20GetNpadInterfaceTypeEPhS2_RKj +000000000025d7b0 g DF .text 0000000000000038 NvUHashDeinit +00000000002707e0 g DF .text 0000000000000004 NvRmMemCacheListSyncForDevice +00000000008223e4 g DO .rodata 0000000000000004 _ZNSt3__18ios_base3ateE +00000000000ca0d0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E16_nn_sf_sync_ReadElRKNS0_9OutBufferE +00000000007cc8b0 w DO .rodata 0000000000000109 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service17IApplicationProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003e458c g DF .text 00000000000002d8 __wcsftime_l +0000000000001b80 g DF .text 0000000000000064 _ZN2nn6crypto16GenerateSha1HashEPvmPKvm +00000000000bf238 g DF .text 0000000000000018 _ZN2nn7account33ExternalNetworkServiceAccountInfoD2Ev +0000000000123b60 g DF .text 0000000000000158 _ZN2nn7friends13FriendSetting28ChangeOnlineNotificationFlagEPNS0_12AsyncContextEb +0000000000343264 w DF .text 0000000000000154 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm +0000000000361bac g DF .text 000000000000000c _ZNKSt19bad_optional_access4whatEv +00000000003e2020 g DF .text 00000000000000b8 __strchrnul +0000000000804290 w DO .rodata 0000000000000052 _ZTSN2nn3hid6detail8RingLifoINS1_17GestureDummyStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000000b7f88 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +00000000002637c4 g DF .text 0000000000000004 NvOsSemaphoreWait +0000000000004310 g DF .text 00000000000000ec _ZN2nn6crypto6detail7Md5Impl6UpdateEPKvm +000000000011ddd4 g DF .text 0000000000000124 _ZN2nn7friends14GetFriendCountEPiRKNS_7account3UidERKNS0_12FriendFilterE +0000000000174ef8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E39_nn_sf_sync_SetBluetoothBoostEnableFlagEb +0000000000201be0 g DF .text 0000000000000034 delete_kern +00000000002647f0 g DF .text 0000000000000018 cuda_Free +00000000003c2d60 g DF .text 0000000000000038 __iswspace_l +0000000000958cc0 w DO .data 0000000000000038 _ZTIN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_EE +0000000000230580 g DF .text 000000000000005c _ZN2nn3hid10GetXpadIdsEPNS0_11BasicXpadIdEi +000000000035575c g DF .text 0000000000000094 _ZNKSt3__15ctypeIcE10do_toupperEc +00000000003193c0 w DF .text 00000000000001e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi10ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSM_24OutRawClientArgumentTypeILm4ELm4EEENSM_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000022cde4 g DF .text 0000000000000048 _ZN2nn3hid26GetAccelerometerParametersEPfS1_RKNS0_19SixAxisSensorHandleE +000000000025d18c g DF .text 0000000000000004 NvOsFremove +00000000001a8228 g DF .text 0000000000000008 _ZN2nn5audio3dsp20CommandListProcessor17SetProcessTimeMaxEj +0000000000199af8 g DF .text 0000000000000100 _ZN2nn5audio19RegisterBufferEventEPNS0_7AudioInEPNS_2os11SystemEventE +0000000000317710 g DF .text 000000000000011c _ZN2nn3pcv10InitializeEv +0000000000213efc g DF .text 00000000000000ec CACHE_ENTRY_free +00000000003dc5f0 w DF .text 0000000000000040 clearerr_unlocked +00000000001520cc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E42_nn_sf_sync_IsAnyForegroundRequestAcceptedENS0_3OutIbvEE +0000000000347508 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb0EE16do_thousands_sepEv +00000000008251a0 g DO .rodata 0000000000000015 _ZTSSt16invalid_argument +00000000002645bc g DF .text 0000000000000020 app_AllocAlign +0000000000044560 g DF .text 0000000000000070 _ZN2nn4diag6detail9AbortImplEPKcS3_S3_iS3_z +00000000001bf484 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetFaceMakeEv +00000000001c674c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E22_nn_sf_sync_DeleteFileEv +000000000039f5e8 g DF .text 0000000000000068 __cmpsf2 +0000000000283590 g DF .text 00000000000000ec NvDdkVicCreateFilterCoefficients +00000000007b3f10 w DO .rodata 0000000000000029 _ZTSN2nn5fssrv2sf24ISaveDataTransferManagerE +000000000023c270 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E30_nn_sf_sync_RunMomentProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleERKNS5_27PackedMomentProcessorConfigE +000000000019c20c g DF .text 0000000000000054 _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl16QuerySystemEventENS_2sf3OutINS4_12NativeHandleEvEE +0000000000184324 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm4ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000001b142c g DF .text 0000000000000048 _ZN2nn2ec24ShowShopAddOnContentListENS_13ApplicationIdERKNS_7account10UserHandleE +00000000000bd820 g DF .text 0000000000000018 _ZN2nn7account12AsyncContextC2Ev +00000000007cc410 w DO .rodata 0000000000000109 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001b7648 g DF .text 0000000000000018 _ZN2nn3mii6detail28GetOrderIndexByFacelineColorENS0_13FacelineColorE +00000000007c94f0 w DO .rodata 0000000000000110 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002a0b50 g DF .text 00000000000000ec _ZNK7android6Parcel18readFileDescriptorEv +0000000000340a84 w DF .text 00000000000004f8 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE3getES4_S4_RNS_8ios_baseERjP2tmPKcSC_ +000000000039cb44 g DF .text 0000000000000070 _Unwind_Backtrace +000000000006b080 g DF .text 0000000000000008 _ZN2nn2fs16SaveDataExporter15GetSaveDataInfoEv +000000000008a0f4 g DF .text 00000000000000b8 _ZNK2nn3mem17StandardAllocator9GetSizeOfEPKv +000000000025537c g DF .text 0000000000000090 _ZN2nn3web34GetSharePageReturnValueFromStorageEPNS0_20SharePageReturnValueERKNS_6applet13StorageHandleE +0000000000978b90 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +000000000016c0a0 g DF .text 0000000000000070 _ZN2nn8settings6detail19SetShutdownRtcValueEl +00000000000994d4 g DF .text 0000000000000354 _ZN2nn2ro6detail8RoModule13BindVariablesEPKS2_ +000000000026f6e4 g DF .text 0000000000000004 NvRmMemHandleFromFd +0000000000336bf4 w DF .text 0000000000000464 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIdEES4_S4_S4_RNS_8ios_baseERjRT_ +000000000006f914 g DF .text 000000000000004c _ZN2nn4lmem14CreateUnitHeapEPvmmi +0000000000256124 g DF .text 00000000000000b4 _ZN2nn3web12ShowNewsPageEPNS0_18WebPageReturnValueERKNS0_15ShowNewsPageArgE +000000000014cc6c g DF .text 0000000000000234 _ZN2nn3ngc6detail3Set4InitEj +0000000000157728 g DF .text 00000000000000f4 _ZN2nn4nifm6detail37ConvertNetworkProfileDataToSfFromNifmEPNS1_2sf18NetworkProfileDataERKNS0_18NetworkProfileDataE +00000000001a0e90 g DF .text 00000000000000bc _ZN2nn5audio6server11InfoUpdater27UpdateVoiceChannelResourcesERNS1_12VoiceContextE +00000000003c2de8 g DF .text 0000000000000024 iswxdigit +00000000000fca84 g DF .text 00000000000000f4 silk_gains_dequant +00000000001221d4 g DF .text 0000000000000008 _ZNK2nn7friends6Friend7IsNewlyEv +000000000006fc9c g DF .text 0000000000000064 _ZN2nn4lmem6detail10HasAddressEPNS1_8HeapHeadEPv +00000000001cea80 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_FillSharedFrameBufferColorENS_2vi7fbshare17SharedLayerHandleEliiii +0000000000942a70 w DO .data 0000000000000038 _ZTIN2nn2fs10SubStorageE +00000000000a1bd8 g DF .text 000000000000000c nnsocketGetAddrInfo +0000000000169a14 g DF .text 0000000000000050 _ZN2nn8settings6system35GetAutomaticApplicationDownloadFlagEv +000000000017dd70 g DF .text 0000000000000070 _ZN2nn4time14GetDaysInMonthEii +000000000017b6a0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E32_nn_sf_sync_SetRenegotiationModeENS6_17RenegotiationModeE +0000000000958c90 w DO .data 0000000000000028 _ZTIN2nn2sf6detail18EmplacedImplHolderINS_5audio6server24AudioRendererManagerImpl15AudioDeviceImplEEE +00000000000810a0 g DF .text 00000000000000a0 nnmem_nlib_virtual_free +000000000095d1b0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000002c59a8 g DF .text 000000000000016c _ZN7android21SurfaceComposerClient13createSurfaceERKNS_7String8EjjijRNS_2spINS_7IBinderEEERNS4_INS_22IGraphicBufferProducerEEE +0000000000135f24 g DF .text 000000000000000c _ZNK2nn2lm6detail15LogPacketHeader14IsLittleEndianEv +0000000000343418 w DF .text 0000000000000624 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc +00000000000cb624 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000001a5da4 g DF .text 0000000000000250 _ZN2nn5audio6server9VoiceInfo16UpdateWaveBufferEPNS0_6common17BehaviorParameter9ErrorInfoEPNS1_10WaveBufferEPKNS0_9VoiceInfo18WaveBufferInternalEhbRNS1_10PoolMapperERKNS1_12BehaviorInfoE +0000000000328f98 w DF .text 0000000000000020 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5sgetcEv +00000000000bf65c g DF .text 0000000000000058 _ZNK2nn7account38ExternalNetworkServiceAccountRegistrar15GetProfileImageEPmPvm +0000000000117ce4 g DF .text 0000000000000008 _ZNK2nn5codec30HardwareOpusMultiStreamDecoder15GetChannelCountEv +00000000002507d4 g DF .text 000000000000000c _ZN2nn3ldneqENS0_11Ipv4AddressES1_ +00000000001d52e4 g DF .text 000000000000002c _ZN2nn2vi13ObjectManager22FindValidDisplayHolderEPNS0_7DisplayE +0000000000220440 w DF .text 0000000000000004 _ZN2nn3hid6detail11GestureLifoD0Ev +0000000000a834a0 g DO .bss 0000000000000004 __signgam +000000000010c840 g DF .text 0000000000000228 downmix_int +0000000000232474 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E30_nn_sf_sync_SetNpadJoyHoldTypeENS_6applet20AppletResourceUserIdEl +00000000007add10 g DO .rodata 0000000000000004 _ZN2nn4util7Color4f11SrgbDefaultE +00000000000a0120 g DF .text 0000000000000060 _ZN2nn2sf4hipc15SendSyncRequestENS_3svc6HandleEPvm +00000000001d06ac w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_CopyDetachedSharedFrameBufferImageENS_2vi7fbshare18SharedBufferHandleElljj +000000000016fc80 g DF .text 0000000000000070 _ZN2nn8settings6detail24SetBatteryPercentageFlagEb +000000000019f0f0 g DF .text 00000000000000c0 _ZN2nn5audio6server10PerfAspectINS1_12DetailAspectENS1_16CommandGeneratorEEptEv +0000000000956d40 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags22AdpcmLoopContextBugFixE +0000000000061730 g DF .text 0000000000000140 _ZN2nn2fs16GetGameCardIdSetEPNS_2gc13GameCardIdSetE +000000000018a5f0 g DF .text 000000000000003c _ZN2nn5audio42GetRequiredBufferSizeForCircularBufferSinkEPKNS0_22AudioRendererParameterEiiNS0_12SampleFormatE +00000000000f7300 g DF .text 00000000000000c4 silk_ana_filt_bank_1 +000000000006eefc g DF .text 000000000000003c _ZN2nn4lmem13CreateExpHeapEPvmi +000000000026ceb0 g DF .text 000000000000010c NvRmSurfaceDump +00000000000c5f24 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_GetBootModeENS0_3OutIhvEE +0000000000178594 g DF .text 00000000000000c0 _ZN2nn3ssl10Connection19SetServerCertBufferEPcj +0000000000286714 g DF .text 000000000000003c NvRmGpuDeviceGetKindInfo +00000000003c311c g DF .text 0000000000000050 wctrans +00000000001ca828 g DF .text 0000000000000018 _ZN2nn5swkbd6detail18InlineKeyboardImpl9DisappearEv +000000000015295c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E25_nn_sf_sync_SetPersistentEb +00000000001aa45c g DF .text 0000000000000004 _ZN2nn5audio3dsp6SignalEv +0000000000239724 g DF .text 0000000000000054 _ZN2nn8irsensor6detail15IrSensorSessionD2Ev +0000000000824150 g DO .rodata 0000000000000019 _ZTSNSt3__114error_categoryE +0000000000948888 w DO .data 0000000000000098 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas29IOAuthProcedureForExternalNsaENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000003af044 g DF .text 00000000000002ac expm1 +00000000001595d8 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc17GetCurrentSettingEPNS0_8SaveDataE +000000000036cda8 g DF .text 0000000000000024 _ZNSt3__16threadD1Ev +00000000000c5f44 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetCurrentFocusStateENS0_3OutIhvEE +00000000001b609c g DF .text 0000000000000098 _ZN2nn3mii18GetExpressionCountEi +000000000006f4f8 g DF .text 000000000000004c _ZN2nn4lmem11DumpExpHeapEPNS0_6detail8HeapHeadE +00000000001b74d0 g DF .text 0000000000000020 _ZN2nn3mii6detail16GetFavoriteColorENS0_13FavoriteColorENS0_9GammaTypeE +000000000003c634 g DF .text 00000000000000a0 _ZN2nn4util28GetCountryFromIso31661Alpha2EPNS0_7CountryEPKcm +00000000003c3e04 g DF .text 000000000000006c iconv_open +0000000000081dac g DF .text 0000000000000020 nnmem_nlib_fd_close +00000000001c35c8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding6Ei +000000000012a76c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc20INotificationServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000001d90 g DF .text 0000000000000010 _ZN2nn6crypto6detail6BigNum13ReserveStaticEPji +00000000001aa48c g DF .text 0000000000000004 _ZN2nn5audio3dsp7MailBox4SendEi +000000000002a488 g DF .text 000000000000000c _ZN2nn5image6detail4jpeg13jpeg_mem_termEPNS2_18jpeg_common_structE +0000000000118fc0 g DF .text 0000000000000004 _ZN2nn5codec6detail29VerifyOpusEncoderControlValueEP11OpusEncoderii +000000000039f34c g DF .text 0000000000000068 __cmpdf2 +00000000001d00b8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_DestroyIndirectConsumerEndPointEm +000000000039eb14 g DF .text 0000000000000470 __addtf3 +00000000000ac914 g DF .text 0000000000000038 nnResolverGetspecificPrivate +0000000000163218 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +00000000000c9e14 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E16_nn_sf_sync_OpenENS0_3OutINS0_13SharedPointerINS6_16IStorageAccessorEEEvEE +0000000000183584 g DF .text 00000000000000fc _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImplC1ENS_2os14EventClearModeENS0_34EnsureNetworkClockAvailabilityModeE +00000000000fc8c8 g DF .text 00000000000001bc silk_gains_quant +00000000001a3014 g DF .text 000000000000000c _ZN2nn5audio6server13EffectContextC1Ev +00000000002285a4 g DF .text 0000000000000044 _ZN2nn3hid6system33ResetAnalogStickManualCalibrationENS1_11UniquePadIdENS1_19AnalogStickPositionE +000000000011b684 g DF .text 0000000000000014 _ZN2nn3err18ErrorResultVariantaSERKNS0_9ErrorCodeE +00000000000bc380 w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi9ELm0EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +000000000021cd94 g DF .text 0000000000000074 _ZN2nn3hid6detail27ResetGyroscopeZeroDriftModeENS0_19SixAxisSensorHandleE +0000000000959390 w DO .data 0000000000000018 _ZTIN2nn2sf6detail37UnmanagedEmplacedImplHolderBaseGetterINS_5audio6server24AudioRendererManagerImplEvE5Impl2E +000000000022cbac g DF .text 0000000000000044 _ZN2nn3hid18StartSixAxisSensorERKNS0_19SixAxisSensorHandleE +00000000003c50b0 g DF .text 0000000000000040 __pleval +0000000000953770 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000042238 g DF .text 0000000000000020 _ZN2nn4edid6detail30GetDetailedTimingVsyncPolarityEh +00000000000bdc14 g DF .text 0000000000000068 _ZN2nn7account31FinalizeBaasAccessTokenAccessorEv +000000000022062c g DF .text 000000000000000c _ZN2nn3hid6detail36GetSixAxisSensorHandleNpadStyleIndexERKNS0_19SixAxisSensorHandleE +00000000000970c4 g DF .text 0000000000000010 _ZN2nn2os6detail18NotifyDebuggerImplE22nnosNotificationReasonmm +00000000001805a8 g DF .text 0000000000000038 _ZN2nn4time6detail7service21ServiceProviderClient8FinalizeEv +0000000000328e5c w DF .text 0000000000000034 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED0Ev +000000000094d480 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21ILibraryAppletCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000013e478 g DF .text 0000000000000070 _ZN2nn3nfp6GetAllEPNS0_7NfpDataERKNS0_12DeviceHandleE +0000000000189f7c g DF .text 000000000000002c _ZN2nn5audio26SetPerformanceDetailTargetEPNS0_19AudioRendererConfigEPKNS0_12FinalMixTypeE +00000000002344c0 g DF .text 00000000000001f8 _ZN2nn3hid6detail26CreateHidSystemServerProxyEPNS_2sf13SharedPointerINS0_16IHidSystemServerEEE +00000000000bc790 w DF .text 00000000000001dc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm4096EEENSG_ILi1ELi26ELm256EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeESS_NS2_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000225efc g DF .text 00000000000000cc _ZN2nn3hid6detail16GetUniquePadTypeEPNS0_6system13UniquePadTypeENS2_11UniquePadIdE +00000000002cdbf8 g DF .text 0000000000000004 _ZN7android7RefBase10renameRefsEmRKNS_16ReferenceRenamerE +0000000000949568 g DO .data 0000000000000020 _ZTVN2nn7account28NetworkServiceAccountManagerE +00000000001b684c g DF .text 0000000000000004 _ZN2nn3mii6detail25CalculateSizeAndAlignmentD2Ev +0000000000286dd8 g DF .text 000000000000000c NvRmGpuChannelGetErrorNotification +00000000007c9710 w DO .rodata 0000000000000108 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000109444 g DF .text 0000000000000074 silk_scale_vector32_Q26_lshift_18 +000000000095e160 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail26ILocalCommunicationServiceE +0000000000274aa8 g DF .text 0000000000000008 NvRmChannelRegWr +000000000027011c g DF .text 000000000000000c NvRmMemCacheSyncForCpu +00000000002990a4 g DF .text 0000000000000004 _ZN7android9HeapCache10binderDiedERKNS_2wpINS_7IBinderEEE +0000000000136aac w DF .text 000000000000002c _ZN2nn2lm6detail17UnitHeapAllocatorILm1024ELi4ELi8EED2Ev +0000000000180b3c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E58_nn_sf_sync_IsStandardNetworkSystemClockAccuracySufficientENS0_3OutIbvEE +00000000001b89f0 g DF .text 0000000000000020 _ZNK2nn3mii6detail11CoreDataRaw7IsValidEv +00000000000b8324 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E72_nn_sf_sync_RefreshNintendoAccountUserResourceCacheAsyncIfSecondsElapsedENS0_3OutIbvEENSQ_INS0_13SharedPointerINSK_13IAsyncContextEEEvEEj +00000000001594f4 g DF .text 00000000000000e4 _ZN2nn3nsd6detail3ipc15GetNasApiFqdnExEPNS_6ResultEPNS0_4FqdnE +00000000001c51c0 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding3Ev +0000000000170d78 g DF .text 000000000000005c _ZN2nn8settings6detail22GetDebugPadKeyboardMapEPNS0_19DebugPadKeyboardMapE +000000000036c218 g DF .text 0000000000000044 _ZNKSt3__114error_category10equivalentEiRKNS_15error_conditionE +00000000000619e4 g DF .text 0000000000000148 _ZN2nn2fs15WriteToGameCardElPvm +000000000022da58 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm6EEEiPNS0_16TouchScreenStateIXT_EEEi +00000000003148c8 w DF .text 000000000000019c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutHandleArgumentInfoILi0ELi1EEENS7_20InHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutHandleClientArgumentTypeENSM_26InHandleClientArgumentTypeENSM_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000039681c g DF .text 000000000000005c _ZNSt12domain_errorD0Ev +00000000003e79bc g DF .text 0000000000000028 __nnmusl_pthread_attr_getstack +00000000000bbf00 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +00000000001b8ff4 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw16GetEyebrowRotateEv +0000000000805730 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi140EE4MaskE +000000000017479c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_GetNetworkSystemClockContextENS0_3OutINS_4time18SystemClockContextEvEE +0000000000978ac0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000021dcb8 g DF .text 0000000000000078 _ZN2nn3hid6detail10HasBatteryEPbRKj +000000000026f5d4 g DF .text 0000000000000110 NvRmMemHandleFromId +00000000002540ac g DF .text 000000000000001c _ZN2nn3web26OfflineHtmlPageReturnValueC2Ev +00000000001b61dc g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor16GetFacelineColorEv +00000000002c93e8 g DF .text 00000000000000d8 _ZN7android13GraphicBufferC2Ev +000000000003bbfc g DF .text 0000000000000008 _ZNK2nn4util10StringPool14GetStringCountEv +00000000003d2088 g DF .text 0000000000000008 getopt_long +00000000000a21d8 g DF .text 0000000000000018 _ZN2nn6socket6detail10InitializeERKNS0_6ConfigE +00000000001cb858 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl24SetChangedStringCallbackEPFvPKNS0_16ChangedStringArgEE +0000000000264b78 g DF .text 0000000000000008 NvOsGetSystemTime +0000000000089bd8 g DF .text 00000000000000cc _ZN2nn7nlibsdk4heap10CachedHeap6QueryVEiSt9__va_list +00000000002c94e4 g DF .text 0000000000000140 _ZN7android13GraphicBufferC2Ejjij +000000000004745c g DF .text 0000000000000020 _ZN2nn2fs32SetDefaultFsContextResultHandlerEPFNS0_14AbortSpecifierENS_6ResultEE +00000000001529cc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E26_nn_sf_sync_SetRawPriorityEh +0000000000001cb8 g DF .text 0000000000000070 _ZN2nn6crypto6detail6BigNum3SetEPKvm +00000000001bc838 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw16GetEyebrowRotateEv +000000000022a0ec g DF .text 000000000000000c _ZNK2nn3hid15KeyCodeComposer19GetCompositionCountEv +000000000016e874 g DF .text 0000000000000070 _ZN2nn8settings6detail38GetPushNotificationActivityModeOnSleepEPi +00000000008050f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi72EE4MaskE +0000000000362c08 w DF .text 0000000000000048 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSERKS5_ +000000000018b98c g DF .text 0000000000000074 _ZN2nn5audio12SplitterInfo18GetDestinationDataEii +00000000001986bc g DF .text 0000000000000008 _ZN2nn5audio23GetAudioOutChannelCountEPKNS0_8AudioOutE +0000000000174028 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetNetworkSettingsENS0_3OutIivEERKNS0_8OutArrayINS5_6system15NetworkSettingsEEE +000000000002ebe8 g DF .text 0000000000000064 _ZN2nn5image11JpegDecoder30DecodeWithPreconfiguredDecoderEPvmiPKvmRKS1_S2_m +00000000000d7a78 g DF .text 00000000000000d0 _ZN2nn4bcat6detail3ipc17CreateBcatServiceEPPNS2_12IBcatServiceE +00000000000093c8 w DF .text 000000000000000c _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEED2Ev +0000000000947370 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000c4640 g DF .text 00000000000000c0 _ZN2nn2am29FinalizeApplicationInterfacesEv +00000000000819fc g DF .text 0000000000000020 nnmem_nlib_thread_join +00000000003a43f0 g DF .text 000000000000000c __negti2 +00000000000c063c g DF .text 00000000000000a8 _ZN2nn7account34NetworkServiceAccountAdministrator13RegisterAsyncEPNS0_12AsyncContextE +00000000001b7730 g DF .text 0000000000000018 _ZN2nn3mii6detail19GetMouthColorToVer3ENS0_11CommonColorE +00000000002c6014 g DF .text 00000000000000c8 _ZN7android21SurfaceComposerClient7setCropERKNS_2spINS_7IBinderEEERKNS_4RectE +00000000000c26fc g DF .text 000000000000004c _ZN2nn2am21GetApplicationCreatorEv +00000000003122a4 g DF .text 00000000000000a8 _ZN2nv28SetGraphicsDevtoolsAllocatorEPFPvmmS0_EPFvS0_S0_EPFS0_S0_mS0_ES0_ +00000000000d19d4 w DF .text 000000000000015c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutHandleClientArgumentTypeENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000150d48 g DF .text 0000000000000028 _ZN2nn4nifm6detail13RequestClient13SetPersistentEb +0000000000825250 g DO .rodata 0000000000000014 _ZTSSt15underflow_error +00000000002a1210 g DF .text 0000000000000058 _ZN7android6Parcel20closeFileDescriptorsEv +0000000000979980 w DO .data 0000000000000050 _ZTCNSt3__114basic_iostreamIcNS_11char_traitsIcEEEE16_NS_13basic_ostreamIcS2_EE +000000000015d294 g DF .text 0000000000000170 _ZN2nn4pctl22GetPinCodeChangedEventEv +00000000001affb8 g DF .text 0000000000000060 _ZN2nn5audio3dsp20DspExceptionNotifier15AddObserverImplEPFvPvES3_ +0000000000803920 g DO .rodata 0000000000000027 _ZTSN2nn3hid6detail20SharedMemoryAccessorE +000000000022d47c g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm2EEEvPNS0_16TouchScreenStateIXT_EEE +0000000000089bc8 g DF .text 0000000000000010 _ZN2nn7nlibsdk4heap10CachedHeap7ReleaseEv +000000000008d5e4 g DF .text 0000000000000004 _ZN2nn2os16SignalLightEventEPNS0_14LightEventTypeE +00000000001b7628 g DF .text 0000000000000020 _ZN2nn3mii6detail12GetSkinColorENS0_13FacelineColorENS0_9GammaTypeE +00000000001b2128 g DF .text 000000000000017c _ZN2nn2ec6detail18ShowShopCouponImplENS1_10LaunchModeENS0_8CouponIdERKNS_7account3UidENS0_8SourceIdE +0000000000099d5c g DF .text 0000000000000010 _ZN2nn2sf30GetGlobalDefaultMemoryResourceEv +00000000001d9d20 g DF .text 0000000000000010 _ZN2nn6fontll18ScalableFontEngine8LoadFontEPcPKvjj +000000000023b11c g DF .text 0000000000000014 _ZN2nn8irsensor8MakeRectEiiii +00000000002cd7f4 g DF .text 000000000000000c _ZNK7android7RefBase14getStrongCountEv +00000000003a6de4 g DF .text 0000000000000074 __atomic_fetch_and_16 +00000000000817a4 g DF .text 0000000000000024 nnmem_nlib_semaphore_post_ex +00000000001719a4 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm384EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000009556e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +0000000000286cd4 g DF .text 000000000000000c NvRmGpuChannelSetPreemptionMode +00000000002a046c g DF .text 000000000000002c _ZNK7android6Parcel9readInt64Ev +000000000016a824 g DF .text 0000000000000078 _ZN2nn8settings7factory9GetSslKeyEPNS1_6SslKeyE +00000000001a0e24 g DF .text 000000000000006c _ZN2nn5audio6server11InfoUpdaterC1EmmmmjRNS1_12BehaviorInfoE +00000000001a4f74 g DF .text 00000000000000b0 _ZN2nn5audio6server22CircularBufferSinkInfo6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPNS3_13SinkOutStatusEPKNS3_15SinkInParameterERNS1_10PoolMapperE +0000000000233a6c w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm8ELm8ELl16EEEEEELm24ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEESM_j +00000000000b13a0 g DF .text 0000000000000004 _ZN2nn6socket6detail13GetHostByNameEPKcPKNS0_14ResolverOptionEm +00000000000d96f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E16_nn_sf_sync_OpenERKNS5_13DirectoryNameE +00000000000d4e78 g DF .text 000000000000004c _ZN2nn4bcat6detail25DeliveryCacheProgressImpl19SetDownloadProgressElRKNS0_13DirectoryNameERKNS0_8FileNameEl +000000000017ce14 g DF .text 000000000000000c _ZN2nn3ssl6detail15BuiltinDataInfoC2EjNS2_17BuiltinDataStatusEPKcPNS1_17BuiltinDataLoaderE +00000000000d3b2c g DF .text 00000000000000dc _ZN2nn6applet27PushToInteractiveOutChannelENS0_23LibraryAppletSelfHandleENS0_13StorageHandleE +00000000000b822c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E32_nn_sf_sync_InvalidateTokenCacheENS_13ApplicationIdE +00000000003af5b0 g DF .text 0000000000000040 fdimf +00000000003c6bb4 g DF .text 0000000000000190 atan2f +000000000031d444 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIssEEPsEEjT0_S5_S5_S5_S5_T_ +00000000000bb384 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE50_nn_sf_sync_InvalidateServiceEntryRequirementCacheENS_13ApplicationIdE +00000000000c8e48 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetCurrentLibraryAppletENS0_3OutINS0_13SharedPointerINS6_15IAppletAccessorEEEvEE +00000000003336ac g DF .text 0000000000000018 _ZNSt3__18ios_base15sync_with_stdioEb +00000000001c060c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw9GetGlassYEv +0000000000096574 g DF .text 0000000000000078 _ZN2nn2os6detail30InterProcessEventImplByHorizon7TryWaitEjb +000000000097b448 g DO .data 0000000000000060 _ZTVNSt3__115__codecvt_utf16IDsLb1EEE +000000000023a020 g DF .text 00000000000000c0 _ZN2nn8irsensor6detail15IrSensorSession22RunTeraPluginProcessorERKNS0_14IrCameraHandleERKNS0_31PackedTeraPluginProcessorConfigE +0000000000046624 g DF .text 0000000000000024 _ZN2nn2fs28SetLocalApplicationAccessLogEb +0000000000285f7c g DF .text 000000000000003c nvgr_set_clientdata +00000000003c6d44 g DF .text 000000000000031c atan2l +00000000003c9ae4 g DF .text 0000000000000078 fdiml +000000000039f2d4 g DF .text 0000000000000040 __cmpdi2 +00000000003a7cdc g DF .text 0000000000000000 __set_thread_area +0000000000095f14 g DF .text 0000000000000004 _ZNK2nn2os6detail26ThreadManagerImplByHorizon20GetCurrentCoreNumberEv +00000000000b6dc8 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm16ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENS2_24BufferClientArgumentTypeEj +00000000000bcfc0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E19_nn_sf_sync_SuspendENS0_3OutINSK_4UuidEvEE +0000000000124830 g DF .text 000000000000001c _ZN2nn7friends6detail20AsyncContextInternalC1Ev +000000000022de18 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm16EEEiPNS0_16TouchScreenStateIXT_EEEi +0000000000324ec0 g DF .text 00000000000001f0 _ZNSt3__111__libcpp_db10__insert_cEPv +00000000003cfa3c g DF .text 0000000000000030 __expo2 +000000000017cdc4 g DF .text 0000000000000018 _ZN2nn3ssl6detail16SslMemoryManager13AllocateChunkEmm +000000000024f968 g DF .text 0000000000000078 _ZN2nn3ldn15FinalizeMonitorEv +0000000000140024 g DF .text 0000000000000118 _ZN2nn3nfp7UnmountERKNS0_12DeviceHandleE +00000000002cdbfc g DF .text 0000000000000004 _ZN7android7RefBase11renameRefIdEPNS0_12weakref_typeEPKvS4_ +0000000000347548 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb0EE13do_pos_formatEv +00000000003c2614 g DF .text 0000000000000010 isgraph +000000000009377c g DF .text 0000000000000014 _ZNK2nn2os6detail31MultiWaitHolderOfInterruptEvent15GetNativeHandleEPj +0000000000152a7c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E23_nn_sf_sync_GetRevisionENS0_3OutIjvEE +00000000003a7fb0 g DF .text 0000000000000004 __errno_location +000000000017b794 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E17GetCmifBaseObjectEv +0000000000230468 g DF .text 0000000000000004 _ZN2nn3hid15VibrationWriter5WriteERKNS0_14VibrationValueE +0000000000166ebc w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_5prepo6detail3ipc13IPrepoServiceENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +0000000000197504 g DF .text 00000000000000ec _ZN2nn5audio19ListAudioDeviceNameEPNS0_15AudioDeviceNameEi +0000000000823340 g DO .rodata 0000000000000022 _ZTSNSt3__115__codecvt_utf16IDiLb1EEE +00000000000b5f58 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas22IManagerForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +0000000000135f7c g DF .text 0000000000000008 _ZN2nn2lm6detail15LogPacketHeader14SetPayloadSizeEj +00000000002646a8 g DF .text 000000000000000c glslc_GetAllocator +0000000000045bc8 g DF .text 000000000000002c _ZN2nn4diag18PrintBacktraceItemEmb +0000000000216448 g DF .text 0000000000000060 _ZN2nn3hid5debug6detail19StartFirmwareUpdateENS0_6system11UniquePadIdE +00000000000d3ea8 g DF .text 0000000000000110 _ZN2nn6applet18CreateLargeStorageEPNS0_13StorageHandleEPvmb +00000000001569e4 g DF .text 0000000000000004 _ZN2nn4nifm23GetRequestClientPointerENS0_13RequestHandleE +000000000005c298 w DF .text 000000000000013c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000007c3c20 w DO .rodata 00000000000000fe _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000188244 g DF .text 000000000000000c _ZN2nn5audio29GetI3dl2ReverbReflectionsGainEPKNS0_15I3dl2ReverbTypeE +0000000000070348 g DF .text 000000000000007c _ZN2nn4lmem6detail25GetExpHeapAllocatableSizeEPNS1_8HeapHeadEi +00000000001a606c g DF .text 0000000000000050 _ZNK2nn5audio6server9VoiceInfo10ShouldSkipEv +000000000003b6a0 g DF .text 000000000000004c _ZN2nn4util16BinaryFileHeader12SetAlignmentEm +00000000000c6d28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_GetLibraryAppletLaunchableEventENS0_3OutINS0_12NativeHandleEvEE +00000000003bcb2c g DF .text 0000000000000404 __do_des +000000000003b89c g DF .text 0000000000000008 _ZN2nn4util17BinaryBlockHeader12SetBlockSizeEm +00000000007c2600 w DO .rodata 00000000000001a1 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4http15IOAuthProcedureENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000187284 g DF .text 0000000000000120 _ZN2nn5audio9AddReverbEPNS0_19AudioRendererConfigEPNS0_10ReverbTypeEPvmPNS0_12FinalMixTypeEi +000000000032454c g DF .text 0000000000000014 _ZNSt3__124__libcpp_debug_exceptionC1Ev +000000000024ed30 g DF .text 0000000000000098 _ZN2nn6capsrv12LibraryState25SetMovieReadStreamSessionENS_2sf13SharedPointerINS0_2sf29IMovieReadStreamServiceObjectEEENS1_12ServiceLevelE +00000000003de764 w DF .text 0000000000000078 __isoc99_swscanf +000000000001f464 g DF .text 00000000000001e8 _ZN2nn5image6detail4jpeg23jinit_d_main_controllerEPNS2_22jpeg_decompress_structEb +00000000000ac400 g DF .text 00000000000001b0 _ZN2nn6socket6detail10socketPtonEiPKcPv +00000000000c1ee4 g DF .text 0000000000000044 _ZNK2nn7account49ExternalNetworkServiceAccountIntroducingProcedure11GetNicknameEPNS0_8NicknameE +00000000001af9dc g DF .text 00000000000000b4 _ZN2nn5audio3dsp12ApplyMixRampEPiPKiiii +0000000000215ff8 g DF .text 00000000000001dc _ZN2nn3hid6detail17GetDebugPadStatesEPiPNS0_13DebugPadStateEi +000000000094c8a8 w DO .data 00000000000000c8 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service20IApplicationAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000fa65c g DF .text 000000000000010c silk_InitEncoder +00000000003c4014 g DF .text 0000000000000c18 iconv +00000000000cb518 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service22IGlobalStateControllerEEEvi +00000000001bffdc g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetMouthColorEv +000000000029f22c g DF .text 000000000000019c _ZN7android6Parcel12writeString8ERKNS_7String8E +00000000001c3298 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetFaceTypeEi +00000000001cdb94 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +00000000000b2cbc g DF .text 0000000000000050 _ZN2nn7account12GetUserCountEPi +00000000001b6214 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetEyeColorEv +000000000097d8e0 g DO .data 0000000000000028 _ZTVSt10bad_typeid +000000000039d4dc g DF .text 00000000000000b8 __fixtfsi +0000000000068fd8 g DF .text 000000000000014c _ZN2nn2fs20GetSaveDataTimeStampEPNS_4time9PosixTimeENS0_15SaveDataSpaceIdEm +00000000001d6958 g DF .text 00000000000000a4 _ZN2nn2vi6detail18SystemServiceProxy24FinalizeRelayServiceImplEv +0000000000318dcc w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E19_nn_sf_sync_PowerOnENS5_18PowerControlTargetEi +00000000000a189c g DF .text 0000000000000004 _ZN2nn6socket10GetSockOptEiiiPvPj +0000000000091414 g DF .text 0000000000000004 nnosGetReadableHandleOfSystemEvent +0000000000186444 g DF .text 0000000000000018 _ZN2nn5audio8AddDelayEPNS0_19AudioRendererConfigEPNS0_9DelayTypeEPvmPNS0_12FinalMixTypeENS_8TimeSpanEi +0000000000147584 g DF .text 00000000000000a8 _ZN2nn3ngc6detail12BinaryWriter5CloseEv +00000000007b94e0 w DO .rodata 0000000000000075 _ZTSN2nn2sf6detail27UnmanagedEmplacedImplHolderINS0_4hipc6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEE +00000000000caa38 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +000000000019d104 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E39_nn_sf_sync_QueryAudioDeviceSystemEventENS0_3OutINS0_12NativeHandleEvEE +0000000000365990 w DF .text 000000000000004c _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE2atEm +00000000003c2dc0 g DF .text 0000000000000028 __iswupper_l +00000000007f0dc0 w DO .rodata 0000000000000050 _ZTSN2nn5audio6server10EffectInfoILNS0_10EffectTypeE5ENS0_20I3dl2ReverbParameterEEE +00000000007d4cda g DO .rodata 0000000000000003 silk_pitch_contour_10_ms_NB_iCDF +000000000011ea24 g DF .text 00000000000001ac _ZN2nn7friends17SendFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdENS0_11RequestTypeERKNS0_28ExternalApplicationCatalogIdERKNS0_15InAppScreenNameESE_ +0000000000a80d50 g DO .bss 0000000000000004 _ZNSt3__16locale2id9__next_idE +00000000007e8f30 w DO .rodata 00000000000000c0 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002ce0e8 g DF .text 0000000000000148 _ZN7android8String165setToERKS0_mm +0000000000979578 w DO .data 0000000000000050 _ZTVNSt3__113basic_istreamIwNS_11char_traitsIwEEEE +0000000000255fe4 g DF .text 000000000000001c _ZN2nn3web6detail23SharePageReturnValue2_0C2Ev +000000000036b5a4 g DF .text 000000000000007c _ZNSt3__112strstreambufC2EPKal +00000000000b40c4 g DF .text 00000000000000a0 _ZN2nn7account24AuthenticateServiceAsyncEPNS0_12AsyncContextE +000000000026f320 g DF .text 0000000000000004 NvRmClose +00000000003a7d1c g DF .text 0000000000000008 dirfd +0000000000954de0 w DO .data 0000000000000018 _ZTIN2nn8settings28IFirmwareDebugSettingsServerE +0000000000239b18 g DF .text 000000000000002c _ZN2nn8irsensor6detail15IrSensorSession28IsVersionCheckRequestEnabledERKNS0_14IrCameraHandleE +000000000016a504 g DF .text 0000000000000044 _ZN2nn8settings6system39GetConsoleSixAxisSensorAccelerationBiasEPNS1_36ConsoleSixAxisSensorAccelerationBiasE +00000000007ce090 w DO .rodata 00000000000000b0 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +000000000004cce8 g DF .text 000000000000005c _ZN2nn2fs6detail17DirectoryAccessor4ReadEPlPNS0_14DirectoryEntryEl +00000000000489a0 g DF .text 0000000000000160 _ZN2nn2fs24HierarchicalRomFileTable12GetFileEntryEPNS1_12FileRomEntryEi +00000000000ba0b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E22_nn_sf_sync_DeleteUserERKNS5_3UidE +0000000000173f90 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object12AddReferenceEv +000000000026cdd8 g DF .text 00000000000000d8 NvRmSurfaceComputeName +0000000000274910 g DF .text 0000000000000064 NvRmChannelSetSubmitTimeout +0000000000804060 w DO .rodata 000000000000005b _ZTSN2nn3hid6detail8RingLifoINS1_27NfcXcdDeviceHandleStateImplELi1ENS1_13AtomicStorageIS3_EEEE +00000000002393a0 g DF .text 0000000000000014 _ZN2nn8irsensor6detail7SessionD2Ev +0000000000397974 g DF .text 0000000000000118 __dynamic_cast +000000000039d594 g DF .text 0000000000000114 __fixtfti +0000000000128070 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm2048EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSI_ILm8ELm8ELl16EEEEEELm24ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENST_ILm8ELm8EvEEj +00000000003a3ce0 g DF .text 000000000000018c __mulvti3 +000000000094e130 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IOverlayFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000023419c w DF .text 0000000000000118 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEEEEELm16ELm8ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSL_23InRawClientArgumentTypeILm8ELm8EvEENSO_ILm4ELm4EvEEj +000000000095c820 w DO .data 0000000000000018 _ZTIN2nn4util21IntrusiveListBaseNodeINS_3hid13VibrationNodeES3_EE +0000000000313898 g DF .text 0000000000000048 _ZN2nn3fgm7Request6CancelEv +00000000000c81c0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E52_nn_sf_sync_ReleaseLastForegroundCaptureSharedBufferEv +00000000000c9f6c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000003ac080 g DF .text 0000000000000004 pread +00000000000cda8c w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE30_nn_sf_sync_GetAudioControllerENS0_3OutINS0_13SharedPointerINS6_16IAudioControllerEEEvEE +0000000000959198 g DO .data 0000000000000010 _ZTIN2nn5audio6server12SinkInfoBaseE +000000000034f0a8 w DF .text 0000000000000004 _ZNKSt3__18messagesIcE8do_closeEl +00000000003ac09c g DF .text 0000000000000014 fesetround +00000000001e01c8 g DF .text 0000000000000208 FSS_delete_font +00000000008054d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi103EE4MaskE +00000000000bf368 g DF .text 0000000000000058 _ZNK2nn7account33ExternalNetworkServiceAccountInfo37LoadNetworkServiceAccountIdTokenCacheEPmPcm +00000000001476c8 g DF .text 0000000000000044 _ZN2nn3ngc6detail3Bp_12SetAllocatorEPNS1_16WorkBufAllocatorE +0000000000189320 g DF .text 0000000000000008 _ZNK2nn5audio14MemoryPoolInfo7GetSizeEv +000000000022be74 g DF .text 000000000000005c _ZN2nn3hid12GetNpadStateEPNS0_17NpadHandheldStateERKj +0000000000318ed4 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_GetModuleStateTableERKNS0_8OutArrayINS5_11ModuleStateEEENS0_3OutIivEEi +00000000000b19d4 g DF .text 00000000000000dc _ZN2nn7account27ShowUserSelectorForLauncherEPNS0_3UidERKNS0_21UserSelectionSettingsERKNS_13ApplicationIdE +00000000003185a4 g DF .text 00000000000000f4 _ZN2nn3pcv24InitializeForArbitrationEv +00000000001cbc30 g DF .text 0000000000000070 _ZN2nn2vi15GetDisplayGammaEPfPKNS0_7DisplayE +00000000000bda2c g DF .text 0000000000000024 _ZN2nn7account12AsyncContext7HasDoneEPb +000000000014b0dc g DF .text 0000000000000008 _ZN2nn3ngc6detail15NullInputStream5Skip_Em +00000000000bf708 g DF .text 0000000000000098 _ZN2nn7account38ExternalNetworkServiceAccountRegistrar44EnsureNetworkServiceAccountIdTokenCacheAsyncEPNS0_12AsyncContextE +00000000001372f8 g DF .text 00000000000001d8 _ZN2nn3nfc6client21CreateSystemInterfaceEv +00000000001403c8 g DF .text 00000000000000a4 _ZN2nn3nfp18SetApplicationAreaERKNS0_12DeviceHandleEPKvm +0000000000199668 g DF .text 000000000000000c _ZN2nn5audio20SetAudioInBufferInfoEPNS0_13AudioInBufferEPvm +000000000094e640 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24IApplicationProxyServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000011b648 g DF .text 0000000000000014 _ZN2nn3err18ErrorResultVariantC1ERKNS_6ResultE +0000000000a80db8 g DO .bss 0000000000000010 _ZNSt3__18numpunctIcE2idE +00000000007b9560 w DO .rodata 0000000000000046 _ZTSN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessageE +00000000007d6500 g DO .rodata 0000000000000021 _ZTSN2nn5codec19HardwareOpusDecoderE +0000000000802530 w DO .rodata 0000000000000102 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000002707d4 g DF .text 0000000000000008 NvRmMemFloorVpr +00000000000a1aa4 g DF .text 0000000000000004 nnsocketGetSockOpt +00000000007c4970 w DO .rodata 000000000000014a _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ISystemAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000286cb0 g DF .text 000000000000000c NvRmGpuDeviceWaitSemaphore +00000000001d0138 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_GetDisplayHotplugStateENS0_3OutIjvEEm +000000000012a69c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc20INotificationServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +000000000024bd2c g DF .text 0000000000000078 _ZN2nn3kpr10GetKeyCodeEPNS0_7KeyCodeEiNS_4util10BitFlagSetILi32ENS_3hid16KeyboardModifierEEERKNS0_10KeyCodeMapENS0_14KeyCodeMapModeE +0000000000081d4c g DF .text 000000000000001c nnmem_nlib_debug_backtrace_gettext +00000000007bd640 w DO .rodata 0000000000000151 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000029fd70 g DF .text 00000000000002a4 _ZN7android6Parcel9writeBlobEmPNS0_12WritableBlobE +000000000097a0f8 w DO .data 0000000000000030 _ZTVNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000000b18c8 g DF .text 000000000000002c _ZNK2nn7account10UiSettings14GetLicenseTypeEv +00000000007ffe30 w DO .rodata 0000000000000157 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +000000000019a638 g DF .text 0000000000000008 _ZN2nn5audio32GetFinalOutputRecorderSampleRateEPKNS0_19FinalOutputRecorderE +00000000001c672c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E23_nn_sf_sync_DestroyFileEv +00000000001816a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E36_nn_sf_sync_ToCalendarTimeWithMyRuleENS0_3OutINSL_12CalendarTimeEvEENST_INSL_2sf22CalendarAdditionalInfoEvEENSL_9PosixTimeE +000000000032982c w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE4setgEPwS4_S4_ +000000000005985c w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSI_ILm4ELm4ELl4EEEEEELm8ELm0ELb0EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEESU_jPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001335e0 g DF .text 0000000000000154 _ZN2nn4htcs6detail4bindENS_2sf13SharedPointerINS_3tma7ISocketEEEPKNS0_12SockAddrHtcsERi +000000000095cc00 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_EE +0000000000040638 g DF .text 00000000000000a4 _ZN2nn4util43GetLengthOfConvertedStringUtf16NativeToUtf8EPiPKti +00000000000f777c g DF .text 00000000000000e4 silk_encode_signs +00000000003a7c64 g DF .text 0000000000000000 _longjmp +000000000003dfb4 g DF .text 000000000000001c _ZN2nn4util16VerifyUtf8StringEPKcm +00000000000a188c g DF .text 0000000000000004 _ZN2nn6socket4BindEiPK8sockaddrj +0000000000257dd0 g DF .text 000000000000009c nvcecGetPAddr +00000000000041b0 g DF .text 0000000000000128 _ZN2nn6crypto6detail13p256_validateEPKNS1_10p256_pointEPKNS1_10p256_curveE +000000000018681c g DF .text 00000000000000c8 _ZN2nn5audio19GetDelayInputOutputEPKNS0_9DelayTypeEPaS4_Pii +00000000001661b8 g DF .text 000000000000003c _ZN2nn5prepo6detail19PlayReportGenerator10InitializeEPmPhm +000000000016adcc g DF .text 0000000000000044 _ZN2nn8settings6system27BindTelemetryDirtyFlagEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000002497c0 g DF .text 0000000000000c3c _ZN22nerd_gillette_internal5otete7jaimev223EncodeFullSilhouetteROKERNS0_17MaxSizedBitStreamILm300EEENS_20ContiguousMemoryViewIKNS_15NumericalVectorIsLm2EEELb0EEERKNS1_23FullSilhouetteCodecDataE +00000000003e5d18 g DF .text 000000000000019c __nnmusl_FileAccess +00000000002a0964 g DF .text 00000000000001ec _ZNK7android6Parcel16readNativeHandleEv +000000000036b494 g DF .text 000000000000007c _ZNSt3__112strstreambufC2EPKcl +000000000018ba88 g DF .text 0000000000000008 _ZNK2nn5audio23SplitterDestinationData7IsInUseEv +0000000000122964 g DF .text 000000000000000c _ZN2nn7friends11PlayHistoryC2Ev +00000000000b633c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E19_nn_sf_sync_HasDoneENS0_3OutIbvEE +00000000008240a0 w DO .rodata 0000000000000008 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4nposE +00000000003624d0 g DF .text 000000000000008c _ZNSt11logic_errorC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE +000000000016f1d0 g DF .text 0000000000000094 _ZN2nn8settings6detail12ReadSettingsEPmPhmi +0000000000348bd4 w DF .text 0000000000000410 _ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRe +000000000094c310 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000138088 w DF .text 000000000000014c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSG_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENSQ_ILm4ELm4EvEEj +000000000014de68 g DF .text 0000000000000064 _ZN2nn3ngc6detail9SparseSet5ResetEv +00000000001e93f4 g DF .text 0000000000000318 map_char +00000000000913f4 g DF .text 0000000000000004 nnosDetachReadableHandleOfSystemEvent +00000000001d6d84 g DF .text 0000000000000070 _ZN2nn2vi6native8ParcelIo10OpenParcelEPN7android6ParcelEPKvm +000000000006ac64 g DF .text 000000000000019c _ZN2nn2fs23SaveDataTransferManager20OpenSaveDataImporterEPNSt3__110unique_ptrINS0_16SaveDataImporterENS2_14default_deleteIS4_EEEEPlPKvmRKNS0_6UserIdENS0_15SaveDataSpaceIdE +000000000017f108 g DF .text 0000000000000004 _ZN2nn4time27EphemeralNetworkSystemClock11from_time_tEl +0000000000000c58 w DF .text 0000000000000134 _ZN2nn6crypto6detail10CbcMacImplINS0_12AesEncryptorILm16EEEE12ProcessBlockEPKv +00000000003e4f04 g DF .text 0000000000000014 __nnmusl_setup_filesystem_default +000000000097a540 w DO .data 0000000000000038 _ZTVNSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000000a02f4 g DF .text 000000000000001c _ZN2nn2sf4hipc13AcceptSessionEPNS_3svc6HandleES3_ +00000000002867bc g DF .text 000000000000000c NvRmGpuDeviceTriggerSuspend +000000000011d9c4 g DF .text 00000000000000d8 _ZN2nn7friends29GetPlayHistoryRegistrationKeyEPNS0_26PlayHistoryRegistrationKeyERKNS_7account3UidEb +00000000000c6b74 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service15ISelfControllerEEEvi +0000000000184b54 g DF .text 000000000000001c _ZN2nn5audio15AudioBufferListINS0_13AudioInBufferEE9pop_frontEv +000000000035aab4 g DF .text 0000000000000078 _ZNSt3__115numpunct_bynameIcEC2EPKcm +00000000001183d0 g DF .text 0000000000000020 _ZN2nn5codec11OpusEncoder10InitializeEiiPvm +0000000000172f78 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_E17GetCmifBaseObjectEv +000000000022e0dc g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm8EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000000f710c g DF .text 00000000000001f4 silk_VQ_WMat_EC_c +0000000000189bdc g DF .text 000000000000000c _ZN2nn5audio15PerformanceInfo13GetFrameIndexEv +00000000001089b4 g DF .text 00000000000002dc silk_schur +00000000003a926c g DF .text 0000000000000004 pthread_setaffinity_np +00000000001263c0 w DF .text 0000000000000220 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSK_ILm4ELm4ELl0EEENSK_ILm16ELm8ELl24EEENSK_ILm8ELm8ELl40EEEEEELm48ELm4ELb1EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENSZ_ILm4ELm4EvEES10_NSZ_ILm8ELm8EvEEj +000000000095bc40 w DO .data 0000000000000018 _ZTIN2nn3hid6detail21NpadSixAxisSensorLifoE +00000000003df92c g DF .text 00000000000000dc vswprintf +000000000025668c g DF .text 0000000000000088 _ZN2nn3web14ShowWebPageArg16SetLeftStickModeENS0_16WebLeftStickModeE +0000000000234d88 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E27_nn_sf_sync_GetUniquePadIdsENS0_3OutIlvEERKNS0_8OutArrayINS5_6system11UniquePadIdEEE +0000000000359864 g DF .text 0000000000000014 _ZNKSt3__115__codecvt_utf16IDsLb1EE13do_max_lengthEv +0000000000348b70 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb1EE14do_curr_symbolEv +0000000000082320 g DF .text 00000000000000b0 nnmem_nlib_vsnprintf +00000000000bf124 g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService9GetRegionEPm +00000000001b627c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetNoseTypeEv +000000000017ff0c g DF .text 0000000000000080 _ZN2nn4time11ToPosixTimeEPiPNS0_9PosixTimeEiRKNS0_12CalendarTimeERKNS0_12TimeZoneRuleE +0000000000052cec g DF .text 0000000000000048 _ZN2nn2fs6detail26EventNotifierObjectAdapterD0Ev +000000000036cc04 g DF .text 00000000000000d4 _ZNSt3__112system_errorC2EiRKNS_14error_categoryE +0000000000949510 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000002970a0 g DF .text 00000000000000b4 _ZN7android8BpMemoryC2ERKNS_2spINS_7IBinderEEE +0000000000396764 g DF .text 0000000000000054 _ZNSt13runtime_errorD2Ev +0000000000948af0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000c7b0c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IAudioControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +0000000000162bfc w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +0000000000359eb8 g DF .text 0000000000000068 _ZNKSt3__120__codecvt_utf8_utf16IwE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_ +0000000000228ca8 g DF .text 0000000000000044 _ZN2nn3hid5debug27UnsetDebugPadAutoPilotStateEv +0000000000118938 g DF .text 0000000000000008 _ZN2nn5codec22OpusMultiStreamDecoder6DecodeEPmPiPPsimPKvm +0000000000159770 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc25ReadSaveDataFromFsForTestEPNS0_8SaveDataE +000000000095cbe0 w DO .data 0000000000000018 _ZTIN2nn3hid15IHidDebugServerE +00000000002326a8 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E43_nn_sf_sync_CreateActiveVibrationDeviceListENS0_3OutINS0_13SharedPointerINS5_26IActiveVibrationDeviceListEEEvEE +000000000004c9c4 w DF .text 0000000000000004 _ZN2nn2fs3fsa10IDirectoryD2Ev +000000000008fcd8 g DF .text 0000000000000024 _ZN2nn2os21SdkRecursiveMutexType10InitializeEv +00000000002a0598 g DF .text 000000000000002c _ZNK7android6Parcel10readDoubleEv +0000000000130910 w DF .text 0000000000000180 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl68EEENSG_ILm4ELm4ELl72EEENSG_ILm66ELm2ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm76ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESU_NST_ILm66ELm2EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000332ebc w DF .text 00000000000000e4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5seekpExNS_8ios_base7seekdirE +0000000000361cfc g DF .text 0000000000000060 _ZNSt3__111regex_errorC2ENS_15regex_constants10error_typeE +000000000036c428 g DF .text 0000000000000054 _ZNSt3__116generic_categoryEv +000000000006f3bc g DF .text 0000000000000004 _ZN2nn4lmem24GetExpHeapGroupIdOfBlockEPKv +0000000000173130 w DF .text 0000000000000168 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSK_24BufferClientArgumentTypeEj +00000000001569e8 g DF .text 000000000000006c _ZN2nn4nifm4ScanEv +00000000007d7550 w DO .rodata 000000000000010f _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000011d7ec g DF .text 00000000000000c0 _ZN2nn7friends28DeclareOpenOnlinePlaySessionERKNS_7account3UidE +0000000000324958 g DF .text 00000000000000b4 _ZNSt3__111__libcpp_dbD2Ev +0000000000355628 g DF .text 0000000000000024 _ZNKSt3__15ctypeIwE8do_widenEPKcS3_Pw +0000000000081c64 g DF .text 000000000000003c nnmem_nlib_thread_getpriority +00000000000e87d0 g DF .text 0000000000000058 ec_tell_frac +000000000095ba48 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_17NpadHandheldStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000005945c w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm1ELm1ELl0EEENSG_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm1ELm1EvEENSQ_ILm8ELm8EvEEj +000000000022e434 g DF .text 0000000000000018 _ZN2nn3hid6system21GetUniquePadInterfaceEPNS1_18UniquePadInterfaceENS1_11UniquePadIdE +00000000002378a8 g DF .text 0000000000000198 _ZN2nn8irsensor6detail30GetImageTransferProcessorStateEPNS0_27ImageTransferProcessorStateEPvmRKNS0_14IrCameraHandleE +00000000000ac358 g DF .text 00000000000000a8 _ZN2nn6socket6detail10socketNtopEiPKvPcj +0000000000081cfc g DF .text 0000000000000018 nnmem_nlib_write_stderr +0000000000801a50 w DO .rodata 00000000000000bc _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000008a34c g DF .text 00000000000000b8 _ZNK2nn3mem17StandardAllocator4HashEv +000000000013e98c g DF .text 000000000000014c _ZN2nn3nfp21AttachDeactivateEventEPNS_2os15SystemEventTypeERKNS0_12DeviceHandleE +0000000000158684 g DF .text 0000000000000018 _ZN2nn3nsd7ResolveEPNS0_4FqdnERKS1_ +00000000001a8174 g DF .text 0000000000000070 _ZN2nn5audio3dsp17ApplyBiquadFilterEPiPKiPKsS6_PNS0_17BiquadFilterStateEi +000000000015e1a0 g DF .text 0000000000000058 _ZN2nn4pctl15IsPairingActiveEv +000000000097bc80 w DO .data 0000000000000038 _ZTINSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +0000000000081e28 g DF .text 0000000000000054 nnmem_nlib_fd_write +000000000009ffa4 g DF .text 000000000000004c _ZN2nn2sf4impl6detail21ServiceObjectImplBase7ReleaseEv +000000000018c450 g DF .text 000000000000002c _ZN2nn5audio25GetVoicePlayedSampleCountEPKNS0_9VoiceTypeE +00000000003160bc g DF .text 0000000000000004 nngpioSetValue +000000000016c340 g DF .text 0000000000000070 _ZN2nn8settings6detail28SetNetworkSystemClockContextERKNS_4time18SystemClockContextE +0000000000014fa0 g DF .text 0000000000000038 _ZN2nn5image6detail4jpeg12jpeg_destroyEPNS2_18jpeg_common_structE +0000000000064308 g DF .text 00000000000000c4 _ZN2nn2fs19SetCurrentPosixTimeENS_4time9PosixTimeEi +000000000017037c g DF .text 0000000000000070 _ZN2nn8settings6detail13GetTvSettingsEPNS0_6system10TvSettingsE +000000000011732c g DF .text 0000000000000274 _ZN2nn5codec11DecodeAdpcmEPsPNS0_12AdpcmContextEPKNS0_14AdpcmParameterEPKvmi +000000000023486c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E23_nn_sf_sync_ActivateNfcEjbNS_6applet20AppletResourceUserIdE +000000000022a018 g DF .text 000000000000000c _ZN2nn3hid15KeyCodeComposerC1Ev +0000000000959138 g DO .data 0000000000000020 _ZTVN2nn5audio6server12SinkInfoBaseE +000000000004b1d8 g DF .text 00000000000000a0 _ZN2nn2fs17FileHandleStorageC1ENS0_10FileHandleE +00000000000970d4 g DF .text 0000000000000034 _ZN2nn2os6detail9BreakImplE15nnosBreakReasonmm +0000000000230440 g DF .text 0000000000000004 _ZN2nn3hid15VibrationWriterD2Ev +00000000007b9360 w DO .rodata 00000000000000ba _ZTSN2nn2sf4impl6detail16ImplTemplateBaseINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_EE +00000000001ca874 g DF .text 0000000000000014 _ZN2nn5swkbd6detail18InlineKeyboardImpl12SetCursorPosEi +00000000001da4ac g DF .text 00000000000000c0 _ZN2nn6fontll18ScalableFontEngine25BinarySearchForOtfKerningEPiS2_PKNS0_15OtfKerningTableEjj +000000000018d8d4 g DF .text 0000000000000008 _ZNK2nn5audio6common16UpdateDataHeader11GetRevisionEv +0000000000823250 g DO .rodata 0000000000000021 _ZTSNSt3__115__codecvt_utf16IwLb0EEE +0000000000145270 g DF .text 0000000000000018 _ZN2nn3ngc6detail11AhoCorasick12SetAllocatorEPNS1_16WorkBufAllocatorE +0000000000226ec4 g DF .text 0000000000000058 _ZN2nn3hid6detail19ConnectUsbPadsAsyncEv +000000000013c844 g DF .text 00000000000001d8 _ZN2nn3nfp6client21CreateSystemInterfaceEv +000000000017030c g DF .text 0000000000000070 _ZN2nn8settings6detail29SetDeviceTimeZoneLocationNameERKNS_4time12LocationNameE +000000000018549c g DF .text 0000000000000010 _ZN2nn5audio30SetMemoryPoolErrorCheckEnabledEPNS0_19AudioRendererConfigEb +000000000023636c w DF .text 0000000000000004 _ZN2nn8irsensor6detail15ActivationCountD2Ev +000000000080cef0 w DO .rodata 00000000000000f2 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEEvEE +000000000008e760 g DF .text 0000000000000064 _ZN2nn2os22InitializeMessageQueueEPNS0_16MessageQueueTypeEPmm +00000000001a4ce8 g DF .text 0000000000000038 _ZN2nn5audio6server12SinkInfoBaseC2Ev +0000000000053d78 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_5fssrv2sf16IProgramRegistryEED2Ev +00000000001c625c w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +00000000001b9338 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetMustacheYEv +00000000001d8544 g DF .text 0000000000000160 _ZN2nn6fontll6detail15PickKernXValuesEPiPNS0_15OtfKerningTableEPKvttt +00000000007dffd0 w DO .rodata 0000000000000158 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +00000000001607b8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E34_nn_sf_sync_GetSafetyLevelSettingsENS0_3OutINS5_19RestrictionSettingsEvEEi +000000000015eae4 g DF .text 0000000000000058 _ZN2nn4pctl28SetPlayTimerSettingsForDebugERKNS0_17PlayTimerSettingsE +000000000017ce20 g DF .text 0000000000000004 _ZN2nn3ssl6detail15BuiltinDataInfoD1Ev +000000000022fbe0 g DF .text 0000000000000004 _ZN2nn3hid15VibrationPlayerD2Ev +0000000000317c94 g DF .text 000000000000007c _ZN2nn3pcv8SetResetENS0_6ModuleEb +000000000006c334 g DF .text 000000000000009c _ZN2nn2fs22SetSdCardAccessibilityEb +000000000026fecc g DF .text 000000000000013c NvRmMemMap +0000000000318f48 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_GetFuseInfoERKNS0_8OutArrayIjEENS0_3OutIivEEi +00000000003a1940 g DF .text 000000000000005c __fixunsdfsi +000000000095b9a8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_14BasicXpadStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000003c4ce8 w DF .text 00000000000000b4 nl_langinfo +00000000001a35cc g DF .text 0000000000000024 _ZNK2nn5audio6server10PoolMapper5UnmapEjNS0_7CpuAddrEm +000000000022d078 g DF .text 0000000000000064 _ZN2nn3hid22GetSixAxisSensorStatesEPNS0_18SixAxisSensorStateEiRKNS0_19SixAxisSensorHandleE +0000000000313448 g DF .text 0000000000000118 _ZN2nn3fgm7Request8FinalizeEv +00000000000904fc g DF .text 0000000000000018 _ZN2nn2os10WaitThreadEPNS0_10ThreadTypeE +00000000000a8448 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESN_NSL_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000002ce8f4 g DF .text 0000000000000060 _ZNK7android8String169findFirstEDs +00000000007c3340 w DO .rodata 0000000000000031 _ZTSN2nn7account3nas29IOAuthProcedureForExternalNsaE +00000000000b61ac w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEE17GetCmifBaseObjectEv +000000000039d120 g DF .text 00000000000000d4 __netf2 +00000000001707a4 g DF .text 000000000000007c _ZN2nn8settings6detail18SetAllowedSslHostsEPKNS0_6system14AllowedSslHostEm +0000000000184b94 g DF .text 0000000000000030 _ZN2nn5audio15AudioBufferListINS0_14AudioOutBufferEE9push_backEPS2_ +0000000000157d38 g DF .text 00000000000003c4 _ZN2nn4nifm6detail16SsidListAccessor12GetNextEntryEPNS_4util4UuidEPNS0_4SsidEPNS0_9SharedKeyEPNS0_14AuthenticationEPNS0_10EncryptionEPcPb +00000000003295cc w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5sgetnEPwl +000000000009acc0 w DF .text 0000000000000050 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain7ReleaseEv +00000000001647e4 g DF .text 0000000000000048 _ZN2nn5prepo6detail7msgpack21WriteUnsignedInteger8EPNS2_17OutputStreamParamEh +00000000003647c4 w DF .text 000000000000018c _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceIPKcEENS_9enable_ifIXsr19__is_input_iteratorIT_EE5valueERS5_E4typeENS_11__wrap_iterIS8_EESF_SA_SA_ +0000000000146dac g DF .text 0000000000000008 _ZN2nn3ngc6detail12BinaryWriter6Write_Ed +00000000002390cc g DF .text 0000000000000070 _ZN2nn8irsensor6detail19StatusManagerHolder10InitializeEv +000000000039937c g DF .text 00000000000003e4 __cxa_call_unexpected +0000000000146da4 g DF .text 0000000000000008 _ZN2nn3ngc6detail12BinaryWriter6Write_Ef +000000000094f880 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000953298 g DO .data 0000000000000040 _ZTVN2nn3ngc6detail16NullOutputStreamE +00000000001a28cc g DF .text 0000000000000014 _ZNK2nn5audio6server14EffectInfoBase26ShouldUpdateWorkBufferInfoEPKNS0_10EffectInfo11InParameterE +0000000000146908 g DF .text 00000000000000dc _ZN2nn3ngc6detail12BinaryWriter6Write_Eh +000000000039d1f4 g DF .text 00000000000000d4 __gttf2 +0000000000146aec g DF .text 000000000000012c _ZN2nn3ngc6detail12BinaryWriter6Write_Ej +00000000003c3188 g DF .text 0000000000000050 __wctrans_l +000000000004e864 g DF .text 000000000000019c _ZN2nn2fs21ConvertToFsCommonPathEPcmPKc +00000000007f619e g DO .rodata 0000000000000006 _ZN2nn3mii6detail17Ver3EyeColorTableE +000000000016c570 g DF .text 0000000000000070 _ZN2nn8settings6detail20GetBacklightSettingsEPNS0_6system19BacklightSettingsExE +0000000000146c18 g DF .text 000000000000018c _ZN2nn3ngc6detail12BinaryWriter6Write_Em +00000000000b6014 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEE35_nn_sf_sync_EnsureIdTokenCacheAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000947ca0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +0000000000165790 g DF .text 000000000000000c _ZNK2nn5prepo10PlayReport8GetCountEv +000000000004f8a0 g DF .text 0000000000000148 _ZN2nn2fs26DeleteDirectoryRecursivelyEPKc +00000000003ce450 g DF .text 0000000000000020 scalblnf +00000000003a199c g DF .text 0000000000000098 __fixunsdfti +00000000000ca5bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E19_nn_sf_sync_GetSizeENS0_3OutIlvEE +00000000001469e4 g DF .text 0000000000000108 _ZN2nn3ngc6detail12BinaryWriter6Write_Et +0000000000363674 w DF .text 0000000000000118 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEmmmmmm +00000000001c0908 g DF .text 0000000000000044 _ZNK2nn3mii6detail16Ver3StoreDataRaw7GetNameEPNS0_8NicknameE +00000000009456b8 g DO .data 0000000000000010 _ZN2nn2os6detail26g_CommandLineParameterArgvE +000000000012221c g DF .text 0000000000000008 _ZNK2nn7friends15FriendCandidate7GetTypeEv +000000000026feb0 g DF .text 0000000000000008 NvRmMemGetIVCId +000000000018703c g DF .text 000000000000002c _ZN2nn5audio12IsAuxEnabledEPKNS0_7AuxTypeE +00000000003ce470 g DF .text 0000000000000020 scalblnl +0000000000174d8c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetUsbFullKeyEnableFlagENS0_3OutIbvEE +000000000035a774 g DF .text 0000000000000008 _ZNKSt3__120__codecvt_utf8_utf16IDiE11do_encodingEv +00000000002564f8 g DF .text 0000000000000104 _ZN2nn3web14ShowWebPageArg18SetCallbackableUrlEPKc +00000000009b82c8 w DO .bss 0000000000000008 _ZGVZN2nn2lm6detail17ShimLibraryGlobal11GetInstanceEvE10s_Instance +0000000000093a64 g DF .text 00000000000000fc _ZN2nn2os6detail21AddressSpaceAllocator13AllocateSpaceEmm +0000000000956310 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000230470 g DF .text 0000000000000044 _ZN2nn3hid6system27BeginPermitVibrationSessionEv +00000000001399ec g DF .text 0000000000000040 _ZN2nn3nfc14IsErrorVisibleEv +000000000027dbd4 g DF .text 0000000000000024 NvColorSpaceToString +00000000000d4c50 g DF .text 0000000000000058 _ZN2nn6applet21SetMediaPlaybackStateEb +0000000000948920 w DO .data 0000000000000018 _ZTIN2nn7account3nas29IOAuthProcedureForExternalNsaE +0000000000091478 g DF .text 0000000000000004 nnosTryJamMessageQueue +00000000007cf150 w DO .rodata 000000000000010b _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000002a04d0 g DF .text 000000000000002c _ZNK7android6Parcel11readPointerEv +0000000000361d5c g DF .text 0000000000000004 _ZNSt3__111regex_errorD1Ev +000000000022f2bc g DF .text 0000000000000024 _ZN2nn3hid13VibrationNodeD0Ev +00000000000c78d4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_ReleaseForegroundRightsEv +00000000001a7b2c g DF .text 0000000000000008 _ZN2nn5audio6server6detail19ListAudioDeviceNameEPNS0_15AudioDeviceNameEij +00000000001bce4c g DF .text 0000000000000040 _ZN2nn3mii6detail11UtilityImplC2Ev +00000000003c26a4 g DF .text 0000000000000030 __ispunct_l +0000000000187be4 g DF .text 0000000000000040 _ZN2nn5audio17SetReverbLateModeEPNS0_10ReverbTypeENS1_8LateModeE +000000000095e300 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail22IMonitorServiceCreatorE +0000000000973d88 g DO .data 00000000000001d0 _ZTVN7android23BnSurfaceComposerClientE +00000000007e9218 g DO .rodata 0000000000000008 _ZN2nn5audio25FinalOutputRecorderBuffer16AddressAlignmentE +000000000018b914 g DF .text 0000000000000018 _ZN2nn5audio12SplitterInfoC1Ei +000000000036b6b4 g DF .text 000000000000007c _ZNSt3__112strstreambufC2EPKhl +0000000000803a80 w DO .rodata 000000000000004b _ZTSN2nn3hid6detail8RingLifoINS0_10MouseStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000080cc90 w DO .rodata 0000000000000142 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail18HidTemporaryServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000009a9178 g DO .bss 0000000000000008 _ZN2nn2ro6detail34g_pLookupGlobalAutoFunctionPointerE +0000000000313f3c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000022b7cc g DF .text 0000000000000008 _ZN2nn3hid6system14IsNpadChargingERKj +0000000000235140 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E33_nn_sf_sync_GetAudioControlStatesENS0_3OutIlvEERKNS0_8OutArrayINS5_6system17AudioControlStateEEE +000000000095a088 w DO .data 00000000000001a0 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +0000000000174690 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_SetDataDeletionSettingsENS5_6system20DataDeletionSettingsE +000000000024fb40 g DF .text 00000000000000e8 _ZN2nn3ldn4ScanEPNS0_11NetworkInfoEPiiRKNS0_10ScanFilterEi +000000000021c640 g DF .text 000000000000007c _ZN2nn3hid6detail25EnableSixAxisSensorFusionERKNS0_19SixAxisSensorHandleEb +000000000016e310 g DF .text 0000000000000070 _ZN2nn8settings6detail23SetNotificationSettingsERKNS0_6system20NotificationSettingsE +00000000002b89c4 g DF .text 0000000000000008 _ZN7android16ISurfaceComposerD2Ev +0000000000174abc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E48_nn_sf_sync_AcquireTelemetryDirtyFlagEventHandleENS0_3OutINS0_12NativeHandleEvEE +00000000001aa444 g DF .text 0000000000000004 _ZN2nn5audio3dsp18InvalidateDspCacheEmm +000000000012223c g DF .text 000000000000000c _ZN2nn7friends18FriendDetailedInfoC1Ev +00000000000a1a70 g DF .text 0000000000000004 _ZN2nn6socket11GAIStrErrorEi +00000000008058f0 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout6DanishE +00000000003a5c48 g DF .text 0000000000000020 __atomic_store_1 +00000000003a5c68 g DF .text 0000000000000020 __atomic_store_2 +00000000003a5c88 g DF .text 0000000000000020 __atomic_store_4 +00000000000c5fa4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_ReleaseSleepLockTransientlyEv +0000000000174a58 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_GetProductModelENS0_3OutIivEE +0000000000804f90 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi61EE4MaskE +00000000000b9a80 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE25_nn_sf_sync_ListOpenUsersERKNS0_8OutArrayINS5_3UidEEE +000000000018bc6c g DF .text 0000000000000054 _ZN2nn5audio18SetSubMixMixVolumeEPNS0_10SubMixTypeEPNS0_12FinalMixTypeEfii +00000000003a5ca8 g DF .text 0000000000000020 __atomic_store_8 +00000000001b9688 g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw7SetTypeEi +0000000000117f14 g DF .text 0000000000000004 _ZN2nn5codec11OpusDecoderD0Ev +0000000000173808 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +00000000001668d8 g DF .text 00000000000001e4 _ZN2nn5prepo6detail3ipc10InitializeEv +0000000000167160 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E24_nn_sf_sync_ClearStorageEv +00000000001dd858 g DF .text 0000000000000038 FS_streq +00000000002cda18 g DF .text 0000000000000044 _ZN7android7RefBase12weakref_type14attemptIncWeakEPKv +0000000000111720 g DF .text 0000000000000024 opus_repacketizer_out +00000000001a2310 g DF .text 0000000000000090 _ZN2nn5audio6server18PerformanceManager8TapFrameEv +00000000009589d0 g DO .data 0000000000000018 _ZTIN2nn5audio6server24AudioRendererManagerImplE +00000000002c60dc g DF .text 00000000000000c8 _ZN7android21SurfaceComposerClient11setPositionERKNS_2spINS_7IBinderEEEff +0000000000362860 w DF .text 0000000000000060 _ZNKSt3__121__basic_string_commonILb1EE20__throw_out_of_rangeEv +000000000032f17c w DF .text 00000000000000a0 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD1Ev +00000000003dc6b8 g DF .text 0000000000000020 __fwriting +00000000001b9f24 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw13SetBeardColorEi +00000000002867c8 g DF .text 000000000000000c NvRmGpuDeviceWaitForPause +000000000025b47c g DF .text 0000000000000054 hdcp_event_state_transit +000000000001a7f0 g DF .text 00000000000000ac _ZN2nn5image6detail4jpeg17jinit_inverse_dctEPNS2_22jpeg_decompress_structE +000000000005f7f8 g DF .text 0000000000000030 _ZN2nn2fs6detail24FileServiceObjectAdapterC2EONS_2sf13SharedPointerINS_5fssrv2sf5IFileEEE +00000000002cf158 g DF .text 000000000000002c _ZN7android7String8D1Ev +0000000000805850 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi227EE4MaskE +00000000007b8478 g DO .rodata 00000000000000e4 _ZN2nn7nlibsdk4heap13TlsHeapStatic9classinfoE +00000000000b89c4 w DF .text 00000000000001e8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm1ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000129c94 w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEENSI_ILi1ELi6ELm0EEEEEELm0ELm4ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeESU_j +00000000001746b0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E43_nn_sf_sync_GetInitialSystemAppletProgramIdENS0_3OutINS_3ncm9ProgramIdEvEE +0000000000232258 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_GetAccelerometerPlayModeENS0_3OutIjvEENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +000000000080db80 w DO .rodata 0000000000000102 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_EE +00000000002cb9e0 g DF .text 0000000000000068 _ZNK7android6Region8containsEii +0000000000001c48 g DF .text 0000000000000064 _ZN2nn6crypto15GenerateMd5HashEPvmPKvm +000000000009cdd8 g DF .text 0000000000000058 _ZN2nn2sf4hipc6server28HipcServerSessionManagerBase12RegisterBaseEPNS2_21HipcServerSessionBaseENS_3svc6HandleE +0000000000347014 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb0EE11do_groupingEv +00000000000703c4 g DF .text 0000000000000018 _ZN2nn4lmem6detail19SetExpHeapAllocModeEPNS1_8HeapHeadEt +0000000000263270 g DF .text 000000000000005c NvOsEventPoolDestroy +000000000005ede0 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm128ELm8ELl0EEEEEELm0ELm128ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm128ELm8EEEj +000000000095ddf0 w DO .data 0000000000000018 _ZTIN2nn6capsrv2sf29IScreenShotApplicationServiceE +00000000001b7720 g DF .text 0000000000000010 _ZN2nn3mii6detail19GetEyeColorFromVer3ENS1_12Ver3EyeColorE +0000000000805920 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout8JapaneseE +000000000029527c g DF .text 0000000000000060 _ZN7android7BBinder12detachObjectEPKv +000000000036c200 g DF .text 0000000000000004 _ZNSt3__114error_categoryD0Ev +000000000097e270 g DO .data 0000000000000038 _ZTVN10__cxxabiv117__array_type_infoE +00000000003651d0 w DF .text 0000000000000030 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC1ERKS5_ +000000000095bae8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_16NpadJoyLeftStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000039d6a8 g DF .text 0000000000000098 __fixunstfdi +0000000000804400 w DO .rodata 0000000000000036 _ZTSN2nn3hid6detail35AnalogStickCalibrationStateImplLifoE +000000000080b550 w DO .rodata 0000000000000048 _ZTSN2nn4util21IntrusiveListBaseNodeINS_3hid23VibrationNodeConnectionES3_EE +00000000003b1dd8 g DF .text 0000000000000118 ynf +00000000007d0402 g DO .rodata 0000000000000020 tf_select_table +00000000001b629c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor13GetMouthColorEv +00000000008210f0 w DO .rodata 000000000000001d _ZTSN2nn3pcv17IImmediateManagerE +00000000000a44e0 g DF .text 0000000000000520 _ZN2nn6socket6detail5IoctlEijPvm +000000000096ea00 g DO .data 00000000000000a8 _ZTCN7android20BnGraphicBufferAllocE0_NS_19IGraphicBufferAllocE +000000000002ec4c g DF .text 0000000000000004 _ZN2nn5image11JpegDecoder11GetExifDataEPPKvPmS3_m +0000000000347918 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb1EE14do_curr_symbolEv +00000000007c4f00 w DO .rodata 0000000000000118 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEEE +000000000021daf0 g DF .text 0000000000000098 _ZN2nn3hid6detail37GetShiftAccelerometerCalibrationValueEPfS2_RKNS0_19SixAxisSensorHandleE +00000000007cdae0 w DO .rodata 00000000000000f1 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +000000000097bd00 w DO .data 0000000000000018 _ZTINSt3__115time_put_bynameIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000008044a0 w DO .rodata 0000000000000038 _ZTSN2nn3hid6detail37SixAxisSensorUserCalibrationStateLifoE +0000000000355710 g DF .text 000000000000004c _ZNSt3__15ctypeIcED0Ev +0000000000396af0 g DF .text 0000000000000014 _ZNSt10bad_typeidC1Ev +0000000000825320 g DO .rodata 0000000000000024 _ZTSN10__cxxabiv119__pointer_type_infoE +0000000000a80c80 w DO .bss 0000000000000010 _ZNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE2idE +00000000000c2664 g DF .text 000000000000004c _ZN2nn2am20GetHomeMenuFunctionsEv +000000000094d180 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001718a4 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm24ELm1ELl0EEEEEELm0ELm24ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm24ELm1EEEj +0000000000234e2c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E47_nn_sf_sync_ResetSixAxisSensorCalibrationValuesENS5_6system25UniqueSixAxisSensorHandleE +00000000003ba3dc g DF .text 0000000000000250 ccoshf +0000000000184a44 g DF .text 0000000000000030 _ZN2nn5audio36ConvertAdpcmSampleCountToNibbleCountEi +00000000001d5d58 w DF .text 00000000000001a4 _ZN2nn2vi6detail18IndirectLayerTableD2Ev +000000000021efc0 g DF .text 0000000000000014 _ZN2nn3hid6detail7SessionD2Ev +0000000000005d6c w DF .text 000000000000009c _ZNK2nn6crypto6detail7AesImplILm32EE12DecryptBlockEPvmPKvm +0000000000946140 w DO .data 0000000000000018 _ZTIN2nn2sf4hipc6server17HipcServerMessageE +0000000000125d70 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_GetBlockedUserListENS0_3OutIivEERKNS0_8OutArrayINS6_15BlockedUserImplEEERKNS_7account3UidEi +000000000017432c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E43_nn_sf_sync_GetConsoleInformationUploadFlagENS0_3OutIbvEE +000000000009d3ac g DF .text 0000000000000150 _ZN2nn2sf4hipc6server24HipcServerSessionManager14ProcessMessageEPNS2_21HipcServerSessionBaseEPKNS1_6detail25HipcMessageBufferAccessorEPKNS6_21HipcMessageHeaderInfoEPvm +0000000000136560 g DF .text 0000000000000070 _ZN2nn2lm6detail24LogPacketTransmitterBaseD2Ev +00000000008240b0 g DO .rodata 0000000000000017 _ZTSNSt3__112strstreambufE +000000000097a890 g DO .data 0000000000000040 _ZTVNSt3__114collate_bynameIcEE +00000000003ba62c g DF .text 000000000000005c ccoshl +00000000000b1e94 g DF .text 0000000000000074 _ZN2nn7account40ShowLicenseRequirementsForNetworkServiceERKNS0_10UserHandleE +000000000029ef08 g DF .text 0000000000000090 _ZN7android6Parcel10writeInt64El +00000000003548a4 g DF .text 0000000000000284 _ZNKSt3__114collate_bynameIcE10do_compareEPKcS3_S3_S3_ +00000000007e0c20 w DO .rodata 0000000000000156 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +0000000000069394 g DF .text 0000000000000124 _ZN2nn2fs22GetSaveDataJournalSizeEPlm +0000000000093ef4 g DF .text 000000000000008c _ZN2nn2os6detail11VammManager21AllocateAddressRegionEPmm +00000000003dc578 g DF .text 0000000000000078 asprintf +0000000000034858 g DF .text 00000000000000d0 nnutilZlib_inflateBackInit_ +000000000008d8e0 g DF .text 000000000000004c _ZN2nn2os17TryWaitLightEventEPNS0_14LightEventTypeE +000000000022bb34 g DF .text 0000000000000044 _ZN2nn3hid6system33DisableAssigningSingleOnSlSrPressEv +000000000018dd4c g DF .text 000000000000000c _ZN2nn5audio17Axfx2DelayNextOutEPNS0_14Axfx2DelayLineE +0000000000328d10 w DF .text 0000000000000004 _ZNSt3__19basic_iosIwNS_11char_traitsIwEEED2Ev +000000000017ce08 g DF .text 000000000000000c _ZN2nn3ssl6detail16SslMemoryManager14GetSfAllocatorEv +00000000002386bc g DF .text 0000000000000260 _ZN2nn8irsensor6detail13StatusManagerC1Ev +0000000000259e1c g DF .text 00000000000000b0 nvdcSetLut +00000000000aae40 w DF .text 0000000000000208 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSJ_ILm4ELm4ELl4EEENSJ_ILm4ELm4ELl8EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEENSG_ILm4ELm4ELl8EEEEEELm12ELm12ELb0EEESQ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESY_NS2_23InRawClientArgumentTypeILm4ELm4EvEES10_S10_NS2_24BufferClientArgumentTypeESY_j +0000000000951148 w DO .data 0000000000000270 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc14IFriendServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000015dea4 g DF .text 0000000000000058 _ZN2nn4pctl32NotifyApplicationDownloadStartedENS_3ncm13ApplicationIdE +00000000000c65f8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service13ILockAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001512dc g DF .text 0000000000000008 _ZN2nn4nifm6detail17ScanRequestClient14GetSystemEventEv +000000000007316c g DF .text 0000000000000268 nnmem_nlib_memchr_range_not_generic +00000000000a03a4 g DF .text 00000000000000ac _ZN2nn2sf4hipc7ReceiveEPbNS_3svc6HandleEPvm +000000000033ded0 w DF .text 00000000000005e4 _ZNSt3__19__num_putIcE23__widen_and_group_floatEPcS2_S2_S2_RS2_S3_RKNS_6localeE +0000000000364950 w DF .text 0000000000000078 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4copyEPcmm +0000000000175118 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E54_nn_sf_sync_GetConsoleSixAxisSensorAngularVelocityBiasENS0_3OutINS5_6system39ConsoleSixAxisSensorAngularVelocityBiasEvEE +0000000000183f0c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +000000000018a7cc g DF .text 0000000000000020 _ZN2nn5audio11SinkManagerC2EiPNS0_8SinkInfoEii +0000000000239aac g DF .text 0000000000000008 _ZN2nn8irsensor6detail15IrSensorSession26IsLibraryAppletCallEnabledERKNS0_22IrCameraInternalStatusERKNS0_14IrCameraHandleE +00000000001b76e0 g DF .text 0000000000000018 _ZN2nn3mii6detail18GetHairColorToVer3ENS0_11CommonColorE +000000000080bc80 w DO .rodata 00000000000000df _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEEvEE +000000000006f42c g DF .text 0000000000000064 _ZN2nn4lmem17CheckExpHeapBlockEPNS0_6detail8HeapHeadEPKvi +000000000004dcc8 g DF .text 0000000000000160 _ZN2nn2fs6detail18FileSystemAccessor13OpenDirectoryEPNSt3__110unique_ptrINS1_17DirectoryAccessorENS3_14default_deleteIS5_EEEEPKcNS0_17OpenDirectoryModeE +00000000003dd194 g DF .text 0000000000000128 __fputwc_unlocked +00000000000c29f4 g DF .text 000000000000004c _ZN2nn2am18GetAudioControllerEv +00000000001d02f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_SetIndirectProducerFlipOffsetEmmNS_8TimeSpanE +00000000000e94c0 g DF .text 00000000000000a8 ec_enc_bits +00000000001509bc g DF .text 00000000000000d4 _ZN2nn4nifm6detail13RequestClient13SubmitAndWaitEv +0000000000093678 g DF .text 0000000000000050 _ZN2nn2os6detail27MultiWaitHolderOfTimerEvent15AddToObjectListEv +0000000000227910 g DF .text 0000000000000090 _ZN2nn3hid6detail25SendVibrationGcErmCommandERKNS0_21VibrationDeviceHandleERKNS0_21VibrationGcErmCommandE +00000000001861ac g DF .text 00000000000000bc _ZN2nn5audio25GetBufferMixerInputOutputEPKNS0_15BufferMixerTypeEPaS4_Pii +000000000015b598 g DF .text 000000000000007c _ZN2nn2oe37GetHdcpAuthenticationStateChangeEventEPNS_2os11SystemEventE +0000000000356480 g DF .text 0000000000000244 _ZNKSt3__112ctype_bynameIwE10do_scan_isEtPKwS3_ +00000000007cb950 w DO .rodata 00000000000000f6 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001699cc g DF .text 0000000000000048 _ZN2nn8settings6system31SetConsoleInformationUploadFlagEb +000000000029f980 g DF .text 00000000000001b8 _ZN7android6Parcel11writeObjectERK18flat_binder_objectb +0000000000091380 g DF .text 0000000000000004 nnosWaitTimerEvent +00000000007e69d0 w DO .rodata 0000000000000176 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +0000000000197eb8 g DF .text 0000000000000014 _ZN2nn5audio27GetBufferSizeForDspProfilerEPNS0_20DspProfilerParameterE +00000000001257b0 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc14IFriendServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +0000000000256850 g DF .text 0000000000000088 _ZN2nn3web14ShowWebPageArg17SetBackgroundKindENS0_17WebBackgroundKindE +00000000002d1f54 g DF .text 0000000000000014 _ZN7android10VectorImplD1Ev +00000000000c246c g DF .text 0000000000000008 _ZNK2nn7account13ProfileEditor12GetTimeStampEv +0000000000801710 w DO .rodata 0000000000000023 _ZTSN3nns9hosbinder16IHOSBinderDriverE +0000000000238e80 g DF .text 0000000000000040 _ZNK2nn8irsensor6detail13StatusManager13GetMomentLifoERKNS0_14IrCameraHandleE +000000000095bd18 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_6system16SleepButtonStateELi16ENS1_13AtomicStorageIS4_EEEE +00000000000a1a34 g DF .text 000000000000000c _ZN2nn6socket11GetNameInfoEPK8sockaddrjPcjS4_jiPKNS0_14ResolverOptionEm +0000000000195808 w DF .text 00000000000001dc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000286ed4 g DF .text 0000000000000014 NvRmGpuTaskSchedulingGroupClose +00000000002508e4 g DF .text 0000000000000038 _ZN2nn3ldn8MakeSsidEPKvm +000000000022cf9c g DF .text 0000000000000050 _ZN2nn3hid25GetGyroscopeZeroDriftModeERKNS0_19SixAxisSensorHandleE +000000000023d3a8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_E12GetProxyInfoEv +000000000028410c g DF .text 0000000000000364 NvDdkVicExecuteSync +00000000003b1aa0 g DF .text 0000000000000338 jnf +0000000000091360 g DF .text 0000000000000004 nnosInitializeMultiWaitHolderForSemaphore +00000000002c3b30 g DF .text 000000000000002c _ZNK7android14SurfaceControl18getLayerFrameStatsEPNS_10FrameStatsE +00000000001740a0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_GetLockScreenFlagENS0_3OutIbvEE +00000000002c73e0 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient14getContentTypeERKNS_2spINS_7IBinderEEERi +000000000095b850 w DO .data 0000000000000020 _ZTVN2nn3hid6detail12DebugPadLifoE +0000000000182d0c g DF .text 0000000000000018 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTask9StartTaskEv +00000000001b13a4 g DF .text 0000000000000020 _ZN2nn2ec30ShowShopApplicationInformationENS_13ApplicationIdE +000000000019d304 g DF .text 0000000000000008 _ZNK2nn5audio6server13CommandBuffer19GetCommandTotalSizeEv +00000000000c6214 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_GetDefaultDisplayResolutionENS0_3OutIivEESL_ +00000000003a9d9c g DF .text 000000000000000c __nnmusl_stdin_lock_init +00000000007b0f88 g DO .rodata 0000000000000008 _ZN2nn2fs11FileStorage18SizeNotInitializedE +00000000000baf08 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E46_nn_sf_sync_RegisterNetworkServiceAccountAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000118e78 g DF .text 0000000000000038 _ZN2nn5codec6detail24GetOpusWaveformTypeValueENS0_16OpusWaveformTypeE +0000000000358e18 g DF .text 00000000000000ec _ZNKSt3__115__codecvt_utf16IwLb0EE6do_outER11__mbstate_tPKwS5_RS5_PcS7_RS7_ +000000000036b820 g DF .text 0000000000000058 _ZNSt3__112strstreambuf4swapERS0_ +00000000000d12b8 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000168010 g DF .text 0000000000000078 _ZN2nn8settings7factory21GetBluetoothBdAddressEPNS1_9BdAddressE +00000000002cf5e0 g DF .text 00000000000000bc _ZN7android7String85setToEPKcm +0000000000058128 w DF .text 0000000000000278 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSK_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESN_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENSW_ILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000007c1850 w DO .rodata 0000000000000157 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000002334fc w DF .text 00000000000001e0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi9ELm0EEEEEELm8ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_24BufferClientArgumentTypeEj +000000000006af4c g DF .text 00000000000000a8 _ZN2nn2fs30SaveDataTransferSizeCalculator16GetFreeSpaceSizeENS0_15SaveDataSpaceIdE +0000000000071d7c g DF .text 000000000000003c nnmem_nlib_rwlock_wrunlock +000000000094c240 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000213fe8 g DF .text 0000000000000008 FS_callback_get_target +0000000000125ed4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_SyncUserSettingERKNS_7account3UidE +00000000000bef18 g DF .text 0000000000000004 _ZN2nn7account25CachedNintendoAccountInfoC2Ev +000000000013fbb4 g DF .text 00000000000000ec _ZN2nn3nfp11ListDevicesEPNS0_12DeviceHandleEPii +00000000001a3a04 g DF .text 0000000000000030 _ZN2nn5audio6server7MixInfo26ClearEffectProcessingOrderEv +00000000000c1ae0 g DF .text 0000000000000030 _ZN2nn7account31NintendoAccountLinkageProcedureC2ERKNS0_3UidEPNS0_3nas40IOAuthProcedureForNintendoAccountLinkageE +00000000001653a8 g DF .text 000000000000009c _ZN2nn5prepo10PlayReport10SetEventIdEPKc +00000000000ac5c8 g DF .text 0000000000000030 _ZN2nn6socket8resolver3tls23AddGenerationToTlsValueERPNS2_30ResolverThreadLocalStoragePairE +000000000019fc60 g DF .text 000000000000065c _ZN2nn5audio6server16CommandGenerator21GenerateEffectCommandERKNS1_7MixInfoE +00000000003d3314 g DF .text 000000000000000c wctob +00000000001a0d38 g DF .text 000000000000000c _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_15UpsampleCommandE +000000000017ab30 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E33_nn_sf_sync_GetCertificateBufSizeENS0_3OutIjvEERKNS0_8InBufferE +00000000001d5b84 g DF .text 0000000000000024 _ZN2nn2vi6detail22ServiceReferenceHolder18ResetSystemServiceEv +0000000000153c74 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm380EEEEEELm0ELm16ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm1EEENS2_24BufferClientArgumentTypeEj +0000000000315598 g DF .text 0000000000000068 _ZN2nn4gpio17IsWakeEventActiveENS0_11GpioPadNameE +00000000000954d0 g DF .text 00000000000000f4 _ZN2nn2os6detail27TransferMemoryImplByHorizon3MapEPPvjS3_mNS0_16MemoryPermissionE +00000000002ce4b8 g DF .text 000000000000007c _ZN7android8String165setToEPKDsm +0000000000312e60 g DF .text 000000000000000c _Z22nvndetailUseMiddleWarev +0000000000804af0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi24EE4MaskE +0000000000239ae4 g DF .text 0000000000000034 _ZN2nn8irsensor6detail15IrSensorSession18IsProcessorStoppedERKNS0_14IrCameraHandleE +00000000002c5f6c g DF .text 0000000000000020 _ZNK7android21SurfaceComposerClient18getLayerFrameStatsERKNS_2spINS_7IBinderEEEPNS_10FrameStatsE +00000000000d07b4 g DF .text 0000000000000080 _ZN2nn3apm23InitializeForSystemWithEONS_2sf13SharedPointerINS0_14ISystemManagerEEE +00000000001b68a4 g DF .text 0000000000000008 _ZNK2nn3mii6detail25CalculateSizeAndAlignment12GetAlignmentEv +00000000001bc89c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetCoreDataEv +00000000001aa384 g DF .text 0000000000000098 _ZN2nn5audio30ResampleOutputGetNextFrameSizeEPNS0_16DownSamplerStateEiiiPi +00000000000230a4 g DF .text 000000000000020c _ZN2nn5image6detail4jpeg15jinit_upsamplerEPNS2_22jpeg_decompress_structE +000000000023d500 g DF .text 0000000000000018 _ZN22nerd_gillette_internal5otete7jaimev121GetTanHalfFieldOfViewEPfS2_ +00000000000c9a1c w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_PushInDataENS0_13SharedPointerINS6_8IStorageEEE +00000000007c7440 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000000cdf50 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_EndToWatchShortHomeButtonMessageEv +0000000000175d08 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm24ELm4ELl0EEEEEELm24ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm24ELm4EvEEj +0000000000979798 g DO .data 0000000000000028 _ZTVNSt3__18ios_base7failureE +00000000000d27b8 g DF .text 0000000000000010 _ZN2nn6applet25SetStartLibraryAppletHookEPFbNS_2sf13SharedPointerINS_2am7service22ILibraryAppletAccessorEEENS0_8AppletIdENS0_17LibraryAppletModeEPvE +00000000001222d8 g DF .text 000000000000000c _ZN2nn7friends13FriendRequestC2Ev +000000000031446c g DF .text 000000000000001c _ZN2nn3fgm8Debugger10InitializeEPvm +00000000000c8bbc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_InvalidateTransitionLayerEv +000000000019d1c8 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E39_nn_sf_sync_QueryAudioDeviceOutputEventENS0_3OutINS0_12NativeHandleEvEE +00000000008241e2 g DO .rodata 0000000000000001 _ZNSt3__119piecewise_constructE +000000000025ac7c g DF .text 000000000000007c nvdcutilSwHotplugIn +000000000010ba48 g DF .text 0000000000000010 opus_packet_get_nb_channels +0000000000188e40 g DF .text 0000000000000030 _ZN2nn5audio15ReleaseFinalMixEPNS0_19AudioRendererConfigEPNS0_12FinalMixTypeE +00000000000001ac g DF .text 0000000000000004 __nnDetailNintendoSdkRuntimeObjectFileRefer +00000000007e0900 w DO .rodata 00000000000001a6 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail12IScanRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001bfab4 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw15GetEyebrowColorEv +0000000000091c30 g DF .text 0000000000000060 _ZN2nn2os6detail13ThreadManager10WaitThreadEPNS0_10ThreadTypeE +00000000003669a0 w DF .text 000000000000004c _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmPKw +000000000097da40 g DO .data 0000000000000018 _ZTIN10__cxxabiv129__pointer_to_member_type_infoE +00000000003ba920 g DF .text 0000000000000008 cimagf +0000000000979270 g DO .data 0000000000000010 _ZTISt16nested_exception +00000000003984f0 g DF .text 0000000000000040 __cxa_allocate_dependent_exception +00000000007c0bb0 w DO .rodata 0000000000000026 _ZTSN2nn7account7profile14IProfileEditorE +00000000007b5600 w DO .rodata 000000000000001f _ZTSN2nn5fssrv2sf14IEventNotifierE +0000000000329144 w DF .text 00000000000000c4 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE4swapERS3_ +0000000000342290 w DF .text 00000000000001f4 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIcEE +00000000003ba928 g DF .text 0000000000000008 cimagl +00000000001c5aac g DF .text 0000000000000034 _ZNK2nn3mii15PrivateDatabase14IsFullDatabaseEv +0000000000070e8c g DF .text 0000000000000008 _ZN2nn4lmem6detail18InvalidateUnitHeapEPNS1_8HeapHeadE +000000000015c6f0 g DF .text 0000000000000058 _ZN2nn2oe18GetPerformanceModeEv +0000000000148e28 g DF .text 00000000000000c0 _ZN2nn3ngc6detail2Bp10InitDirectEPKjj +00000000001a50ec g DF .text 0000000000000024 _ZNK2nn5audio6server23SplitterDestinationData12IsConfiguredEv +00000000007b0f70 w DO .rodata 0000000000000018 _ZTSN2nn2fs6detail7NewableE +000000000004ce4c g DF .text 0000000000000074 _ZN2nn2fs6detail12FileAccessor4ReadEPmlPvmRKNS0_10ReadOptionE +00000000000bd4b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17_nn_sf_sync_DummyEv +000000000012382c g DF .text 00000000000000d8 _ZN2nn7friends13FriendSetting10InitializeERKNS_7account3UidENS2_23NetworkServiceAccountIdE +0000000000234718 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E36_nn_sf_sync_SendKeyboardLockKeyEventENS_4util10BitFlagSetILi32ENS5_6system20KeyboardLockKeyEventEEE +000000000025084c g DF .text 0000000000000044 _ZN2nn3ldn6detail15ConvertToStringENS0_11Ipv4AddressEPcm +0000000000256364 g DF .text 0000000000000090 _ZN2nn3web14ShowWebPageArg20SetBootAsMediaPlayerEb +0000000000958ef8 w DO .data 0000000000000028 _ZTVN2nn5audio6server10EffectInfoILNS0_10EffectTypeE4ENS0_15ReverbParameterEEE +000000000035a650 g DF .text 0000000000000008 _ZNKSt3__120__codecvt_utf8_utf16IDsE11do_encodingEv +000000000015c068 g DF .text 0000000000000068 _ZN2nn2oe24SetExpectedVolumeBalanceEff +000000000014c848 g DF .text 0000000000000030 _ZNK2nn3ngc6detail3Set5Rank1Ej +00000000001c67b4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_ExportERKNS0_9OutBufferE +00000000002ca488 g DF .text 0000000000000020 _ZN7android22GraphicBufferAllocatorD1Ev +00000000001d9d94 g DF .text 0000000000000034 _ZN2nn6fontll18ScalableFontEngine22CheckTtfKernTableExistEv +00000000000eb260 g DF .text 00000000000003e0 pitch_downsample +00000000002269f8 g DF .text 0000000000000060 _ZN2nn3hid6detail34CancelSixAxisSensorUserCalibrationENS0_6system25UniqueSixAxisSensorHandleE +00000000000d91f0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E16_nn_sf_sync_ReadENS0_3OutImvEElRKNS0_9OutBufferE +00000000002c5fc0 g DF .text 0000000000000024 _ZN7android21SurfaceComposerClient22closeGlobalTransactionEb +0000000000332c6c w DF .text 0000000000000118 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5writeEPKwl +00000000003de53c g DF .text 0000000000000010 setlinebuf +000000000009be00 g DF .text 0000000000000008 _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor13GetRawPointerEv +000000000014d60c g DF .text 000000000000025c _ZN2nn3ngc6detail3Sbv4InitEj +00000000001b9c10 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw16SetEyebrowRotateEi +00000000007b6950 w DO .rodata 0000000000000017 _ZTSN2nn3tma11IHtcManagerE +00000000003a8748 g DF .text 0000000000000008 dngettext +000000000015eb3c g DF .text 0000000000000058 _ZN2nn4pctl33SetPlayTimerAlarmDisabledForDebugEb +00000000000c6d6c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_SetOperationModeChangedNotificationEb +00000000000d3588 g DF .text 0000000000000058 _ZN2nn6applet41SetOutOfFocusApplicationSuspendingEnabledENS0_19LibraryAppletHandleEb +0000000000115e2c g DF .text 0000000000000038 opus_multistream_encode +00000000000c5b3c w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetHomeMenuFunctionsENS0_3OutINS0_13SharedPointerINS6_18IHomeMenuFunctionsEEEvEE +0000000000950ff8 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000001869d4 g DF .text 0000000000000018 _ZN2nn5audio15GetDelayTimeMaxEPKNS0_9DelayTypeE +000000000022cb04 g DF .text 0000000000000048 _ZN2nn3hid22GetSixAxisSensorHandleEPNS0_19SixAxisSensorHandleENS0_11BasicXpadIdE +0000000000214dcc g DF .text 0000000000000078 _ZN2nn3hid6detail21SetXpadAutoPilotStateENS0_11BasicXpadIdERKNS0_5debug23BasicXpadAutoPilotStateE +0000000000353d50 g DF .text 0000000000000178 _ZNSt3__16localeC2ERKS0_PKci +000000000024f4dc w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3ldn6detail32ISystemLocalCommunicationServiceEED2Ev +000000000019bf5c g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem13GetSampleRateEv +00000000009456f8 g DO .data 0000000000000038 _ZTVN2nn2os6detail23MultiWaitHolderOfThreadE +000000000018ba6c g DF .text 0000000000000010 _ZN2nn5audio23SplitterDestinationData15ClearMixVolumesEv +0000000000210300 g DF .text 0000000000000064 kill_table_ptrs +0000000000949360 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_EE +0000000000070804 g DF .text 0000000000000050 _ZN2nn4lmem6detail21VisitExpHeapAllocatedEPNS1_8HeapHeadEPFvPvS3_mEm +000000000011af3c g DF .text 000000000000002c _ZN2nn3err21IsNetworkServiceErrorENS0_9ErrorCodeE +0000000000004f14 g D .text 0000000000000374 nndetailCryptoBignum_mul_comba8 +00000000000aa658 w DF .text 00000000000001f4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSJ_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESW_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeESY_j +000000000022e340 g DF .text 0000000000000044 _ZN2nn3hid6system28BindUniquePadConnectionEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +000000000004478c g DF .text 0000000000000014 nndetailDiagAbortImpl +00000000001c62d0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E12GetProxyInfoEv +0000000000286184 g DF .text 0000000000000030 nvgr_decompress_prepare +00000000002c4c90 g DF .text 0000000000000098 _ZN7android8Composer7setSizeERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEjj +0000000000110190 g DF .text 00000000000000f8 opus_encode +00000000002c6b84 g DF .text 0000000000000104 _ZN7android21SurfaceComposerClient14getDisplayInfoERKNS_2spINS_7IBinderEEEPNS_11DisplayInfoE +000000000014b748 g DF .text 000000000000004c _ZN2nn3ngc6detail11BitVector325ResetEv +000000000009ad10 w DF .text 0000000000000008 _ZN2nn2sf14IServiceObject12GetProxyInfoEv +00000000007b10e0 w DO .rodata 0000000000000019 _ZTSN2nn2fs3fsa10IDirectoryE +0000000000081ce0 g DF .text 0000000000000004 _Z26nnmem_nlib_thread_exit_cppv +0000000000242180 g DF .text 0000000000000048 _ZN22nerd_gillette_internal5otete11ImageCodec214DequantizationERiim +00000000002d2f34 g DF .text 0000000000000254 _ZN7android10VectorImpl7_shrinkEmm +00000000001bcdd4 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw8SetMoleXEi +00000000001a3398 g DF .text 00000000000000f4 _ZN2nn5audio6server10PoolMapper15TryAttachBufferEPNS0_6common17BehaviorParameter9ErrorInfoEPNS1_11AddressInfoENS0_7CpuAddrEm +0000000000070424 g DF .text 0000000000000008 _ZN2nn4lmem6detail25GetMemoryBlockHeapGroupIdEPKv +00000000001697e8 g DF .text 0000000000000078 _ZN2nn8settings7factory18GetGyroscopeOffsetEPNS1_15GyroscopeOffsetE +00000000001a685c g DF .text 0000000000000008 _ZNK2nn5audio6server12VoiceContext8GetCountEv +0000000000228e58 g DF .text 0000000000000018 _ZN2nn3hid6system27GetAvailableFirmwareVersionEPNS1_15FirmwareVersionENS1_11UniquePadIdE +000000000036b510 g DF .text 0000000000000094 _ZNSt3__112strstreambufC2EPalS1_ +0000000000945bd0 w DO .data 0000000000000010 _ZTIN2nn14MemoryResourceE +00000000000a18b0 g DF .text 0000000000000008 _ZN2nn6socket18ShutdownAllSocketsEb +000000000094ce50 w DO .data 0000000000000018 _ZTIN2nn2am7service22ILibraryAppletAccessorE +00000000003b85f8 g DF .text 00000000000000bc wcstold +0000000000329240 w DF .text 0000000000000004 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5imbueERKNS_6localeE +000000000036255c g DF .text 0000000000000080 _ZNSt11logic_errorC1EPKc +0000000000072550 g DF .text 00000000000000c8 nnmem_nlib_printf +00000000000cebac w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_RequestToRebootEv +0000000000122978 g DF .text 0000000000000008 _ZNK2nn7friends11PlayHistory13GetPlayRecordEv +000000000036c70c g DF .text 00000000000000c4 _ZNSt3__112system_errorC1ENS_10error_codeERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000001d06d4 w DF .text 0000000000000054 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_SetDetachedSharedFrameBufferSubImageENS_2vi7fbshare18SharedBufferHandleEliiiijRKNS0_8InBufferEj +000000000094f8f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003e10c0 g DF .text 00000000000000c4 wcstoll +000000000015cd34 g DF .text 0000000000000004 _ZN2nn2oe22PauseGamePlayRecordingEv +00000000000a3f00 g DF .text 0000000000000138 _ZN2nn6socket6detail8ShutdownEii +00000000000ba054 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E33_nn_sf_sync_BeginUserRegistrationENS0_3OutINS5_3UidEvEE +0000000000164880 g DF .text 0000000000000050 _ZN2nn5prepo6detail7msgpack22WriteUnsignedInteger32EPNS2_17OutputStreamParamEj +000000000097e2c8 g DO .data 0000000000000038 _ZTVN10__cxxabiv120__function_type_infoE +000000000018d2f0 g DF .text 0000000000000088 _ZN2nn5audio6common10NodeStates10InitializeEPvmi +000000000014ee90 g DF .text 000000000000005c _ZN2nn3ngc6detail15CompressedArrayD1Ev +0000000000396688 g DF .text 0000000000000004 _ZNSt13bad_exceptionD2Ev +0000000000074d20 g DF .text 000000000000008c nnmem_nlib_strncat +0000000000190594 g DF .text 000000000000005c _ZN2nn5audio36RequestSuspendAudioRenderersForDebugENS_6applet20AppletResourceUserIdE +00000000002147f8 g DF .text 000000000000002c _ZN2nn3hid6detail19GetXpadPlayerNumberEPiRKNS0_11BasicXpadIdE +00000000007e24c0 w DO .rodata 000000000000001a _ZTSN2nn3nsd6detail8IManagerE +000000000014fa68 g DF .text 0000000000000068 _ZN2nn3ngc6detail9CalcRank1EjPKjS3_PKh +00000000001cbe68 g DF .text 0000000000000024 _ZN2nn2vi16GetSystemServiceEv +00000000001886c4 g DF .text 000000000000000c _ZN2nn5audio21GetI3dl2ReverbDryGainEPKNS0_15I3dl2ReverbTypeE +000000000018d228 g DF .text 0000000000000008 _ZN2nn5audio6common10NodeStates5Stack14CalcBufferSizeEi +00000000003e7988 g DF .text 0000000000000024 __nnmusl_pthread_attr_setstacksize +00000000001179a4 g DF .text 0000000000000034 _ZN2nn5codec19HardwareOpusDecoder10SetContextEPKvm +000000000015b388 g DF .text 00000000000000d4 _ZN2nn2oe28GetLaunchStorageInfoForDebugEPNS0_25LaunchStorageInfoForDebugE +000000000097a668 w DO .data 0000000000000040 _ZTVNSt3__115messages_bynameIcEE +00000000007bc9b0 w DO .rodata 000000000000001f _ZTSN2nn7account7profile8IProfileE +00000000007bbdb0 w DO .rodata 0000000000000169 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000002ced48 g DF .text 000000000000003c _ZN7android17terminate_string8Ev +0000000000227564 g DF .text 0000000000000130 _ZN2nn3hid6detail25InitializeVibrationDeviceERKNS0_21VibrationDeviceHandleE +00000000000f2e98 g DF .text 00000000000003dc silk_NLSF_stabilize +000000000011d374 g DF .text 00000000000000fc _ZN2nn7friends16UpdateFriendInfoEPNS0_6FriendERKNS_7account3UidEPKNS3_23NetworkServiceAccountIdEi +0000000000174150 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E39_nn_sf_sync_GetBluetoothDevicesSettingsENS0_3OutIivEERKNS0_8OutArrayINS5_6system24BluetoothDevicesSettingsEEE +0000000000946310 w DO .data 0000000000000038 _ZTIN2nn2sf4impl6detail17ImplTemplateBaseTINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_S6_EE +000000000032c3d4 w DF .text 0000000000000114 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5seekgExNS_8ios_base7seekdirE +0000000000341ed0 w DF .text 00000000000001d0 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIcEE +00000000000d3994 g DF .text 00000000000000bc _ZN2nn6applet35GetPopFromInteractiveInChannelEventENS0_23LibraryAppletSelfHandleE +00000000001bc170 g DF .text 0000000000000658 _ZNK2nn3mii6detail12StoreDataRaweqERKS2_ +000000000023237c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_GetSupportedNpadStyleSetENS_6applet20AppletResourceUserIdENS0_3OutINS_4util10BitFlagSetILi32ENS5_12NpadStyleTagEEEvEE +00000000001221c4 g DF .text 0000000000000008 _ZNK2nn7friends6Friend11GetPresenceEv +000000000015872c g DF .text 0000000000000020 _ZN2nn3nsd24WriteSaveDataToFsForTestERKNS0_8SaveDataE +00000000000a7008 w DF .text 0000000000000204 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEENSE_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESQ_NSO_23InRawClientArgumentTypeILm4ELm4EvEENSO_24BufferClientArgumentTypeESS_j +000000000006c97c g DF .text 0000000000000110 _ZN2nn2fs29QueryMountSystemDataCacheSizeEPmNS_3ncm12SystemDataIdE +000000000007120c g DF .text 0000000000000040 nnmem_nlib_spinlock_unlock_ +00000000000716e0 g DF .text 00000000000000a8 nnmem_nlib_thread_attr_getstack +000000000035a924 g DF .text 0000000000000040 _ZNSt3__18numpunctIwED1Ev +00000000000bdd5c g DF .text 00000000000000ac _ZN2nn7account24LoadBaasAccessTokenCacheEPmPcmRKNS0_3UidE +00000000000d91d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E16_nn_sf_sync_OpenERKNS5_13DirectoryNameERKNS5_8FileNameE +00000000001562ec g DF .text 00000000000000f8 _ZN2nn4nifm26EnumerateNetworkInterfacesEPNS0_20NetworkInterfaceInfoEPiij +00000000002707c4 g DF .text 0000000000000008 NvRmMemGetAddress +000000000004d250 g DF .text 0000000000000140 _ZN2nn2fs6detail18FileSystemAccessorD2Ev +00000000000b84a8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEE17GetCmifBaseObjectEv +00000000009ef7a0 g DO .bss 0000000000000008 _ZN2nn4time29g_pStandardNetworkSystemClockE +0000000000220414 w DF .text 0000000000000004 _ZN2nn3hid6detail21NpadSixAxisSensorLifoD0Ev +000000000009be24 g DF .text 0000000000000020 _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor14GetReceiveListEi +000000000031f174 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIjjEEPjEEjT0_S5_S5_S5_S5_T_ +000000000039ca78 g DF .text 000000000000006c _Unwind_GetTextRelBase +000000000015c0d0 g DF .text 0000000000000090 _ZN2nn2oe24GetExpectedVolumeBalanceEPfS1_ +00000000001c9fa0 g DF .text 0000000000000064 _ZN2nn5swkbd14InlineKeyboard14SetKeytopScaleEf +0000000000942a60 w DO .data 0000000000000010 _ZTIN2nn2fs6detail7NewableE +000000000080c0b0 w DO .rodata 00000000000000e4 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEEvEE +000000000032967c w DF .text 0000000000000040 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEEC2Ev +00000000000c9c28 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_GetPopOutDataEventENS0_3OutINS0_12NativeHandleEvEE +00000000001a9564 g DF .text 00000000000002e4 _ZN2nn5audio11DecodeAdpcmEPiPKNS0_6common10WaveBufferEiiPKsPv +000000000097bc68 w DO .data 0000000000000010 _ZTINSt3__110__time_putE +000000000019c314 g DF .text 00000000000000d0 _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl10InitializeERKNS0_6detail30AudioRendererParameterInternalERNS_2sf12NativeHandleESA_mRKNS_6applet20AppletResourceUserIdEi +000000000034f13c w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIcc11__mbstate_tED1Ev +0000000000979810 w DO .data 0000000000000018 _ZTINSt3__19basic_iosIcNS_11char_traitsIcEEEE +00000000008056d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi137EE4MaskE +0000000000353ec8 g DF .text 0000000000000068 _ZNSt3__16localeC2ERKS0_RKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEi +00000000000be8dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_GetResultEv +000000000096e6c8 g DO .data 0000000000000168 _ZTVN7android20BnGraphicBufferAllocE +00000000001abcf8 g DF .text 0000000000000374 _ZN2nn5audio16ReverbProcess2chEPKNS0_15ReverbParameterEPNS0_11ReverbStateEjPKiS7_PiS8_ +00000000000a1a6c g DF .text 0000000000000004 _ZN2nn6socket9HStrErrorEi +0000000000a80878 g DO .bss 00000000000000a0 _ZNSt3__15wcerrE +00000000001ac06c g DF .text 000000000000049c _ZN2nn5audio16ReverbProcess4chEPKNS0_15ReverbParameterEPNS0_11ReverbStateEjPKiS7_S7_S7_PiS8_S8_S8_ +000000000028696c g DF .text 0000000000000068 NvRmGpuAddressSpaceAllocationCreate +0000000000348228 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb0EE16do_decimal_pointEv +0000000000118808 g DF .text 0000000000000004 _ZN2nn5codec22OpusMultiStreamDecoderD1Ev +000000000011b640 g DF .text 0000000000000008 _ZN2nn3err18ErrorResultVariantC2Ev +000000000029bce0 g DF .text 0000000000000128 _ZN7android12MemoryDealerC2EmPKcj +00000000001b1d80 g DF .text 0000000000000138 _ZN2nn2ec6detail31ShowShopAddOnContentDetailsImplENS1_10LaunchModeENS0_5NsUidERKNS_7account3UidENS0_8SourceIdE +0000000000180dcc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E33_nn_sf_sync_GetSystemClockContextENS0_3OutINSL_18SystemClockContextEvEE +000000000009ecfc w DF .text 00000000000000dc _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_S6_E40_nn_sf_sync_ConvertCurrentObjectToDomainENS0_3OutINS0_4cmif18CmifDomainObjectIdEvEE +0000000000805090 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi69EE4MaskE +0000000000264524 g DF .text 0000000000000004 NvOsStrcpy +0000000000083acc g DF .text 0000000000000584 _ZN2nn7nlibsdk4heap14TlsHeapCentral22DestroySpanPageIfEmptyEPNS1_8SpanPageEb +00000000001d04fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E51_nn_sf_sync_GetSharedLowLevelLayerSynchronizedEventENS0_3OutINS0_12NativeHandleEvEEm +000000000022acb8 g DF .text 0000000000000044 _ZN2nn3hid13GetMouseStateEPNS0_10MouseStateE +00000000000f6738 g DF .text 00000000000009d4 silk_VAD_GetSA_Q8_c +00000000001cd098 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +00000000001935e8 g DF .text 00000000000000d0 _ZN2nn5audio36CreateAudioOutManagerForAppletByHipcEv +00000000002c8d78 g DF .text 000000000000000c _ZN7android5FenceC2Ei +0000000000353b4c g DF .text 0000000000000008 _ZNSt3__16localeD2Ev +0000000000947b00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +0000000000820430 w DO .rodata 0000000000000013 _ZTSN2nn3i2c8IManagerE +000000000097c060 w DO .data 0000000000000038 _ZTINSt3__18messagesIwEE +00000000007f1310 w DO .rodata 000000000000005a _ZTSN2nn2sf6detail27UnmanagedEmplacedImplHolderINS_5audio6server24AudioRendererManagerImplEEE +000000000032850c g DF .text 0000000000000084 _ZNSt3__18ios_baseD2Ev +000000000019f1d4 g DF .text 0000000000000164 _ZN2nn5audio6server16CommandGenerator33GeneratePcmInt16DataSourceCommandERNS1_9VoiceInfoERNS0_10VoiceStateEi +000000000023477c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E41_nn_sf_sync_AcquireSleepButtonEventHandleENS0_3OutINS0_12NativeHandleEvEENS_6applet20AppletResourceUserIdE +00000000000cf308 w DF .text 000000000000018c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEENSI_ILm16ELm8ELl8EEENSI_ILm8ELm8ELl24EEENSI_ILm8ELm8ELl32EEEEEELm40ELm8ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm1ELm1EvEENSW_ILm16ELm8EvEENSW_ILm8ELm8EvEESZ_j +000000000035a768 g DF .text 000000000000000c _ZNKSt3__120__codecvt_utf8_utf16IDiE10do_unshiftER11__mbstate_tPcS4_RS4_ +00000000003e2fc0 g DF .text 00000000000000cc swab +0000000000282314 g DF .text 00000000000005b8 NvDdkVicGetSurfaceInfo +000000000018a5c0 g DF .text 0000000000000030 _ZN2nn5audio24RemoveCircularBufferSinkEPNS0_19AudioRendererConfigEPNS0_22CircularBufferSinkTypeEPNS0_12FinalMixTypeE +000000000019b738 g DF .text 0000000000000008 _ZN2nn5audio6server17AudioRenderSystem21SetRenderingTimeLimitEi +00000000002c8d68 g DF .text 0000000000000010 _ZN7android5FenceC2Ev +00000000003968d4 g DF .text 000000000000005c _ZNSt12length_errorD0Ev +00000000000427d0 g DF .text 0000000000000024 _ZN2nn4edid6detail9SerializeIjEET_PKh +000000000009ce30 g DF .text 0000000000000074 _ZN2nn2sf4hipc6server28HipcServerSessionManagerBase10AcceptBaseEPNS2_21HipcServerSessionBaseENS_3svc6HandleE +0000000000179b68 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3ssl2sf14ISslConnectionEE19FunctionForBoolTypeEv +000000000097a158 w DO .data 0000000000000030 _ZTVNSt3__115time_put_bynameIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000081738 g DF .text 0000000000000020 nnmem_nlib_semaphore_trywait +00000000000ca5b4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000114964 g DF .text 0000000000000004 opus_multistream_decoder_destroy +00000000001d2ba4 g DF .text 0000000000000020 _ZN2nn2vi18OpenDefaultDisplayEPPNS0_7DisplayE +000000000031754c g DF .text 0000000000000078 _ZN2nn3i2c20CommandListFormatter21EnqueueReceiveCommandENS0_17TransactionOptionEm +000000000016846c g DF .text 0000000000000048 _ZN2nn8settings6system25SetInRepairProcessEnabledEb +00000000000bc96c w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm4096EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +000000000014ec50 g DF .text 00000000000000c0 _ZNK2nn3ngc6detail9SparseSet9Select1ExEj +0000000000226b00 g DF .text 0000000000000148 _ZN2nn3hid6detail36GetAnalogStickManualCalibrationStageEPNS0_6system33AnalogStickManualCalibrationStageENS2_11UniquePadIdENS2_19AnalogStickPositionE +0000000000096038 g DF .text 0000000000000070 _ZN2nn2os6detail27InterruptEventImplByHorizonC1EiNS0_14EventClearModeE +0000000000122f38 g DF .text 0000000000000008 _ZNK2nn7friends12ProfileExtra12GetAccountIdEv +0000000000959120 g DO .data 0000000000000018 _ZTIN2nn5audio6server7AuxInfoE +00000000003e4f20 g DF .text 000000000000008c __nnmusl_errno_from_result +0000000000071e90 g DF .text 0000000000000110 nnmem_nlib_condrwlock_wait +000000000008ceb8 g DF .text 0000000000000008 _ZN2nn2os15FinalizeBarrierEPNS0_11BarrierTypeE +00000000002646b8 g DF .text 000000000000002c glslc_DebugPrintf +00000000002cf12c g DF .text 000000000000002c _ZN7android7String8C2EPKDim +00000000001c8fbc g DF .text 0000000000000144 _ZN2nn5swkbd32GetInteractiveOutStorageCallbackENS_6applet19LibraryAppletHandleEPNS0_6StringERKNS0_15ShowKeyboardArgE +000000000035b0f4 g DF .text 0000000000000088 _ZNSt3__115numpunct_bynameIwEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +000000000015232c w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm4EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +00000000003a9d80 g DF .text 0000000000000004 rename +000000000035933c g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IwLb1EE16do_always_noconvEv +0000000000093774 g DF .text 0000000000000008 _ZNK2nn2os6detail31MultiWaitHolderOfInterruptEvent10IsSignaledEv +000000000016a658 g DF .text 0000000000000044 _ZN2nn8settings6system39SetConsoleSixAxisSensorAccelerationGainERKNS1_36ConsoleSixAxisSensorAccelerationGainE +00000000000283a0 g DF .text 00000000000002b4 _ZN2nn5image6detail4jpeg14jpeg_idct_10x5EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000036c170 g DF .text 000000000000003c _ZThn16_NSt3__19strstreamD0Ev +000000000029e9ac g DF .text 00000000000000b8 _ZN7android6Parcel13writeUnpaddedEPKvm +00000000008250f0 g DO .rodata 0000000000000015 _ZTSSt16bad_array_length +0000000000066368 g DF .text 000000000000013c _ZN2nn2fs13MountSaveDataEPKcNS_3ncm13ApplicationIdENS0_6UserIdE +00000000000d0a14 g DF .text 000000000000007c _ZN2nn3apm24InitializePrivilegedWithEONS_2sf13SharedPointerINS0_18IManagerPrivilegedEEE +00000000003c5b34 g DF .text 0000000000000260 __mo_lookup +000000000008d1c8 g DF .text 000000000000004c _ZN2nn2os27GetCurrentStackInfoForDebugEPmS1_ +000000000022c730 g DF .text 0000000000000060 _ZN2nn3hid6system23GetPlayReportDeviceTypeERNS_4util10BitFlagSetILi32ENS1_10DeviceTypeEEE +0000000000014f4c g DF .text 0000000000000054 _ZN2nn5image6detail4jpeg10jpeg_abortEPNS2_18jpeg_common_structE +0000000000956110 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +000000000003b858 g DF .text 0000000000000014 _ZN2nn4util17BinaryBlockHeader12GetNextBlockEv +00000000009447a0 g DO .data 0000000000000038 _ZTIN2nn2fs6detail29DirectoryServiceObjectAdapterE +00000000000f752c g DF .text 0000000000000060 silk_bwexpander_32 +0000000000156e74 g DF .text 0000000000000004 _ZN2nn4nifm17NetworkConnection13CancelRequestEv +0000000000259330 g DF .text 0000000000000008 nvdcEventData +00000000001543a8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E12GetProxyInfoEv +00000000001bc028 g DF .text 0000000000000050 _ZNK2nn3mii6detail12StoreDataRaw16IsValidDeviceCrcEv +0000000000958a90 w DO .data 0000000000000028 _ZTIN2nn2sf6detail18EmplacedImplHolderINS_5audio6server24AudioRendererManagerImpl17AudioRendererImplEEE +000000000004e064 g DF .text 0000000000000084 _ZN2nn2fs6detail18FileSystemAccessor20NotifyCloseDirectoryEPNS1_17DirectoryAccessorE +000000000018a7ec g DF .text 0000000000000094 _ZN2nn5audio11SinkManager8AllocateENS0_6common8SinkTypeE +00000000001d3f20 g DF .text 0000000000000110 _ZN2nn2vi16GetIndirectImageEPmS1_Pvmmiiffff +00000000003d1cec g DF .text 0000000000000014 ffsll +000000000000a5cc g DF .text 000000000000012c _ZN2nn5image6detail4jpeg19jpeg_CreateCompressEPNS2_20jpeg_compress_structEim +0000000000169eb8 g DF .text 0000000000000044 _ZN2nn8settings6system38SetPushNotificationActivityModeOnSleepEi +00000000000a1aa8 g DF .text 0000000000000004 nnsocketListen +0000000000346f30 w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb0EE13do_pos_formatEv +000000000023a654 g DF .text 0000000000000090 _ZN2nn8irsensor6detail15IrSensorSession37GetImageTransferProcessorStateDefaultEPNS0_27ImageTransferProcessorStateEPvmRKNS0_14IrCameraHandleE +0000000000978038 w DO .data 0000000000000068 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_8DebuggerEEEEEE13ServiceObjectESJ_E6ObjectE +000000000039ccec g DF .text 0000000000000000 unw_getcontext +000000000006b714 g DF .text 0000000000000148 _ZN2nn2fs32OpenSdCardDetectionEventNotifierEPNSt3__110unique_ptrINS0_14IEventNotifierENS1_14default_deleteIS3_EEEE +000000000035d6a8 g DF .text 00000000000002f8 _ZNSt3__118__time_get_storageIcE4initERKNS_5ctypeIcEE +0000000000296d54 g DF .text 0000000000000030 _ZTv0_n24_N7android10IInterfaceD0Ev +000000000097a5b0 w DO .data 0000000000000038 _ZTVNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000239268 g DF .text 00000000000000c8 _ZN2nn8irsensor6detail20InternalErrorHandler26IsLibraryAppletCallEnabledERKNS0_22IrCameraInternalStatusERKNS0_14IrCameraHandleE +0000000000174c40 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetFatalDirtyFlagsENS0_3OutINS_4util10BitFlagSetILi128ENS5_6system14FatalDirtyFlagEEEvEE +000000000033311c w DF .text 0000000000000008 _ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev +0000000000958fb8 g DO .data 0000000000000028 _ZTVN2nn5audio6server14EffectInfoBaseE +000000000035bcb8 g DF .text 0000000000000084 _ZNKSt3__120__time_get_c_storageIcE3__XEv +0000000000064d04 g DF .text 00000000000000c4 _ZN2nn2fs19RegisterExternalKeyERKNS0_8RightsIdERKNS_3spl9AccessKeyE +00000000007ada9c g DO .rodata 0000000000000004 _ZN2nn4util6detail16Float1Divided2PiE +000000000009e418 w DF .text 00000000000000f8 _ZNK2nn2sf4hipc6server18Hipc2ServerMessage18GetInNativeHandlesEPNS0_12NativeHandleE +000000000015c4ac g DF .text 0000000000000068 _ZN2nn2oe17DisableScreenShotEv +00000000000b7f90 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_4baas24IManagerForSystemServiceEEEvi +0000000000354f58 g DF .text 000000000000004c _ZNSt3__114collate_bynameIwED2Ev +00000000009442a0 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf14IEventNotifierE +0000000000157ad8 g DF .text 0000000000000068 _ZN2nn4nifm6detail34ConvertAccessPointDataToNifmFromSfEPNS0_15AccessPointDataERKNS1_2sf18AccessPointDataOldE +00000000003343d0 w DF .text 0000000000000010 _ZNKSt3__17collateIwE12do_transformEPKwS3_ +00000000001cacc4 g DF .text 00000000000001a8 _ZNK2nn5swkbd6detail18InlineKeyboardImpl18GetTouchRectanglesEPNS0_4RectES4_ +000000000022eef0 g DF .text 0000000000000008 _ZNK2nn3hid14VibrationMixer10GetMixModeEv +00000000001bf610 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetHairFlipEv +00000000003160d8 g DF .text 0000000000000004 nngpioUnbindInterrupt +00000000001b8dcc g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw11GetEyeColorEv +0000000000176cf8 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi21ELm128EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000000c3128 g DF .text 000000000000024c _ZN2nn2am24FinalizeCommonInterfacesEv +000000000008d274 g DF .text 000000000000001c _ZN2nn2os14IsMemoryLockedEmm +0000000000986fe0 g DO .data 0000000000000004 __pthread_info_tlsSlot +000000000016bee0 g DF .text 0000000000000070 _ZN2nn8settings6detail22SetPrimaryAlbumStorageEi +000000000017aafc w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_GetCertificatesERKNS0_9OutBufferENS0_3OutIjvEERKNS0_8InBufferE +00000000007f1370 w DO .rodata 000000000000006b _ZTSN2nn2sf6detail37UnmanagedEmplacedImplHolderBaseGetterINS_5audio6server24AudioRendererManagerImplEvE5Impl2E +000000000034707c w DF .text 0000000000000008 _ZNKSt3__110moneypunctIwLb0EE14do_frac_digitsEv +0000000000821d40 w DO .rodata 000000000000001b _ZTSN2nn3pwm15IChannelSessionE +00000000000cfdbc w DF .text 0000000000000008 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm100EE27InitializeShimLibraryHolderINS_2am7service24IApplicationProxyServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +00000000003ac080 w DF .text 0000000000000004 pread64 +0000000000072e80 g DF .text 0000000000000160 nnmem_nlib_memrchr +0000000000295964 g DF .text 0000000000000078 _ZN7android9BpRefBaseD0Ev +0000000000823540 g DO .rodata 000000000000001d _ZTSNSt3__115numpunct_bynameIcEE +00000000000ea49c g DF .text 00000000000000e8 ec_laplace_decode +0000000000180b18 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E64_nn_sf_sync_SetStandardUserSystemClockAutomaticCorrectionEnabledEb +000000000002a50c g DF .text 0000000000000014 _ZN2nn5image6detail4jpeg15jcopy_block_rowEPA64_sS4_i +00000000001bcda8 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw13SetBeardColorEi +0000000000360dac g DF .text 0000000000000004 _ZNSt3__119__shared_weak_countD0Ev +00000000000bcd04 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_4http15IOAuthProcedureEEEvi +00000000007d3e5c g DO .rodata 0000000000000006 silk_CB_lags_stage2_10_ms +000000000013f69c g DF .text 00000000000000d0 _ZN2nn3nfp21ExistsApplicationAreaEPbRKNS0_12DeviceHandleE +0000000000169394 g DF .text 0000000000000044 _ZN2nn8settings6system15SetLanguageCodeERKNS0_12LanguageCodeE +00000000003414c8 w DF .text 0000000000000154 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11do_get_yearES4_S4_RNS_8ios_baseERjP2tm +00000000009502c8 g DO .data 0000000000000018 silk_LTP_vq_ptrs_Q7 +0000000000092e1c g DF .text 000000000000007c _ZN2nn2os6detail13MultiWaitImpl38AddToEachObjectListAndCheckObjectStateEv +00000000007e5b90 w DO .rodata 0000000000000112 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectE +0000000000081334 g DF .text 000000000000003c nnmem_nlib_mutex_recursive_timed_init +0000000000155618 g DF .text 000000000000008c _ZN2nn4nifm28IsAnyInternetRequestAcceptedENS0_8ClientIdE +00000000001b623c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor7GetEyeYEv +00000000007bfce0 w DO .rodata 000000000000016b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000007ceb80 w DO .rodata 0000000000000109 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000035aa74 g DF .text 0000000000000040 _ZNKSt3__18numpunctIwE12do_falsenameEv +00000000001a4ee8 g DF .text 0000000000000068 _ZN2nn5audio6server22CircularBufferSinkInfoC2Ev +0000000000226cf4 g DF .text 00000000000000ac _ZN2nn3hid6detail30IsAnalogStickInReleasePositionEPbNS0_6system11UniquePadIdENS3_19AnalogStickPositionE +000000000036241c g DF .text 0000000000000054 _ZNSt3__118shared_timed_mutex15try_lock_sharedEv +00000000000ccb9c w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi21ELm512EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENS2_24BufferClientArgumentTypeEj +000000000000a4cc w DF .text 0000000000000064 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE17InitializeHashKeyEv +000000000017eae4 g DF .text 0000000000000038 _ZN2nn4time39AsyncEnsureNetworkClockAvailabilityTask10InitializeENS_2os14EventClearModeE +00000000001869ec g DF .text 000000000000000c _ZN2nn5audio23GetDelayChannelCountMaxEPKNS0_9DelayTypeE +00000000003c2824 g DF .text 0000000000000040 iswcntrl +00000000003ab0fc w DF .text 0000000000000004 pthread_mutex_unlock +00000000009425d0 g DO .data 0000000000000050 nnutilZlib_z_errmsg +00000000000bbcdc w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E77_nn_sf_sync_ProxyProcedureToAcquireApplicationAuthorizationForNintendoAccountENS0_3OutINS0_13SharedPointerINS5_4http15IOAuthProcedureEEEvEERKNSK_4UuidE +00000000001b628c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor8GetNoseYEv +0000000000223ea4 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm12EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +0000000000205e6c g DF .text 0000000000003074 rtgah +00000000001809b8 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E39_nn_sf_sync_GetStandardLocalSystemClockENS0_3OutINS0_13SharedPointerINS7_12ISystemClockEEEvEE +00000000001e4124 g DF .text 00000000000004dc trim_bitmap +000000000027acdc g DF .text 000000000000008c NvBlitClose +0000000000046a14 g DF .text 0000000000000088 _ZN2nn2fs6detail15OutputAccessLogENS_6ResultENS_2os4TickES4_PKcNS0_15DirectoryHandleES6_z +0000000000065ef4 g DF .text 00000000000001d0 _ZN2nn2fs28QueryMountRomOnFileCacheSizeEPmNS0_10FileHandleE +00000000000bf3e0 g DF .text 0000000000000018 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarD1Ev +0000000000089b94 g DF .text 0000000000000034 _ZN2nn7nlibsdk4heap10CachedHeap5ResetEPNS1_12TlsHeapCacheE +00000000001d75cc g DF .text 00000000000001b8 _ZN2nn6fontll6detail22PickFeatureTableOffsetEPKvttPKc +00000000003b88c0 g DF .text 0000000000000080 __rawmemchr +0000000000163dd0 g DF .text 0000000000000050 _ZN2nn5prepo6detail7msgpack12WriteArray32EPNS2_17OutputStreamParamEj +0000000000169860 g DF .text 0000000000000078 _ZN2nn8settings7factory17GetGyroscopeScaleEPNS1_14GyroscopeScaleE +00000000000b09d8 g DF .text 000000000000019c _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferI7in_addrEElRPPT_PKhm +00000000001b8f84 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw15GetEyebrowScaleEv +00000000002a15f4 g DF .text 0000000000000040 _ZN7android6Parcel4BlobD1Ev +00000000002226bc g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm16EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +000000000097d540 g DO .data 0000000000000028 _ZTVSt20bad_array_new_length +00000000001494d0 g DF .text 0000000000000094 _ZNK2nn3ngc6detail2Bp11NextSiblingEj +000000000016b828 g DF .text 0000000000000078 _ZN2nn8settings6detail18SetAudioOutputModeEii +000000000000dacc g DF .text 0000000000000048 _ZN2nn5image6detail4jpeg17jinit_forward_dctEPNS2_20jpeg_compress_structE +000000000026cdc8 g DF .text 0000000000000008 NvRmSyncGetNumSemaphores +00000000000acc28 g DF .text 0000000000000008 _ZN2nn6socket8resolver22SetDnsAddressesPrivateEP11sockaddr_inm +000000000035b440 g DF .text 0000000000000184 _ZNKSt3__120__time_get_c_storageIwE7__weeksEv +00000000000c8bf4 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service20IApplicationAccessorEEEvi +000000000003b8b4 g DF .text 000000000000000c _ZNK2nn4util15RelocationTable7Section12GetPtrInFileEPv +00000000003178f8 g DF .text 000000000000007c _ZN2nn3pcv15SetPowerEnabledENS0_6ModuleEb +0000000000151958 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +0000000000256d38 g DF .text 0000000000000090 _ZN2nn3web14ShowWebPageArg18SetWebAudioEnabledEb +0000000000231050 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E17GetCmifBaseObjectEv +00000000002646b4 g DF .text 0000000000000004 glslc_DebugString +00000000002282e4 g DF .text 0000000000000048 _ZN2nn3hid6system22EnableAppletToGetInputERKNS_6applet20AppletResourceUserIdEb +00000000003c400c g DF .text 0000000000000008 iconv_close +00000000007ca050 w DO .rodata 0000000000000102 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000822dc4 g DO .rodata 0000000000000004 _ZNSt3__16locale8messagesE +0000000000178fb4 g DF .text 00000000000000e0 _ZN2nn3ssl10Connection4ReadEPcj +000000000035ab2c g DF .text 00000000000001d8 _ZNSt3__115numpunct_bynameIcE6__initEPKc +0000000000121fe8 g DF .text 0000000000000008 _ZN2nn7friends16DaemonSuspensionC1Ev +0000000000165994 g DF .text 0000000000000190 _ZN2nn5prepo16SystemPlayReport4SaveEv +00000000001696f8 g DF .text 0000000000000078 _ZN2nn8settings7factory22GetAccelerometerOffsetEPNS1_19AccelerometerOffsetE +000000000017b4f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E23_nn_sf_sync_DoHandshakeEv +000000000015cb28 g DF .text 0000000000000058 _ZN2nn2oe17RequestToShutdownEv +00000000000bd8e8 g DF .text 00000000000000a8 _ZN2nn7account12AsyncContextD0Ev +00000000002294e4 g DF .text 0000000000000044 _ZN2nn3hid6system32BindJoyDetachOnBluetoothOffEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000000c0b90 g DF .text 00000000000000b8 _ZN2nn7account34NetworkServiceAccountAdministrator52ResumeProcedureToUpdateLinkageStateOfNintendoAccountEPNS0_6detail24SimpleOAuthProcedureBaseERKNS0_9SessionIdE +0000000000149564 g DF .text 0000000000000088 _ZNK2nn3ngc6detail2Bp11PrevSiblingEj +000000000025820c g DF .text 0000000000000030 nvcecInitAsyncEvents +000000000006f6a8 g DF .text 0000000000000064 _ZN2nn4lmem21AllocateFromFrameHeapEPNS0_6detail8HeapHeadEmi +0000000000329c60 w DF .text 00000000000001e8 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC1ERS3_b +0000000000343a3c w DF .text 0000000000000060 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE9__get_dayERiRS4_S4_RjRKNS_5ctypeIwEE +0000000000122988 g DF .text 0000000000000008 _ZNK2nn7friends11PlayHistory13IsLocalPlayedEv +0000000000947150 w DO .data 0000000000000018 _ZTIN2nn7account7profile8IProfileE +00000000000cb2d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_LockForegroundEv +000000000012d570 g DF .text 0000000000000058 _ZN2nn2fs31ReadSaveDataThumbnailFileHeaderEmRKNS_7account3UidEPvm +0000000000156094 g DF .text 000000000000002c _ZN2nn4nifm20CancelNetworkRequestEv +000000000013ca1c g DF .text 0000000000000024 _ZN2nn3nfp6client18GetSystemInterfaceEv +0000000000152210 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E50_nn_sf_sync_GetTelemetorySystemEventReadableHandleENS0_3OutINS0_12NativeHandleEvEE +00000000001e1d60 g DF .text 0000000000000244 FSS_get_ppem_size +0000000000264ae4 g DF .text 0000000000000004 NvOsInterruptDone +00000000003ab140 g DF .text 0000000000000038 __pthread_getlocale +0000000000152768 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +000000000019b77c g DF .text 0000000000000228 _ZN2nn5audio6server17AudioRenderSystem6UpdateEPvmS3_mPKvm +00000000003ab0d0 w DF .text 0000000000000004 pthread_create +0000000000140ff4 g DF .text 000000000000001c _ZN2nn3ngc15ProfanityFilterC1EPvmb +00000000001c3418 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetMouthTypeEi +00000000002151dc g DF .text 00000000000000b4 _ZN2nn3hid6detail21FinalizeCaptureButtonEv +00000000000332c8 g DF .text 000000000000002c nnutilZlib_deflateTune +0000000000047058 g DF .text 0000000000000038 _ZN2nn2fs6detail8IdString13ToValueStringEi +000000000094b910 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000160634 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E43_nn_sf_sync_ConfirmSystemSettingsPermissionEv +00000000007b4fa0 w DO .rodata 0000000000000020 _ZTSN2nn5fssrv2sf15IDeviceOperatorE +0000000000365f58 w DF .text 0000000000000048 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignERKS5_mm +000000000004c7b4 w DF .text 0000000000000058 _ZN2nn2fs13MemoryStorage12OperateRangeEPvmNS0_11OperationIdEllPKvm +000000000017ee30 g DF .text 0000000000000008 _ZNK2nn4time13ClockSnapshot38GetStandardNetworkSystemClockPosixTimeEv +000000000003f0e4 g DF .text 00000000000000f4 _ZN2nn4util8SNPrintfEPcmPKcz +00000000000cf790 w DF .text 0000000000000008 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm100EE27InitializeShimLibraryHolderINS_2am7service30IAllSystemAppletProxiesServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +0000000000160674 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E46_nn_sf_sync_RevertRestrictionTemporaryUnlockedEv +0000000000956d58 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags14InitialReleaseE +000000000035c1f0 g DF .text 000000000000001c _ZNSt3__110__time_getD2Ev +00000000003dfe00 w DF .text 000000000000012c __stdio_exit_needed +00000000000c5e64 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetThisAppletKindENS0_3OutINS6_10AppletKindEvEE +00000000000d7030 g DF .text 0000000000000030 _ZNK2nn4bcat21DeliveryCacheProgress20GetCurrentDownloadedEv +000000000016f2d4 g DF .text 00000000000000f8 _ZN2nn8settings6detail20SetSettingsItemValueEPKcS3_PKvm +0000000000252e2c g DF .text 00000000000003d4 _ZN2nn3web16ShowLobbyPageArgC1Ev +000000000003002c g DF .text 0000000000000064 _ZNK2nn5image13ExifExtractor18ExtractOrientationEPNS0_15ExifOrientationE +000000000014f0fc g DF .text 000000000000033c _ZN2nn3ngc6detail15CompressedArray5BuildEv +000000000015847c g DF .text 0000000000000004 _ZN2nn4nifm6detail12HttpResponseD1Ev +00000000003b8dc0 g DF .text 00000000000001e0 memmove +00000000001924dc w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_18OutRawArgumentInfoILm1ELm1ELl0EEEEEELm8ELm1ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_24OutRawClientArgumentTypeILm1ELm1EEEj +00000000001d24ec w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetDisplayServiceENS0_3OutINS0_13SharedPointerINS6_26IApplicationDisplayServiceEEEvEEj +00000000002d1108 g DF .text 0000000000000324 _ZN7android6Thread11_threadLoopEPv +00000000000d4f94 g DF .text 0000000000000074 _ZN2nn4bcat10InitializeEv +000000000016aa54 g DF .text 0000000000000044 _ZN2nn8settings6system24GetInitialLaunchSettingsEPNS1_21InitialLaunchSettingsE +0000000000325228 g DF .text 0000000000000114 _ZNSt3__111__libcpp_db16__invalidate_allEPv +00000000007e9298 g DO .rodata 0000000000000004 _ZN2nn5audio14DeviceSinkType16DownMixParameter10CoeffCountE +0000000000169534 g DF .text 0000000000000048 _ZN2nn8settings6system20SetUsbFullKeyEnabledEb +000000000018bd50 g DF .text 0000000000000174 _ZN2nn5audio16AcquireVoiceSlotEPNS0_19AudioRendererConfigEPNS0_9VoiceTypeEiiNS0_12SampleFormatEiPKvm +0000000000123180 g DF .text 000000000000014c _ZN2nn7friends11UserSetting24ChangePresencePermissionEPNS0_12AsyncContextENS0_18PresencePermissionE +00000000001d80e8 g DF .text 000000000000045c _ZN2nn6fontll6detail38PickKernXValuesFromClassPairAdjustmentEPiPNS0_15OtfKerningTableEPKvtPPKh +0000000000343a9c w DF .text 000000000000005c _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_hourERiRS4_S4_RjRKNS_5ctypeIwEE +000000000008c8f4 g DF .text 0000000000000048 _ZN2nn3mem19NumberLineAllocator4DumpEmi +000000000014ba98 g DF .text 0000000000000084 _ZN2nn3ngc6detail7SbvRankD1Ev +00000000002a7584 g DF .text 0000000000000028 _ZThn8_N7android23BnGraphicBufferConsumer17onGetNativeHandleEjRjRb +00000000003cf630 g DF .text 0000000000000054 truncf +0000000000804990 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi13EE4MaskE +0000000000a807d8 g DO .bss 00000000000000a0 _ZNSt3__14cerrE +00000000003e3ba0 g DF .text 0000000000000010 pthread_barrierattr_init +0000000000354450 g DF .text 0000000000000024 _ZNSt3__16locale5facetD0Ev +00000000001b909c g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw11GetNoseTypeEv +00000000002c6974 g DF .text 0000000000000068 _ZN7android21SurfaceComposerClient20setDisplayLayerStackERKNS_2spINS_7IBinderEEEj +00000000003cf684 g DF .text 0000000000000120 truncl +00000000000b4590 g DF .text 0000000000000078 _ZN2nn7account25SuspendBackgroundActivityEv +00000000008053d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi95EE4MaskE +000000000022ae6c g DF .text 000000000000005c _ZN2nn3hid6system15GetNpadsWithNfcEPji +00000000002d2888 g DF .text 000000000000025c _ZN7android10VectorImpl4sortEPFiPKvS2_PvES3_ +0000000000184b1c g DF .text 0000000000000008 _ZN2nn5audio15AudioBufferListINS0_13AudioInBufferEE5clearEv +000000000022c2fc g DF .text 000000000000004c _ZN2nn3hid24GetNpadCommunicationModeEv +00000000000c6cc8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_UnlockExitEv +000000000025d050 g DF .text 000000000000000c NvOsFclose +0000000000088790 g DF .text 000000000000014c _ZN2nn7nlibsdk4heap14TlsHeapCentral7IsCleanEv +00000000007e7a20 w DO .rodata 00000000000001c8 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service16ITimeZoneServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +00000000003ce040 g DF .text 00000000000000a4 round +00000000000525e4 g DF .text 00000000000000bc _ZN2nn2fs17CreatePaddingFileEl +0000000000081dcc g DF .text 000000000000005c nnmem_nlib_fd_read +0000000000150904 g DF .text 00000000000000b8 _ZN2nn4nifm6detail13RequestClient15GetRequestStateEv +00000000000d4a48 g DF .text 00000000000000e0 _ZN2nn6applet26PushToSystemGeneralChannelENS0_13StorageHandleE +00000000001737e4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_GetKeyCodeMapENS0_3OutINS_3kpr10KeyCodeMapEvEE +0000000000187770 g DF .text 000000000000001c _ZN2nn5audio19GetReverbReverbGainEPKNS0_10ReverbTypeE +000000000097e418 g DO .data 0000000000000050 _ZTVN10__cxxabiv121__vmi_class_type_infoE +00000000000a42ec g DF .text 0000000000000184 _ZN2nn6socket6detail4ReadEiPvm +00000000001a6778 g DF .text 0000000000000074 _ZN2nn5audio6server9VoiceInfo14ResetResourcesEPNS1_12VoiceContextE +000000000095bce0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail14HomeButtonLifoE +00000000003e1184 g DF .text 00000000000000c4 wcstoul +00000000000c81a0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E52_nn_sf_sync_AcquireLastForegroundCaptureSharedBufferENS0_3OutIbvEENSK_IivEE +000000000039d740 g DF .text 0000000000000090 __fixunstfsi +000000000018d8e4 g DF .text 000000000000000c _ZNK2nn5audio6common16UpdateDataHeader13GetCurrentPtrEm +0000000000323fcc g DF .text 000000000000000c _ZNKSt12bad_any_cast4whatEv +000000000019cc10 w DF .text 0000000000000068 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail14IAudioRendererES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl17AudioRendererImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6Object7ReleaseEv +000000000036117c g DF .text 0000000000000024 _ZNSt3__115recursive_mutexC1Ev +000000000000a9b0 g DF .text 0000000000000080 _ZN2nn5image6detail4jpeg19jpeg_write_m_headerEPNS2_20jpeg_compress_structEij +0000000000a882a8 g DO .bss 0000000000000008 nnmuslThreadPointerDestroyer +0000000000034928 g DF .text 0000000000000fa8 nnutilZlib_inflateBack +00000000001a52c8 g DF .text 000000000000004c _ZN2nn5audio6server12SplitterInfo10InitializeEPii +0000000000295334 g DF .text 0000000000000058 _ZN7android7BBinderD1Ev +000000000024f1f0 g DF .text 0000000000000098 _ZN2nn3hid14SetExplainTextEPNS0_20ControllerSupportArgEPKcRKj +000000000004db64 g DF .text 0000000000000164 _ZN2nn2fs6detail18FileSystemAccessor8OpenFileEPNSt3__110unique_ptrINS1_12FileAccessorENS3_14default_deleteIS5_EEEEPKcNS0_8OpenModeE +00000000001c7a34 g DF .text 000000000000000c _ZN2nn3mii13AppletManager30SetResultSuccessAppendMiiImageEi +0000000000212ee8 g DF .text 0000000000000104 TYPESET_init +00000000007b90b0 g DO .rodata 000000000000002f _ZTSN2nn2sf4hipc6server24HipcServerSessionManagerE +000000000008c7fc g DF .text 00000000000000f8 _ZN2nn3mem19NumberLineAllocator18GetAllocatableSizeEv +0000000000361e5c g DF .text 00000000000000d8 _ZNSt3__115__get_classnameEPKcb +0000000000823fc0 g DO .rodata 0000000000000017 _ZTSNSt3__112bad_weak_ptrE +0000000000123818 g DF .text 0000000000000014 _ZN2nn7friends13FriendSettingC1Ev +00000000001d48ec g DF .text 0000000000000278 _ZN2nn2vi11CreateLayerEPPNS0_5LayerEPNS0_7DisplayENS_4util10BitFlagSetILi32ENS0_10LayerFlagsEEE +00000000001bd110 g DF .text 000000000000000c _ZN2nn3mii6detail34GetVer3StoreDataDefaultCreatorNameEPNS0_8NicknameE +000000000021c284 g DF .text 0000000000000218 _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_6system18NpadSystemExtStateEiRKj +000000000023ab5c g DF .text 0000000000000034 _ZN2nn8irsensor31GetMomentProcessorDefaultConfigEPNS0_21MomentProcessorConfigE +00000000000c6fac w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_SetMediaPlaybackStateEb +0000000000187634 g DF .text 00000000000000f0 _ZN2nn5audio20SetReverbInputOutputEPNS0_10ReverbTypeEPKaS4_i +00000000001a2e64 g DF .text 0000000000000070 _ZNK2nn5audio6server15I3dl2ReverbInfo13GetWorkBufferENS1_14EffectInfoBase5IndexE +00000000000a1ba8 g DF .text 0000000000000018 nnsocketInitialize +00000000000b638c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +00000000002141bc g DF .text 0000000000000078 _ZN2nn3hid6detail22EnableAppletToGetInputERKNS_6applet20AppletResourceUserIdEb +0000000000a41498 g DO .bss 0000000000000028 _ZN2nn5album14g_LibraryStateE +0000000000954ec8 w DO .data 0000000000000068 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectESI_E6ObjectE +0000000000250b70 g DF .text 00000000000000e4 _ZN2nn3ldn6detail32CreateSystemServiceCreatorByHipcEv +00000000001a1c40 g DF .text 0000000000000084 _ZN2nn5audio6server11InfoUpdater18UpdateBehaviorInfoEPNS1_12BehaviorInfoE +0000000000820cf0 w DO .rodata 000000000000001e _ZTSN2nn3pcv6detail11IPcvServiceE +000000000039d7d0 g DF .text 00000000000000d8 __fixunstfti +000000000009ddf0 w DF .text 0000000000000004 _ZN2nn2sf4cmif6server17CmifServerMessage20EndPreparingForReplyEv +00000000003a5950 g DF .text 0000000000000210 __atomic_exchange +0000000000948710 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000002c99ec g DF .text 0000000000000024 _ZN7android13GraphicBufferD0Ev +0000000000315070 g DF .text 0000000000000058 _ZN2nn4gpio8GetValueEPNS0_14GpioPadSessionE +000000000094c710 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IDisplayControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000945a00 g DO .data 0000000000000018 _ZTIN2nn2os6detail29MultiWaitHolderOfNativeHandleE +0000000000979638 w DO .data 0000000000000050 _ZTVNSt3__113basic_ostreamIwNS_11char_traitsIwEEEE +0000000000315540 g DF .text 0000000000000058 _ZN2nn4gpio15GetDebounceTimeEPNS0_14GpioPadSessionE +000000000014dba0 g DF .text 0000000000000024 _ZNK2nn3ngc6detail3Sbv7Select1Ej +00000000002d3188 g DF .text 0000000000000064 _ZN7android10VectorImpl13finish_vectorEv +000000000024bfc8 g DF .text 000000000000000c _ZN2nn3kpr6detail34GetKeyCodeComposerCompositionCountERKNS1_22KeyCodeComposerStorageE +00000000007ca990 w DO .rodata 0000000000000103 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000009558e0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_EE +00000000000b5ff4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEE24_nn_sf_sync_GetAccountIdENS0_3OutINS5_23NetworkServiceAccountIdEvEE +00000000001891dc g DF .text 00000000000000c0 _ZN2nn5audio14MemoryPoolInfo8SetStateENS1_5StateE +00000000001d3cfc g DF .text 0000000000000070 _ZN2nn2vi18SetDisplayRgbRangeEPNS0_7DisplayENS0_8RgbRangeE +00000000000e6b94 g DF .text 00000000000006f8 opus_custom_encoder_ctl +0000000000108c90 g DF .text 0000000000000730 silk_solve_LDL_FIX +000000000029dd40 g DF .text 000000000000002c _ZN7android6Parcel11setDataSizeEm +00000000001224d0 g DF .text 0000000000000024 _ZNK2nn7friends13FriendRequest6IsReadEv +000000000016c7a0 g DF .text 00000000000000c4 _ZN2nn8settings6detail27GetBluetoothDevicesSettingsEPiPNS0_6system24BluetoothDevicesSettingsEi +000000000036531c w DF .text 00000000000000ec _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6__initEmw +00000000003ce674 g DF .text 0000000000000028 significand +00000000003ddc80 g DF .text 0000000000000078 fwscanf +00000000000603dc g DF .text 00000000000000c4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter19DoGetTotalSpaceSizeEPlPKc +0000000000238d9c g DF .text 00000000000000e4 _ZN2nn8irsensor6detail13StatusManager8FreeLifoERKNS0_14IrCameraHandleE +0000000000346f28 w DF .text 0000000000000008 _ZNKSt3__110moneypunctIcLb0EE14do_frac_digitsEv +00000000000c4278 g DF .text 0000000000000114 _ZN2nn2am31FinalizeOverlayAppletInterfacesEv +00000000000cad58 w DF .text 000000000000022c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_20InHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSK_ILm1ELm1ELl0EEEEEELm16ELm0ELb0EEESN_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_26InHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENSW_ILm1ELm1EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000140008 g DF .text 000000000000001c _ZN2nn3nfp5MountERKNS0_12DeviceHandleENS0_9ModelTypeE +00000000001c3428 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetMouthColorEi +000000000095d7d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEEvEE +00000000007ca780 w DO .rodata 000000000000010b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001925dc w DF .text 00000000000001a4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi5ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEEEEELm8ELm0ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSM_23InRawClientArgumentTypeILm8ELm8EvEENSM_26InHandleClientArgumentTypeEj +00000000003a8fcc g DF .text 0000000000000148 initstate +000000000011c8e4 g DF .text 000000000000005c _ZN2nn7friends6detail16PresenceAccessor9VerifyKeyEPKcm +000000000039cd84 g DF .text 00000000000000d4 __cmptf2 +000000000032be88 w DF .text 0000000000000148 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE7putbackEc +000000000022203c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm8EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +0000000000959430 w DO .data 0000000000000018 _ZTIN2nn3mii6detail14IStaticServiceE +000000000022e010 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm5EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +0000000000171314 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +0000000000091128 g DF .text 0000000000000008 _ZN2nn2dd23GetCurrentProcessHandleEv +00000000003dc8b0 w DF .text 0000000000000038 ferror_unlocked +0000000000070438 g DF .text 0000000000000084 _ZN2nn4lmem6detail13AdjustExpHeapEPNS1_8HeapHeadE +0000000000259b64 g DF .text 000000000000010c nvdcSetAviInfoframe +0000000000943ae0 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf19ISaveDataInfoReaderE +00000000000d0624 g DF .text 000000000000009c _ZN2nn3apm18GetPerformanceModeEv +00000000000feb58 g DF .text 0000000000000088 silk_sigm_Q15 +000000000020f2bc g DF .text 000000000000006c FsScratchSpace_init +000000000020413c g DF .text 0000000000000238 count_points +00000000003331c0 w DF .text 0000000000000064 _ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEE4swapERS3_ +0000000000164ffc g DF .text 00000000000000fc _ZN2nn5prepo27IsUserAgreementCheckEnabledEPb +000000000018ba7c g DF .text 000000000000000c _ZN2nn5audio23SplitterDestinationData18GetInParameterSizeEi +0000000000120c0c g DF .text 00000000000000c0 _ZN2nn7friends32DeleteNetworkServiceAccountCacheERKNS_7account3UidE +000000000009ee80 w DF .text 0000000000000040 _ZN2nn2sf4cmif6server22CmifDomainServerObject14ProcessMessageEPNS0_14IServiceObjectEPNS2_17CmifServerMessageERKNS0_6detail14PointerAndSizeE +00000000002cef50 g DF .text 0000000000000040 _ZN7android7String8C1ERKNS_8String16E +00000000001884b8 g DF .text 000000000000000c _ZN2nn5audio25GetI3dl2ReverbHfReferenceEPKNS0_15I3dl2ReverbTypeE +0000000000816f60 g DO .rodata 0000000000000020 _ZTSN7android19IGraphicBufferAllocE +00000000000a0310 g DF .text 0000000000000048 _ZN2nn2sf4hipc13CreateSessionEPNS_3svc6HandleES4_ +00000000001a8ee0 g DF .text 0000000000000008 _ZNK2nn5audio3dsp20CommandListProcessor19GetTargetSampleRateEv +000000000097ce10 g DO .data 0000000000000018 _ZTINSt3__111regex_errorE +0000000000091310 g DF .text 0000000000000004 nnosChangeThreadPriority +000000000002ba54 g DF .text 0000000000000094 _ZN2nn5image6detail18HandleLibjpegErrorEPNS1_4jpeg18jpeg_common_structE +00000000003bace0 g DF .text 0000000000000030 csinf +00000000007d4be4 g DO .rodata 0000000000000003 silk_uniform3_iCDF +00000000003bad10 g DF .text 000000000000029c csinh +00000000000b9c5c w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE38_nn_sf_sync_GetUserStateChangeNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +0000000000122aa8 g DF .text 00000000000000dc _ZN2nn7friends12UserPresence11SetAppValueEPKcS3_ +000000000009071c g DF .text 0000000000000018 _ZN2nn2os17ConvertToTimeSpanENS0_4TickE +0000000000323fa0 g DF .text 000000000000002c _ZNSt3__18__rs_getEv +00000000007b85e0 w DO .rodata 0000000000000031 _ZTSN2nn2os6detail31MultiWaitHolderOfUserWaitObjectE +00000000001d057c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_CreateSharedBufferProcessHeapENS0_3OutINS_2vi7fbshare18SharedBufferHandleEvEEmRKNSI_22SharedMemoryPoolLayoutE +0000000000018440 g DF .text 00000000000000f0 _ZN2nn5image6detail4jpeg19jinit_arith_decoderEPNS2_22jpeg_decompress_structE +00000000003bb278 g DF .text 0000000000000050 csinl +00000000007c9100 w DO .rodata 00000000000000f9 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001765e8 w DF .text 00000000000000f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm4ELl0EEEEEELm0ELm8ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm4EEEj +00000000008209c0 w DO .rodata 00000000000000fc _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000006eda4 g DF .text 0000000000000004 InitLibc0 +00000000007be4d0 w DO .rodata 00000000000001ac _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000805890 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi229EE4MaskE +0000000000236330 g DF .text 0000000000000028 _ZN2nn8irsensor6detail18MakeIrCameraHandleEPNS0_14IrCameraHandleERKj +000000000006eda8 g DF .text 0000000000000004 InitLibc1 +0000000000947548 w DO .data 0000000000000080 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas21IAuthorizationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +000000000006edac g DF .text 0000000000000004 InitLibc2 +0000000000953160 g DO .data 0000000000000048 _ZTVN2nn3ngc15ProfanityFilterE +0000000000a2d170 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_3hid6detail9HidServerEE8_globalsE +000000000097aff0 g DO .data 0000000000000018 _ZTINSt3__116__narrow_to_utf8ILm32EEE +0000000000065b34 w DF .text 0000000000000048 _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEED0Ev +000000000022b2f0 g DF .text 0000000000000044 _ZN2nn3hid27BindNpadStyleSetUpdateEventERKjPNS_2os15SystemEventTypeENS3_14EventClearModeE +0000000000259390 g DF .text 0000000000000050 nvdcEventVblank +00000000001c32b8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw10SetFaceTexEi +000000000031a014 g DF .text 0000000000000010 _ZN2nn3pwm12CloseSessionEPNS0_14ChannelSessionE +000000000019d974 g DF .text 0000000000000214 _ZN2nn5audio6server13CommandBuffer23GenerateVoiceMixCommandEPKNS1_9VoiceInfoEPKfS7_PNS0_10VoiceStateEiiiij +00000000002cb38c g DF .text 0000000000000030 _ZN7android6RegionC1ERKS0_ +000000000013e7f8 g DF .text 0000000000000048 _ZN2nn3nfp14IsErrorVisibleEv +00000000003e0f68 g DF .text 0000000000000094 strtoumax +00000000003e2648 g DF .text 0000000000000038 strnlen +0000000000122a14 g DF .text 0000000000000030 _ZN2nn7friends12UserPresence5ClearEv +00000000000c7fc8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_TakeScreenShotOfOwnLayerEib +00000000002c6db0 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient19setDisplayPowerModeERKNS_2spINS_7IBinderEEEi +000000000095bca8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail14HomeButtonLifoE +0000000000229708 g DF .text 0000000000000064 _ZN2nn3hid20GetJoyXpadLeftStatesEPNS0_12JoyXpadStateEiRKNS0_9JoyXpadIdE +0000000000213d4c g DF .text 00000000000001b0 CACHE_ENTRY_calloc +00000000002a648c g DF .text 0000000000000084 thread_store_set +00000000003ab0dc g DF .text 0000000000000004 __pthread_join +000000000000362c g DF .text 0000000000000010 _ZN2nn6crypto6detail19alg_init_p256_ECDSAEPNS1_17p256_ec_parameterE +000000000013faac g DF .text 0000000000000108 _ZN2nn3nfp14StartFormatterEPNS0_7TagInfoEPNS0_12DeviceHandleERKNS0_24AmiiboSettingsStartParamE +00000000002459e0 w DF .text 00000000000001c4 _ZN22nerd_gillette_internal5otete11ImageCodec223EncodeInPlaceOnlyQuintsINS0_17MaxSizedBitStreamILm876EEENS_15StaticImageViewIKhEEEEbRT_RKNS5_IhEERKT0_ +000000000002f678 g DF .text 0000000000000014 _ZN2nn5image11ExifBuilder11SetUniqueIdEPKcm +00000000003c8804 g DF .text 0000000000000174 erfc +000000000095f3b8 g DO .data 00000000000002a8 HMI_gralloc +0000000000804f30 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi58EE4MaskE +00000000002cf048 g DF .text 000000000000002c _ZN7android7String8C2EPKDsm +00000000001585b0 g DF .text 000000000000008c _ZN2nn3nsd14ImportSettingsEPKvmPvmNS0_10ImportModeE +0000000000327690 g DF .text 0000000000000048 _ZNSt3__113shared_futureIvEaSERKS1_ +00000000003c8978 g DF .text 0000000000000164 erff +000000000014c660 w DF .text 00000000000000e0 _ZN2nn3ngc6detail12PlainArray32IjE4InitEj +0000000000220638 g DF .text 000000000000000c _ZN2nn3hid6detail34GetSixAxisSensorHandlePlayerNumberERKNS0_19SixAxisSensorHandleE +00000000000003dc g DF .text 00000000000001cc _ZN2nn6crypto16DecryptAes128CcmEPvmS1_mPKvmS3_mS3_mS3_mm +0000000000075af8 g DF .text 0000000000000050 nnmem_nlib_wcscplen +00000000009aeca0 w DO .bss 0000000000000830 _ZN2nn2sf22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEE8_globalsE +000000000018cadc g DF .text 00000000000000e8 _ZN2nn5audio16VoiceInfoManager16ReleaseVoiceInfoEPNS0_9VoiceInfoE +000000000036cda8 g DF .text 0000000000000024 _ZNSt3__16threadD2Ev +0000000000263938 g DF .text 0000000000000008 NvOsTlsFree +00000000000bacb8 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_4baas28IFloatingRegistrationRequestEEEvi +00000000003c8f60 g DF .text 000000000000001c erfl +00000000001002f4 g DF .text 0000000000000108 silk_sum_sqr_shift +00000000001901e4 g DF .text 000000000000005c _ZN2nn5audio30RequestResumeAudioOutsForDebugENS_6applet20AppletResourceUserIdE +00000000001c35d8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding7Ei +0000000000347558 g DF .text 00000000000002bc _ZNSt3__117moneypunct_bynameIcLb1EE4initEPKc +0000000000979ba8 w DO .data 0000000000000040 _ZTVNSt3__17collateIwEE +000000000006f650 g DF .text 0000000000000058 _ZN2nn4lmem21AllocateFromFrameHeapEPNS0_6detail8HeapHeadEm +0000000000161034 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E51_nn_sf_sync_SynchronizeParentalControlSettingsAsyncENS0_3OutINS6_9AsyncDataEvEENSL_INS0_12NativeHandleEvEE +0000000000091644 g DF .text 0000000000000030 _ZN2nn2os6detail23AttachInterProcessEventEPNS1_21InterProcessEventTypeEjbjbNS0_14EventClearModeE +0000000000078364 g DF .text 0000000000000074 nnmem_nlib_dirname +00000000003ab0b4 g DF .text 0000000000000004 pthread_cond_broadcast +0000000000215828 g DF .text 0000000000000224 _ZN2nn3hid6detail34GetConsoleSixAxisSensorCountStatesEPiPNS0_3tmp23SixAxisSensorCountStateEiNS0_26ConsoleSixAxisSensorHandleE +00000000002b3ca4 g DF .text 0000000000000068 _ZNK7android12ConsumerBase4dumpERNS_7String8EPKc +0000000000189b60 g DF .text 0000000000000070 _ZN2nn5audio15PerformanceInfo9SetBufferEPKvm +0000000000331230 w DF .text 0000000000000004 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEElsEPFRS3_S4_E +0000000000081a1c g DF .text 0000000000000048 nnmem_nlib_thread_detach +00000000000914a4 g DF .text 0000000000000004 nnosWaitAny +00000000001a3014 g DF .text 000000000000000c _ZN2nn5audio6server13EffectContextC2Ev +000000000095bbb8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail17NpadSystemExtLifoE +000000000008d5dc g DF .text 0000000000000008 _ZN2nn2os18FinalizeLightEventEPNS0_14LightEventTypeE +000000000006c7b0 g DF .text 0000000000000030 _ZN2nn2fs6detail27StorageServiceObjectAdapterC1EONS_2sf13SharedPointerINS_5fssrv2sf8IStorageEEE +00000000002aaf34 g DF .text 0000000000000038 _ZN7android18BufferItemConsumerD0Ev +00000000001a5504 g DF .text 0000000000000010 _ZNK2nn5audio6server15SplitterContext7GetDataEi +0000000000399bb4 g DF .text 0000000000000058 unw_iterate_dwarf_unwind_cache +0000000000111cec g DF .text 0000000000001a74 run_analysis +00000000007c4cd0 w DO .rodata 0000000000000102 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000003cd39c g DF .text 00000000000000b4 nextafterf +00000000000c7a40 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000328e48 w DF .text 0000000000000014 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED1Ev +00000000001ce3ec w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +000000000018676c g DF .text 0000000000000048 _ZN2nn5audio11RemoveDelayEPNS0_19AudioRendererConfigEPNS0_9DelayTypeEPNS0_10SubMixTypeE +00000000002bdd10 g DF .text 0000000000000044 _ZTv0_n24_N7android22ISurfaceComposerClientD0Ev +000000000009ad18 w DF .text 0000000000000008 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain9GetDomainEv +00000000007e54c0 g DO .rodata 000000000000001d _ZTSN2nn3ssl6detail10SslApiBaseE +00000000003cd450 g DF .text 0000000000000140 nextafterl +0000000000131848 w DF .text 00000000000001f4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl68EEENSC_21OutObjectArgumentInfoILi0ELi0EEENSG_ILm66ELm2ELl0EEEEEELm0ELm72ELb0EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutObjectClientArgumentTypeENSS_ILm66ELm2EEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000a0664 g DF .text 0000000000000050 _ZN2nn2sf4hipc19RegisterHipcServiceEPNS_3svc6HandleEiPKc +000000000006c278 g DF .text 00000000000000bc _ZN2nn2fs23SetSdCardEncryptionSeedERKNS0_14EncryptionSeedE +00000000008028b4 g DO .rodata 0000000000000004 _ZN2nn2vi6detail18IndirectLayerTable8CapacityE +000000000039f314 g DF .text 0000000000000038 __cmpti2 +00000000000197e8 g DF .text 0000000000000174 _ZN2nn5image6detail4jpeg23jinit_d_coef_controllerEPNS2_22jpeg_decompress_structEb +000000000003c6d4 g DF .text 000000000000000c _ZN2nn4util23GetGzipDecompressedSizeEPKvm +000000000023277c w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E31_nn_sf_sync_SendVibrationValuesENS_6applet20AppletResourceUserIdERKNS0_7InArrayINS5_21VibrationDeviceHandleEEERKNSM_INS5_14VibrationValueEEE +00000000000cb310 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_PopFromGeneralChannelENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEE +000000000018a8c0 g DF .text 0000000000000058 _ZNK2nn5audio11SinkManager15IsValidSinkInfoEPKNS0_8SinkInfoE +00000000001cd090 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +0000000000286e4c g DF .text 000000000000000c NvRmGpuRegOpsSessionSetTimeoutMode +0000000000168eb4 g DF .text 0000000000000044 _ZN2nn8settings6system23BindFatalDirtyFlagEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000090e78 g DF .text 000000000000004c _ZN2nn2os17CloseNativeHandleEj +00000000007e7390 w DO .rodata 00000000000001c4 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISteadyClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +0000000000174104 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E32_nn_sf_sync_SetBacklightSettingsERKNS5_6system17BacklightSettingsE +000000000094d030 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000232548 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E33_nn_sf_sync_StartLrAssignmentModeENS_6applet20AppletResourceUserIdE +00000000000439d0 w DF .text 000000000000087c _ZN2nn2sf4hipc6client28Hipc2ClientCoreProcessorImpl19WriteBufferDataImplEPNS1_6detail17HipcMessageWriterEiPKNS0_6detail14PointerAndSizeEPKimm +00000000001a1a88 g DF .text 0000000000000118 _ZN2nn5audio6server11InfoUpdater17UpdateMemoryPoolsEPNS1_14MemoryPoolInfoEi +0000000000212494 g DF .text 00000000000000d0 swap_hhea +0000000000231b7c g DF .text 00000000000001f8 _ZN2nn3hid6detail20CreateHidServerProxyEPNS_2sf13SharedPointerINS0_10IHidServerEEE +00000000001c5244 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding4Ev +000000000020f228 g DF .text 0000000000000094 FsScratchSpace_new +00000000003966ac g DF .text 0000000000000054 _ZNSt12domain_errorD1Ev +0000000000a834a0 w DO .bss 0000000000000004 signgam +00000000000c5a14 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEE39_nn_sf_sync_GetProcessWindingControllerENS0_3OutINS0_13SharedPointerINS6_25IProcessWindingControllerEEEvEE +00000000007ba670 w DO .rodata 0000000000000018 _ZTSN2nn6socket2sf7IClientE +000000000025b020 g DF .text 0000000000000078 nvdcutilVirtualEdidDisable +00000000001a5498 g DF .text 0000000000000008 _ZN2nn5audio6server12SplitterInfo22ClearNewConnectionFlagEv +00000000009474f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +0000000000174f1c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_GetInRepairProcessEnableFlagENS0_3OutIbvEE +000000000003bc1c g DF .text 0000000000000088 _ZN2nn4util8BitArray3setEv +000000000095d100 w DO .data 0000000000000018 _ZTIN2nn3hid15IAppletResourceE +00000000000a121c w DF .text 00000000000000e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm1ELl0EEEEEELm8ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm1EvEEj +00000000000c1b10 g DF .text 0000000000000030 _ZN2nn7account31NintendoAccountLinkageProcedureC1EOS1_ +000000000017494c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_GetSleepSettingsENS0_3OutINS5_6system13SleepSettingsEvEE +000000000011d998 g DF .text 000000000000002c _ZN2nn7friends29DeclareCloseOnlinePlaySessionEv +00000000002746b8 g DF .text 0000000000000048 NvRmFencePutToFile +00000000007e92a8 g DO .rodata 0000000000000004 _ZN2nn5audio6common13NodeIdManager12VariationMaxE +0000000000258cc0 g DF .text 0000000000000008 nvdcSetCursorImage +00000000007ac684 g DO .rodata 0000000000001000 _ZN2nn4util6detail17SinCosSampleTableE +00000000000671a4 g DF .text 0000000000000178 _ZN2nn2fs14DeleteSaveDataENS0_15SaveDataSpaceIdEm +000000000097b5c8 g DO .data 0000000000000060 _ZTVNSt3__120__codecvt_utf8_utf16IwEE +0000000000155df0 g DF .text 00000000000000bc _ZN2nn4nifm26GetCurrentPrimaryIpAddressEP7in_addr +00000000002277d8 g DF .text 00000000000000a8 _ZN2nn3hid6detail19SendVibrationValuesEPKNS0_21VibrationDeviceHandleEPKNS0_14VibrationValueEi +00000000000747f0 w DF .text 0000000000000068 nnmem_nlib_strncpy +00000000001bb11c g DF .text 00000000000000a4 _ZN2nn3mii6detail14CalculateCrc16EPKvit +00000000001d67fc g DF .text 000000000000015c _ZN2nn2vi6detail18SystemServiceProxy8FinalizeEv +0000000000357614 g DF .text 0000000000000070 _ZNKSt3__17codecvtIwc11__mbstate_tE13do_max_lengthEv +000000000005f978 g DF .text 0000000000000024 _ZN2nn2fs6detail24FileServiceObjectAdapter9DoGetSizeEPl +000000000019295c w DF .text 00000000000001e4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi34ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_24OutRawClientArgumentTypeILm4ELm4EEEj +0000000000199dfc g DF .text 0000000000000064 _ZN2nn5audio34RequestSuspendFinalOutputRecordersENS_6applet20AppletResourceUserIdENS_8TimeSpanE +00000000001a2934 g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase13GetWorkBufferENS2_5IndexE +00000000001ad8a0 g DF .text 0000000000000360 _ZN2nn5audio19I3dl2Reverb1ChannelEPNS0_16I3dl2ReverbStateEPPKiPPij +00000000001e82d8 g DF .text 0000000000000068 unload_cff +00000000002a4814 g DF .text 0000000000000034 _ZN7android14IPCThreadStateD1Ev +00000000009477f0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas18IGuestLoginRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000950610 w DO .data 0000000000000010 _ZTIN2nn5codec12IOpusEncoderE +00000000007d7d10 w DO .rodata 0000000000000029 _ZTSN2nn7friends6detail3ipc14IFriendServiceE +000000000080592c g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout15RussianCyrillicE +00000000000f9a08 g DF .text 00000000000001ec silk_decode_frame +0000000000338f8c w DF .text 00000000000004ac _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedItEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000003cb950 g DF .text 000000000000071c __lgamma_r +00000000001819f0 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi22ELm16384EEENSC_17InRawArgumentInfoILm36ELm1ELl0EEEEEELm36ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm36ELm1EvEEj +00000000001c3258 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetFavoriteEi +00000000003a4b9c g DF .text 0000000000000040 __ucmpdi2 +00000000000a9844 w DF .text 0000000000000178 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSJ_ILm4ELm4ELl4EEENSJ_ILm4ELm4ELl8EEEEEELm12ELm8ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESV_NS2_23InRawClientArgumentTypeILm4ELm4EvEESX_SX_j +000000000026366c g DF .text 0000000000000028 NvOsEventClear +00000000003e3cd8 g DF .text 000000000000000c gmtime +000000000094c990 w DO .data 0000000000000018 _ZTIN2nn2am7service20IApplicationAccessorE +00000000002649e0 g DF .text 00000000000000c8 NvOsTelemetrySubmitData +000000000094d1c0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000002b3598 g DF .text 0000000000000068 _ZTv0_n40_N7android12ConsumerBase15onLastStrongRefEPKv +0000000000172684 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_SetWebInspectorFlagEb +00000000002174c8 g DF .text 0000000000000070 _ZN2nn3hid6detail27SetHomeButtonAutoPilotStateERKNS0_5debug24HomeButtonAutoPilotStateE +00000000003c2644 g DF .text 0000000000000010 __islower_l +00000000001a6014 g DF .text 0000000000000058 _ZN2nn5audio6server9VoiceInfo14WriteOutStatusEPNS0_9VoiceInfo9OutStatusEPKNS3_11InParameterEPPNS0_10VoiceStateE +000000000015d7d0 g DF .text 000000000000005c _ZN2nn4pctl26GetStereoVisionRestrictionEv +00000000001c66a4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E21_nn_sf_sync_FindIndexENS0_3OutIivEERKNS5_8CreateIdEb +0000000000180e1c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +0000000000125c88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_GetReceivedFriendRequestCountENS0_3OutIivEESM_RKNS_7account3UidE +00000000001c3458 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw9SetMouthYEi +00000000001750b4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E32_nn_sf_sync_SetAppletLaunchFlagsENS_4util10BitFlagSetILi32ENS5_6system16AppletLaunchFlagEEE +0000000000955670 w DO .data 0000000000000018 _ZTIN2nn8settings21ISystemSettingsServerE +0000000000959210 g DO .data 0000000000000018 _ZTIN2nn5audio6server22CircularBufferSinkInfoE +000000000013b6c4 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSG_ILm4ELm4ELl8EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm12ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENSS_ILm4ELm4EvEENS2_24BufferClientArgumentTypeEj +0000000000359d94 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDiLb1EE11do_encodingEv +00000000003ab0f0 g DF .text 0000000000000004 pthread_mutex_init +00000000003d977c g DF .text 0000000000000084 regerror +0000000000189888 g DF .text 000000000000000c _ZNK2nn5audio10MixManager21GetFinalMixSampleRateEv +00000000001b6204 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor11GetHairFlipEv +000000000031a1c8 g DF .text 0000000000000058 _ZN2nn3pwm10GetEnabledEPNS0_14ChannelSessionE +0000000000824130 g DO .rodata 0000000000000017 _ZTSNSt3__112system_errorE +0000000000124830 g DF .text 000000000000001c _ZN2nn7friends6detail20AsyncContextInternalC2Ev +000000000017b024 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_ImportClientPkiENS0_3OutImvEERKNS0_8InBufferESQ_ +000000000005dd14 w DF .text 000000000000016c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm8ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSI_ILm1ELm1ELl0EEEEEELm16ELm16ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm8EEENS2_23InRawClientArgumentTypeILm8ELm8EvEENSU_ILm1ELm1EvEEj +0000000000072fe0 g DF .text 000000000000018c nnmem_nlib_memchr_not_generic +000000000003b698 g DF .text 0000000000000008 _ZN2nn4util16BinaryFileHeader11SetFileSizeEm +000000000004c544 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem17DoDeleteDirectoryEPKc +00000000000cec20 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000152980 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E22_nn_sf_sync_SetInstantEb +000000000015e148 g DF .text 0000000000000058 _ZN2nn4pctl25GetPlayTimerRemainingTimeEv +00000000003c275c g DF .text 0000000000000030 __iswalnum_l +00000000009593d8 w DO .data 0000000000000058 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001d78ec g DF .text 0000000000000088 _ZN2nn6fontll6detail11SkipXValuesEPPKht +00000000001aa494 g DF .text 00000000000000b8 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue10InitializeEv +00000000001bc7f8 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw18GetFacelineWrinkleEv +00000000001580fc w DF .text 00000000000001f0 _ZN2nn4util4Uuid10FromStringEPKc +0000000000296e70 g DF .text 0000000000000058 _ZN7android10IInterface8asBinderERKNS_2spIS0_EE +00000000003d26d4 g DF .text 00000000000000ec mbrtoc16 +00000000001d7524 g DF .text 000000000000007c _ZN2nn2vi6buffer11BufferQueue11QueueBufferEPPv +000000000024bdac g DF .text 0000000000000028 _ZN2nn3kpr15KeyCodeComposer7SetModeENS0_19KeyCodeComposerModeE +00000000003c3328 g DF .text 0000000000000244 scandir +0000000000803970 w DO .rodata 000000000000004e _ZTSN2nn3hid6detail8RingLifoINS0_13DebugPadStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000000063e8 g DF .text 00000000000004a8 _ZN2nn6crypto6detail8Sha1Impl6UpdateEPKvm +00000000000a1988 g DF .text 0000000000000004 _ZN2nn6socket9InetHtonlEj +000000000022d834 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm16EEEvPNS0_16TouchScreenStateIXT_EEE +0000000000057328 w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEEEEELm0ELm8ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEEj +0000000000314780 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_8DebuggerEEEEES7_E22_nn_sf_sync_InitializeENS0_3OutINS0_12NativeHandleEvEEOSL_m +00000000007e36b0 w DO .rodata 000000000000010b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000007edef0 w DO .rodata 0000000000000023 _ZTSN2nn5audio6detail14IAudioRendererE +00000000001c670c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_DeleteERKNS5_8CreateIdE +00000000001987cc g DF .text 00000000000000b4 _ZN2nn5audio25GetReleasedAudioOutBufferEPNS0_8AudioOutE +000000000095bf60 w DO .data 0000000000000018 _ZTIN2nn3hid6detail27SixAxisSensorCountStateLifoE +0000000000979198 g DO .data 0000000000000008 _ZNSt3__123__libcpp_debug_functionE +0000000000348b94 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb1EE14do_frac_digitsEv +0000000000122f2c g DF .text 000000000000000c _ZN2nn7friends12ProfileExtraC1Ev +000000000032454c g DF .text 0000000000000014 _ZNSt3__124__libcpp_debug_exceptionC2Ev +0000000000395e38 g DF .text 000000000000000c _ZNKSt16bad_array_length4whatEv +00000000000d45bc g DF .text 0000000000000134 _ZN2nn6applet18UnmapHandleStorageENS0_13StorageHandleE +0000000000170dd4 g DF .text 0000000000000050 _ZN2nn8settings6detail22SetDebugPadKeyboardMapERKNS0_19DebugPadKeyboardMapE +00000000001e2b10 g DF .text 00000000000000b8 FSS_new_client +00000000000cca60 w DF .text 000000000000013c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +0000000000216508 g DF .text 0000000000000078 _ZN2nn3hid5debug6detail18GetFirmwareVersionEPNS0_6system15FirmwareVersionEjNS_4util10BitFlagSetILi32ENS3_10DeviceTypeEEE +000000000021ccd8 g DF .text 00000000000000bc _ZN2nn3hid6detail25GetGyroscopeZeroDriftModeEPNS0_22GyroscopeZeroDriftModeENS0_19SixAxisSensorHandleE +000000000032c6cc w DF .text 00000000000001f0 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE6sentryC2ERS3_b +00000000000c196c g DF .text 0000000000000020 _ZN2nn7account8NotifierC2EOS1_ +00000000001bb8d0 g DF .text 0000000000000040 _ZN2nn3mii6detail19GetMergedRegionCodeEv +0000000000946840 w DO .data 0000000000000018 _ZTIN2nn6socket2sf7IClientE +0000000000188e7c g DF .text 000000000000000c _ZN2nn5audio17GetFinalMixVolumeEPKNS0_12FinalMixTypeE +00000000001e90fc g DF .text 0000000000000200 map_font +000000000024d278 g DF .text 00000000000000b4 _ZN2nn5album22SaveAndShareScreenshotEPKvmNS0_9ImageSizeENS0_17AlbumReportOptionERKNS_7account3UidE +00000000000c5e44 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_ReceiveMessageENS0_3OutINS5_13AppletMessageEvEE +00000000007f05b0 w DO .rodata 0000000000000119 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail14IAudioRendererES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl17AudioRendererImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6ObjectE +0000000000118900 g DF .text 0000000000000018 _ZN2nn5codec22OpusMultiStreamDecoder8FinalizeEv +00000000000cc610 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_PopExtraStorageENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEE +00000000000b4ea8 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi10ELm0EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +00000000000d0c68 w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm4EE27InitializeShimLibraryHolderINS_3apm8IManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS5_EEE_clESH_ +000000000017a9b8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6Object12AddReferenceEv +0000000000257a54 g DF .text 0000000000000090 _ZN2nn3web15ShowNewsPageArg43SetMediaPlayerUserGestureRestrictionEnabledEb +000000000025d05c g DF .text 0000000000000004 NvOsFwrite +000000000034715c g DF .text 00000000000002bc _ZNSt3__117moneypunct_bynameIcLb0EE4initEPKc +000000000021063c g DF .text 000000000000032c get_os2 +0000000000250478 g DF .text 0000000000000034 _ZN2nn3ldn10DisconnectEv +00000000000cc520 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_CanUseApplicationCoreENS0_3OutIbvEE +00000000007e16b0 w DO .rodata 00000000000001a9 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15INetworkProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000001c9f60 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard15SetCustomizeDicEPKvmRKNS0_16CustomizeDicInfoE +00000000001bae68 g DF .text 0000000000000020 _ZN2nn3mii6detail10NicknameLe17SetByLittleEndianEPt +00000000007c7fc0 w DO .rodata 0000000000000151 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service25IProcessWindingControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003e929c g DF .text 000000000000000c call_atomic_a_crash +0000000000111af8 g DF .text 00000000000001f4 tonality_get_info +000000000017abb4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E17GetCmifBaseObjectEv +0000000000358234 g DF .text 0000000000000068 _ZNKSt3__17codecvtIDic11__mbstate_tE5do_inERS1_PKcS5_RS5_PDiS7_RS7_ +000000000018d378 g DF .text 0000000000000008 _ZN2nn5audio6common10NodeStates5TsortERNS1_10EdgeMatrixE +0000000000096334 g DF .text 00000000000000ac _ZN2nn2os6detail30InterProcessEventImplByHorizon6CreateEPjS3_ +0000000000122dcc g DF .text 000000000000000c _ZN2nn7friends7ProfileC1Ev +00000000000a1a50 g DF .text 000000000000000c _ZN2nn6socket13GetHostByAddrEPKvji +000000000018bab8 g DF .text 0000000000000008 _ZNK2nn5audio23SplitterDestinationData12NeedToUpdateEv +00000000002d1494 g DF .text 00000000000000ac _ZN7android6Thread4joinEv +00000000000c8a78 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IDebugFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000007ada94 g DO .rodata 0000000000000004 _ZN2nn4util6detail15FloatPiDivided2E +00000000001c7494 g DF .text 0000000000000010 _ZN2nn3mii11AppletInput14InitializeImplENS0_10AppletModeEi +00000000001e2f30 g DF .text 000000000000000c FSS_set_outline +0000000000233860 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000029e704 g DF .text 0000000000000034 _ZNK7android6Parcel14checkInterfaceEPNS_7IBinderE +00000000002c5bb0 g DF .text 0000000000000278 _ZN7android21SurfaceComposerClient15getClientLayersERKN2nn6applet20AppletResourceUserIdERNS_6VectorINS_2spINS_14SurfaceControlEEEEE +0000000000231f68 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E27_nn_sf_sync_ActivateJoyXpadENS5_9JoyXpadIdE +00000000003d1db4 g DF .text 00000000000002d4 getopt +000000000039c6b8 g DF .text 00000000000000ac _Unwind_Resume +00000000003ab1dc g DF .text 0000000000000004 sem_destroy +00000000002c9308 g DF .text 00000000000000e0 _ZN7android10FrameStats9unflattenEPKvm +00000000002b3600 g DF .text 00000000000000a8 _ZN7android12ConsumerBase16freeBufferLockedEi +0000000000091014 g DF .text 00000000000000b0 _ZN2nn2os17GetLastThreadInfoEPPNS0_10ThreadTypeEPNS0_20SdkLastThreadContextEPj +00000000003e4984 g DF .text 00000000000002e0 __secs_to_tm +000000000008f64c g DF .text 000000000000008c _ZN2nn2os18TryAcquireReadLockEPNS0_20ReaderWriterLockTypeE +00000000000b77c0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE12GetProxyInfoEv +0000000000263878 g DF .text 0000000000000004 NvOsMutexUnlock +0000000000122cec g DF .text 0000000000000004 _ZNK2nn7friends14FriendPresence24GetLastPlayedApplicationEv +000000000081f010 w DO .rodata 00000000000000ec _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000149314 g DF .text 0000000000000020 _ZNK2nn3ngc6detail2Bp5ToPosEj +00000000003d27c0 g DF .text 0000000000000064 mbrtoc32 +00000000007adc90 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f12ConstantGrayE +0000000000347004 w DF .text 0000000000000008 _ZNKSt3__110moneypunctIwLb0EE16do_decimal_pointEv +000000000016017c g DF .text 0000000000000010 _ZN2nn4pctl6detail3ipc14GetServiceImplEv +00000000002ce798 g DF .text 0000000000000044 _ZN7android8String166insertEmPKDs +00000000003df87c g DF .text 0000000000000034 vsprintf +00000000009446b8 g DO .data 00000000000000a8 _ZTVN2nn2fs6detail30FileSystemServiceObjectAdapterE +00000000001d5aac g DF .text 0000000000000054 _ZN2nn2vi6detail22ServiceReferenceHolder21SetApplicationServiceERKNS_2sf13SharedPointerINS_5visrv2sf26IApplicationDisplayServiceEEE +000000000024f614 g DF .text 000000000000009c _ZN2nn3ldn8FinalizeEv +00000000007cae30 w DO .rodata 0000000000000103 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19ILibraryAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000173818 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +0000000000174670 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetDataDeletionSettingsENS0_3OutINS5_6system20DataDeletionSettingsEvEE +0000000000959c00 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000000ee8c0 g DF .text 00000000000002d4 stereo_itheta +000000000024a3fc g DF .text 0000000000000c3c _ZN22nerd_gillette_internal5otete7jaimev223DecodeFullSilhouetteROKERNS_30ContiguousStorageContainerBaseINS_15NumericalVectorIsLm2EEELb1EEERNS0_14InputBitStreamERKNS1_23FullSilhouetteCodecDataE +000000000004b3f0 g DF .text 0000000000000010 _ZN2nn2fs17FileHandleStorage7GetSizeEPl +0000000000187bd8 g DF .text 000000000000000c _ZN2nn5audio18GetReverbEarlyModeEPKNS0_10ReverbTypeE +000000000036378c w DF .text 0000000000000044 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignERKS5_mm +0000000000226da0 g DF .text 00000000000000ac _ZN2nn3hid6detail28IsAnalogStickInCircumferenceEPbNS0_6system11UniquePadIdENS3_19AnalogStickPositionE +00000000001bc850 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetMouthTypeEv +00000000001ce998 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_OpenSharedLayerENS_2vi7fbshare17SharedLayerHandleENS_6applet20AppletResourceUserIdE +0000000000945d20 w DO .data 0000000000000038 _ZTIN2nn2sf4cmif6server22CmifDomainServerObjectE +0000000000951470 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc14IFriendServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000039e68c g DF .text 000000000000003c __absvsi2 +0000000000045554 g DF .text 000000000000009c _ZN2nn4diag26UnregisterSdkAbortObserverEPNS0_22SdkAbortObserverHolderE +000000000006973c g DF .text 00000000000000c0 _ZN2nn2fs23CorruptSaveDataForDebugEm +000000000082624c g DO .rodata 0000000000000004 __gmt +00000000000a1ab0 g DF .text 0000000000000004 nnsocketSockAtMark +00000000001ba238 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw8SetMoleXEi +000000000095c950 g DO .data 0000000000000018 _ZTIN2nn3hid15VibrationPlayerE +000000000081f200 w DO .rodata 0000000000000016 _ZTSN2nn3fgm2sf8ISessionE +000000000011a468 g DF .text 0000000000000034 _ZN2nn4diag34InitializeApplicationAbortObserverEv +0000000000111714 g DF .text 000000000000000c opus_repacketizer_out_range +0000000000160ecc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E34_nn_sf_sync_FinishAuthorizePairingENS0_3OutINS6_15PairingInfoBaseEvEENS6_9AsyncDataE +0000000000362800 w DF .text 0000000000000060 _ZNKSt3__121__basic_string_commonILb1EE20__throw_length_errorEv +000000000094cb90 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000032e678 w DF .text 0000000000000114 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4readEPwl +00000000000c8f4c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_GetApplicationControlPropertyERKNS0_9OutBufferE +0000000000319c34 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object12AddReferenceEv +00000000000d3510 g DF .text 0000000000000038 _ZN2nn6applet48TakeScreenShotOfOwnLayerIntoLastForegroundBufferEb +000000000019e690 g DF .text 00000000000002d4 _ZN2nn5audio6server13CommandBuffer25GenerateDeviceSinkCommandEiPKNS1_12SinkInfoBaseEjiiiimj +00000000007f55c4 g DO .rodata 0000000000000960 _ZN2nn3mii6detail18UpperLipColorTableE +0000000000160d80 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_IsAllFeaturesDisabledENS0_3OutIbvEESM_ +00000000003e3bec g DF .text 0000000000000004 asctime_r +00000000009dca40 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_8settings22IFactorySettingsServerEE8_globalsE +0000000000347944 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb1EE13do_pos_formatEv +0000000000045274 g DF .text 0000000000000050 _ZN2nn6detail21UnexpectedDefaultImplEPKcS2_i +0000000000169b34 g DF .text 000000000000005c _ZN2nn8settings6system30GetAccountNotificationSettingsEPNS1_27AccountNotificationSettingsEi +00000000002cba80 g DF .text 000000000000002c _ZN7android6Region3setERKNS_4RectE +00000000001cd5ac w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000001cbbc0 g DF .text 0000000000000070 _ZN2nn2vi23SetDisplayContrastRatioEPNS0_7DisplayEf +00000000007bbf20 w DO .rodata 000000000000015a _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000974c4 g DF .text 00000000000001f0 _ZN2nn2ro10InitializeEv +00000000002645b0 g DF .text 000000000000000c NvOsGetCurrentAllocator +000000000004c550 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem28DoDeleteDirectoryRecursivelyEPKc +000000000002e5ec g DF .text 000000000000003c _ZN2nn5image11JpegDecoder14SetPixelFormatENS0_11PixelFormatE +0000000000202054 g DF .text 0000000000000064 FsLtt_new +00000000003dbf94 g DF .text 0000000000000068 tfind +000000000011bf2c g DF .text 0000000000000020 _ZN2nn3err6detail26MakeErrorInfoDirectoryPathEPcmNS0_9ErrorCodeE +00000000003e2280 g DF .text 0000000000000060 strlcat +000000000004754c g DF .text 0000000000000138 _ZN2nn2fs24HierarchicalRomFileTable6FormatENS0_10SubStorageES2_ +000000000017efa4 g DF .text 0000000000000070 _ZN2nn4time41SetEphemeralNetworkSystemClockCurrentTimeERKNS0_9PosixTimeE +00000000002012c0 g DF .text 0000000000000328 get_graymap +0000000000023830 g DF .text 0000000000000058 _ZN2nn5image6detail4jpeg14jpeg_std_errorEPNS2_14jpeg_error_mgrE +0000000000228db0 g DF .text 0000000000000018 _ZN2nn3hid5debug22GetFirmwareUpdateStageEPNS1_19FirmwareUpdateStageEPh +00000000003e0080 g DF .text 0000000000000004 __towrite_needs_stdio_exit +0000000000042338 g DF .text 0000000000000024 _ZN2nn4edid6detail24IsDetailedTimingSerratedEh +0000000000117694 g DF .text 0000000000000178 _ZN2nn5codec19HardwareOpusDecoder10InitializeEiiPvm +0000000000325fa8 g DF .text 000000000000019c _ZNSt3__111__libcpp_db4swapEPvS1_ +000000000017a828 g DF .text 000000000000007c _ZN2nn3ssl6detail18ISslServiceFactory17CreateISslServiceEPNS_2sf13SharedPointerINS0_2sf11ISslServiceEEE +000000000025626c g DF .text 0000000000000050 _ZN2nn3web14ShowWebPageArgC1Ev +00000000000d11a4 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object7ReleaseEv +0000000000183c48 g DF .text 0000000000000088 _ZN2nn3aoc6detail8FinalizeEv +0000000000234e50 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E45_nn_sf_sync_StartSixAxisSensorUserCalibrationENS5_6system25UniqueSixAxisSensorHandleE +0000000000268d64 g DF .text 000000000000019c NvOsDrvIoctl +00000000007b44a0 w DO .rodata 0000000000000022 _ZTSN2nn5fssrv2sf17ISaveDataExporterE +000000000008cec0 g DF .text 00000000000000d8 _ZN2nn2os12AwaitBarrierEPNS0_11BarrierTypeE +0000000000239828 g DF .text 0000000000000054 _ZNK2nn8irsensor6detail15IrSensorSession17GetClusteringLifoERKNS0_14IrCameraHandleE +000000000004281c g DF .text 00000000000001ec _ZN2nn4edid6detail21AudioDataBlockVisitorEPKhmNS0_6cea8618BlockTagEPv +000000000017b660 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E31_nn_sf_sync_GetSessionCacheModeENS0_3OutINS6_16SessionCacheModeEvEE +00000000001905f0 g DF .text 000000000000005c _ZN2nn5audio35RequestResumeAudioRenderersForDebugENS_6applet20AppletResourceUserIdE +00000000001a0b5c g DF .text 0000000000000008 _ZN2nn5audio6server30CommandProcessingTimeEstimatorC1Eii +00000000000c7038 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_ReportUserIsActiveEv +0000000000183a0c g DF .text 000000000000006c _ZN2nn3aoc21GetAddOnContentBaseIdENS_13ApplicationIdE +00000000000ce910 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E54_nn_sf_sync_CreateApplicationAndRequestToStartForQuestENS_3ncm13ApplicationIdEjj +0000000000220464 w DF .text 0000000000000004 _ZN2nn3hid6detail27SixAxisSensorCountStateLifoD0Ev +0000000000323e20 g DF .text 0000000000000038 _ZNSt3__112__rs_defaultD1Ev +000000000015282c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E41_nn_sf_sync_GetSystemEventReadableHandlesENS0_3OutINS0_12NativeHandleEvEESR_ +0000000000135f6c g DF .text 0000000000000008 _ZN2nn2lm6detail15LogPacketHeader12SetVerbosityEh +00000000003961d0 g DF .text 00000000000000b8 __cxa_vec_cctor +00000000000cc8a4 w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi22ELm16384EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +000000000021ae08 g DF .text 0000000000000090 _ZN2nn3hid6detail19GetPlayerLedPatternEPhRKj +0000000000947c30 w DO .data 0000000000000018 _ZTIN2nn7account4baas24IManagerForSystemServiceE +00000000001c60d0 g DF .text 0000000000000034 _ZN2nn3mii6detail21ServiceProviderClient31GetDatabaseServiceSharedPointerEPNS_2sf13SharedPointerINS1_16IDatabaseServiceEEEi +000000000009a8c8 g DF .text 000000000000012c _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain16UnregisterObjectENS1_18CmifDomainObjectIdE +00000000003b82d4 w DF .text 0000000000000094 strtof_l +00000000000ceb08 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_IsGamePlayRecordingSupportedENS0_3OutIbvEE +0000000000125ef4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E49_nn_sf_sync_RequestListSummaryOverlayNotificationEv +000000000017ec88 g DF .text 0000000000000098 _ZN2nn4time13ClockSnapshot29CreateWithStandardSystemClockEPS1_ +00000000002952dc g DF .text 0000000000000004 _ZN7android7BBinder11localBinderEv +0000000000198be4 g DF .text 00000000000000d4 _ZN2nn5audio20FlushAudioOutBuffersEPNS0_8AudioOutE +000000000029e978 g DF .text 0000000000000008 _ZNK7android6Parcel10errorCheckEv +00000000003470f8 w DF .text 0000000000000044 _ZNKSt3__110moneypunctIwLb1EE16do_negative_signEv +00000000000c2064 g DF .text 00000000000000e4 _ZN2nn7account13ProfileEditor4SwapERS1_ +000000000095a9a8 g DO .data 0000000000000800 interpFunc +000000000095dca0 w DO .data 0000000000000018 _ZTIN2nn8irsensor21IIrSensorSystemServerE +000000000039e650 g DF .text 000000000000003c __absvdi2 +00000000003e3374 g DF .text 0000000000000058 wcsncat +0000000000052cc4 g DF .text 0000000000000028 _ZN2nn2fs6detail26EventNotifierObjectAdapterD1Ev +00000000007f2834 g DO .rodata 0000000000000004 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue16InvalidMailBoxIdE +0000000000360db0 g DF .text 0000000000000018 _ZNSt3__119__shared_weak_count12__add_sharedEv +0000000000332dd8 w DF .text 00000000000000e4 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE5seekpENS_4fposI11__mbstate_tEE +000000000022e8dc g DF .text 0000000000000050 _ZN2nn3hid29IsUsbFullKeyControllerEnabledEv +0000000000950740 w DO .data 0000000000000018 _ZTIN2nn5codec6detail27IHardwareOpusDecoderManagerE +0000000000130c84 w DF .text 00000000000001f4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm8ELm8ELl8EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEENSJ_ILm4ELm4ELl4EEEEEELm8ELm16ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENSV_ILm8ELm8EEENS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeESZ_j +000000000017809c g DF .text 00000000000000c8 _ZN2nn3ssl7Context9ImportCrlEPmPKcj +000000000013ead8 g DF .text 0000000000000140 _ZN2nn3nfp29AttachAvailabilityChangeEventEPNS_2os15SystemEventTypeE +00000000001b8d94 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw10GetEyeTypeEv +00000000000bf2e4 g DF .text 0000000000000058 _ZNK2nn7account33ExternalNetworkServiceAccountInfo15GetProfileImageEPmPvm +0000000000118dd0 g DF .text 0000000000000038 _ZN2nn5codec6detail23GetOpusApplicationValueENS0_15OpusApplicationE +00000000001b652c g DF .text 00000000000000a0 _ZN2nn3mii15CompareCharInfoEPiiRKNS0_8CharInfoES4_ +00000000002c5fe4 g DF .text 0000000000000030 _ZN7android21SurfaceComposerClient23setAnimationTransactionEv +0000000000319f94 g DF .text 0000000000000080 _ZN2nn3pwm11OpenSessionEPNS0_14ChannelSessionENS0_11ChannelNameE +000000000006dc80 w DF .text 00000000000000e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm1ELm1EvEEj +00000000009457b0 g DO .data 0000000000000018 _ZTIN2nn2os6detail26MultiWaitHolderOfSemaphoreE +0000000000190100 g DF .text 0000000000000074 _ZN2nn5audio31SetAudioOutsProcessRecordVolumeENS_6applet20AppletResourceUserIdEfNS_8TimeSpanE +000000000033943c w DF .text 00000000000004ac _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__do_get_unsignedIjEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000007bd390 w DO .rodata 0000000000000159 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000012cce4 g DF .text 000000000000004c _ZN2nn2fs18IsSaveDataExistingENS_13ApplicationIdERKNS_7account3UidE +00000000009e8b00 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_8settings21ISystemSettingsServerEE8_globalsE +000000000022893c g DF .text 0000000000000044 _ZN2nn3hid30InitializeConsoleSixAxisSensorEv +00000000000cb3a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_GetPopFromGeneralChannelEventENS0_3OutINS0_12NativeHandleEvEE +00000000001a7aa8 g DF .text 0000000000000054 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl27QueryAudioDeviceOutputEventENS_2sf3OutINS4_12NativeHandleEvEE +0000000000942408 g DO .data 0000000000000020 _ZTVN2nn5image11JpegDecoderE +00000000007d3e7a g DO .rodata 0000000000000004 silk_Lag_range_stage3_10_ms +00000000001dec88 g DF .text 000000000000000c fix_fnt +00000000000c8fb4 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service15IAppletAccessorEEEvi +0000000000a80c30 w DO .bss 0000000000000010 _ZNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE2idE +0000000000068b34 g DF .text 0000000000000124 _ZN2nn2fs16GetSaveDataFlagsEPjm +000000000016d304 g DF .text 0000000000000070 _ZN2nn8settings6detail14GetGameCardKeyEPNS0_7factory11GameCardKeyE +00000000009ef6b0 g DO .bss 0000000000000008 _ZN2nn3ssl6detail16SslMemoryManager19g_HeapStartFreeSizeE +00000000003e1cec g DF .text 0000000000000078 __stpcpy +0000000000215a4c g DF .text 0000000000000084 _ZN2nn3hid6detail40GetConsoleSixAxisSensorCalibrationValuesEPNS0_3tmp37ConsoleSixAxisSensorCalibrationValuesENS0_26ConsoleSixAxisSensorHandleE +00000000002325a8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E41_nn_sf_sync_GetNpadHandheldActivationModeENS_6applet20AppletResourceUserIdENS0_3OutIlvEE +000000000023d710 g DF .text 00000000000000fc _ZN22nerd_gillette_internal5otete7jaimev113DecodeHandROKERNS1_12HandInPacketEPKhmPmRKNS1_17IntensityInPacketE +00000000001d199c w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm64ELm1ELl0EEEEEELm64ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSK_23InRawClientArgumentTypeILm64ELm1EvEEj +000000000022ae28 g DF .text 0000000000000044 _ZN2nn3hid6system24BindNfcDeviceUpdateEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000199e60 g DF .text 0000000000000064 _ZN2nn5audio33RequestResumeFinalOutputRecordersENS_6applet20AppletResourceUserIdENS_8TimeSpanE +00000000002290b0 g DF .text 0000000000000060 _ZN2nn3hid6system19GetHomeButtonStatesEPNS1_15HomeButtonStateEi +00000000003a5248 g DF .text 0000000000000104 __atomic_load +0000000000046368 g DF .text 00000000000000e0 _ZN2nn4diag6detail17GetSymbolNameImplEPcmm +0000000000188580 g DF .text 0000000000000048 _ZN2nn5audio36SetI3dl2ReverbLateReverbHfDecayRatioEPNS0_15I3dl2ReverbTypeEf +00000000002d34d0 g DF .text 000000000000009c _ZNK7android16SortedVectorImpl7indexOfEPKv +00000000000c61ac w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_SetVrModeEnabledEb +0000000000230a88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E39_nn_sf_sync_UnsetDebugPadAutoPilotStateEv +0000000000118920 g DF .text 0000000000000008 _ZNK2nn5codec22OpusMultiStreamDecoder15GetChannelCountEv +00000000002728d8 g DF .text 0000000000000078 NvRmStreamPushFalconMethodReloc +000000000003c8dc g DF .text 00000000000000d4 _ZN2nn4util16IntrusiveDicNode11InsertChildEPPS1_PiRKNS0_17basic_string_viewIcNSt3__111char_traitsIcEEEE +00000000000c127c g DF .text 0000000000000014 _ZN2nn7account42NintendoAccountAuthorizationRequestContextC1Ev +0000000000398530 g DF .text 0000000000000004 __cxa_free_dependent_exception +00000000000929b0 g DF .text 000000000000013c _ZN2nn2os6detail17MemoryHeapManager16AllocateFromHeapEPmm +00000000000c8718 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl4EEENSG_ILm1ELm1ELl0EEENSG_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENSR_ILm1ELm1EvEESS_j +0000000000804e70 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi52EE4MaskE +00000000001219a8 g DF .text 0000000000000144 _ZN2nn7friends21AddFacedFriendRequestERKNS_7account3UidERKNS0_33FacedFriendRequestRegistrationKeyERKNS1_8NicknameEPKvmRKNS0_15InAppScreenNameESF_ +000000000022a018 g DF .text 000000000000000c _ZN2nn3hid15KeyCodeComposerC2Ev +00000000003ddd98 w DF .text 0000000000000020 _IO_getc_unlocked +0000000000157980 g DF .text 0000000000000070 _ZN2nn4nifm6detail34ConvertAccessPointDataToNifmFromSfEPNS0_15AccessPointDataERKNS1_2sf15AccessPointDataE +00000000009447e0 g DO .data 0000000000000038 _ZTIN2nn2fs6detail30FileSystemServiceObjectAdapterE +000000000097c330 g DO .data 0000000000000028 _ZTINSt3__119__shared_weak_countE +000000000018b92c g DF .text 0000000000000008 _ZNK2nn5audio12SplitterInfo5GetIdEv +00000000000456b4 g DF .text 0000000000000004 nndiagStartup +00000000000703fc g DF .text 0000000000000008 _ZN2nn4lmem6detail30GetUseExpHeapMarginOfAlignmentEPNS1_8HeapHeadE +0000000000986b98 g DO .data 0000000000000008 stderr +00000000001c34b8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetGlassTypeEi +00000000002382f0 g DF .text 0000000000000080 _ZN2nn8irsensor6detail17RunIrLedProcessorERKNS0_14IrCameraHandleERKNS0_20IrLedProcessorConfigE +000000000095a050 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000022c0cc g DF .text 0000000000000044 _ZN2nn3hid18SwapNpadAssignmentERKjS2_ +0000000000062ac4 g DF .text 00000000000001a0 _ZN2nn2fs13MountHostRootEv +00000000000483b4 g DF .text 0000000000000080 _ZN2nn2fs24HierarchicalRomFileTable23GetDirectoryInformationEPNS0_16RomDirectoryInfoEPKc +000000000015b614 g DF .text 0000000000000058 _ZN2nn2oe38SetUserInactivityDetectionTimeExtendedEb +00000000000f73c4 g DF .text 0000000000000100 silk_biquad_alt +000000000017d0a4 g DF .text 000000000000008c _ZN2nn4time28AdjustableNetworkSystemClock21GetSystemClockContextEPNS0_18SystemClockContextE +00000000002cc224 g DF .text 0000000000000018 _ZN7android6Region6orSelfERKS0_ii +000000000034793c w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb1EE14do_frac_digitsEv +0000000000348b7c w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb1EE16do_positive_signEv +00000000003e31e0 g DF .text 000000000000008c wcscspn +00000000007adcb0 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f11ConstantRedE +000000000017ede4 g DF .text 0000000000000024 _ZNK2nn4time13ClockSnapshot33GetStandardUserSystemClockContextEv +00000000000c2548 g DF .text 000000000000000c _ZN2nn7account13ProfileEditor11SetUserDataEPKcm +00000000000ccfbc w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E12GetProxyInfoEv +00000000001c5b90 g DF .text 0000000000000030 _ZNK2nn3mii15PrivateDatabase12UpdateLatestEPNS0_9StoreDataEi +00000000000c7e90 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000900c0 g DF .text 0000000000000008 _ZN2nn2os24GetCurrentSemaphoreCountEPKNS0_13SemaphoreTypeE +000000000017ce20 g DF .text 0000000000000004 _ZN2nn3ssl6detail15BuiltinDataInfoD2Ev +0000000000189180 g DF .text 000000000000002c _ZNK2nn5audio14MemoryPoolInfo12IsOverlappedEPKvm +000000000012d810 g DF .text 0000000000000044 _ZN2nn2fs20DeleteSystemSaveDataEmRKNS_7account3UidE +0000000000128250 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm64EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSI_ILm8ELm8ELl16EEEEEELm24ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENST_ILm8ELm8EvEEj +00000000003dcbf8 w DF .text 0000000000000038 fgetpos64 +0000000000395d74 g DF .text 0000000000000014 _ZNSt9bad_allocC1Ev +00000000001650f8 g DF .text 00000000000000fc _ZN2nn5prepo28SetUserAgreementCheckEnabledEb +00000000000cc258 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service26ILibraryAppletSelfAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000035aa48 g DF .text 000000000000002c _ZNKSt3__18numpunctIcE12do_falsenameEv +0000000000823190 g DO .rodata 0000000000000023 _ZTSNSt3__117__widen_from_utf8ILm32EEE +00000000002866bc g DF .text 000000000000000c NvRmGpuLibListDevices +0000000000318d10 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_GetTemperatureThresholdsERKNS0_8OutArrayINS5_20TemperatureThresholdEEENS0_3OutIivEEi +00000000000a176c w DF .text 00000000000000e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEEj +000000000026371c g DF .text 0000000000000018 NvOsConditionSignal +000000000018d380 g DF .text 0000000000000298 _ZN2nn5audio6common10NodeStates16DepthFirstSearchERS2_RNS1_10EdgeMatrixERNS2_5StackE +00000000000b7f50 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E12GetProxyInfoEv +00000000002cd574 g DF .text 000000000000004c _ZN7android12NativeHandleD0Ev +0000000000329b04 w DF .text 0000000000000080 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEEC1EPNS_15basic_streambufIcS2_EE +00000000000a1a78 g DF .text 0000000000000004 _ZN2nn6socket15DuplicateSocketEim +00000000000cdfd4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_TerminateApplicationAndSetReasonEj +0000000000113b74 g DF .text 0000000000000008 opus_multistream_decoder_alloc_get_size +0000000000223c64 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm8EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +00000000000a18d0 g DF .text 0000000000000004 _ZN2nn6socket4PollEP6pollfdmi +000000000097d820 g DO .data 0000000000000018 _ZTISt11range_error +00000000000cc6c4 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_UnpopInDataENS0_13SharedPointerINS6_8IStorageEEE +00000000007f0d70 w DO .rodata 000000000000004b _ZTSN2nn5audio6server10EffectInfoILNS0_10EffectTypeE4ENS0_15ReverbParameterEEE +0000000000322f50 w DF .text 00000000000007cc _ZNSt3__16__sortIRNS_6__lessIeeEEPeEEvT0_S5_T_ +000000000004f018 g DF .text 0000000000000028 _ZN2nn2fs8ReadFileENS0_10FileHandleElPvm +0000000000259c70 g DF .text 0000000000000150 nvdcAllocLut +00000000000bd364 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE17GetCmifBaseObjectEv +00000000001d6b88 g DF .text 0000000000000008 _ZN2nn2vi6detail18SystemServiceProxy21GetIndirectLayerTableEv +0000000000296dd0 g DF .text 000000000000004c _ZNK7android10IInterface8asBinderEv +00000000007bba20 w DO .rodata 0000000000000020 _ZTSN2nn6socket8resolver9IResolverE +00000000000ac5b0 g DF .text 0000000000000008 _ZN2nn6socket8resolver3tls17GetHeapGenerationEPNS2_30ResolverThreadLocalStoragePairE +00000000001854ac g DF .text 0000000000000020 _ZN2nn5audio29IsMemoryPoolErrorCheckEnabledEPKNS0_19AudioRendererConfigE +00000000001aa54c g DF .text 0000000000000070 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue8FinalizeEv +000000000024bfb8 g DF .text 0000000000000010 _ZN2nn3kpr6detail20ClearKeyCodeComposerEPNS1_22KeyCodeComposerStorageE +0000000000088e08 g DF .text 00000000000000f0 _ZN2nn7nlibsdk4heap11CentralHeap12FreeWithSizeEPvm +000000000008acd0 w DF .text 0000000000000488 _ZN2nn3mem22NumberLineAllocatorPrv11RemoveRangeEjj +00000000001aa6d0 g DF .text 0000000000000038 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue4RecvEv +00000000001558bc g DF .text 000000000000007c _ZN2nn4nifm30IsEthernetCommunicationEnabledEv +0000000000359b88 g DF .text 0000000000000014 _ZNKSt3__115__codecvt_utf16IDiLb0EE13do_max_lengthEv +000000000097da00 g DO .data 0000000000000018 _ZTIN10__cxxabiv119__pointer_type_infoE +000000000009fca4 w DF .text 0000000000000150 _ZN2nn2sf4cmif6server6detail34CmifProcessFunctionTableGetterImplINS0_4hipc6detail12IHipcManagerEE30Process_QueryPointerBufferSizeEPPNS1_13CmifOutHeaderEPS7_PNS2_17CmifServerMessageEONS0_6detail14PointerAndSizeE +00000000003659dc w DF .text 000000000000004c _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE2atEm +00000000003e6524 g DF .text 000000000000006c __nnmusl_DirCreate +0000000000264848 g DF .text 0000000000000024 NvOsAtomicCompareExchangePtr +00000000007e4dd0 w DO .rodata 00000000000000dd _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +0000000000944638 g DO .data 0000000000000050 _ZTVN2nn2fs6detail24FileServiceObjectAdapterE +00000000000a1a60 g DF .text 0000000000000004 _ZN2nn6socket19RequestCancelHandleEv +00000000007c8460 w DO .rodata 000000000000002c _ZTSN2nn2am7service25IProcessWindingControllerE +00000000001b5c40 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor13GetFontRegionEv +0000000000361d5c g DF .text 0000000000000004 _ZNSt3__111regex_errorD2Ev +00000000000ce7a8 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_PopLaunchParameterENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEEj +000000000022f1e8 g DF .text 00000000000000d4 _ZN2nn3hid13VibrationNodeD1Ev +00000000003333d0 g DF .text 0000000000000108 _ZNSt3__18ios_base5iwordEi +0000000000361b28 w DF .text 000000000000000c _ZdlPvSt11align_val_t +00000000003de37c g DF .text 000000000000003c putc_unlocked +00000000000c1a38 g DF .text 0000000000000078 _ZN2nn7account8Notifier14GetSystemEventEPNS_2os11SystemEventE +0000000000953c40 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15INetworkProfileENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +000000000021c764 g DF .text 00000000000000d8 _ZN2nn3hid6detail32GetSixAxisSensorFusionParametersEPfS2_RKNS0_19SixAxisSensorHandleE +00000000003ab0d0 g DF .text 0000000000000004 __pthread_create +00000000003294a8 w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9pubsetbufEPwl +0000000000082720 g DF .text 0000000000000008 _ZN2nn7nlibsdk4heap12TlsHeapCache10CheckCacheEv +000000000018b914 g DF .text 0000000000000018 _ZN2nn5audio12SplitterInfoC2Ei +000000000029ebf4 g DF .text 0000000000000174 _ZN7android6Parcel15writeInt32ArrayEmPKi +000000000019d31c g DF .text 0000000000000010 _ZNK2nn5audio6server13CommandBuffer20GetCurrentBufferBaseEv +00000000003dba20 g DF .text 000000000000002c hsearch +000000000009074c g DF .text 000000000000002c _ZN2nn2os17SetMemoryHeapSizeEm +000000000096d730 g DO .data 0000000000000038 _ZTIN7android12ConsumerBaseE +000000000018d1a4 g DF .text 0000000000000030 _ZN2nn5audio6common10EdgeMatrix10DisconnectEii +00000000007c6f70 w DO .rodata 0000000000000102 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000197edc g DF .text 0000000000000004 _ZN2nn5audio21CreateAudioOutManagerEv +00000000001c6680 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E25_nn_sf_sync_UpdateLatest1ENS0_3OutINS5_9StoreDataEvEERKSQ_i +00000000000d7580 g DF .text 0000000000000038 _ZN2nn4bcat6detail17ShimLibraryGlobal29IsDeliveryCacheStorageMountedEv +000000000034f314 w DF .text 0000000000000024 _ZNSt3__114codecvt_bynameIDic11__mbstate_tED0Ev +000000000012223c g DF .text 000000000000000c _ZN2nn7friends18FriendDetailedInfoC2Ev +0000000000803fa0 w DO .rodata 0000000000000028 _ZTSN2nn3hid6detail21NpadSixAxisSensorLifoE +0000000000135f5c g DF .text 0000000000000008 _ZN2nn2lm6detail15LogPacketHeader11SetSeverityEh +000000000014b078 g DF .text 000000000000005c _ZN2nn3ngc6detail15NullInputStreamC1Ev +00000000000312f8 g DF .text 00000000000000e4 nnutilZlib_deflateEnd +000000000005f99c g DF .text 0000000000000058 _ZN2nn2fs6detail24FileServiceObjectAdapter14DoOperateRangeEPvmNS0_11OperationIdEllPKvm +0000000000362290 g DF .text 0000000000000090 _ZNSt3__118shared_timed_mutex4lockEv +000000000018867c g DF .text 0000000000000048 _ZN2nn5audio21SetI3dl2ReverbDryGainEPNS0_15I3dl2ReverbTypeEf +000000000036baa0 g DF .text 0000000000000144 _ZNSt3__112strstreambuf7seekoffExNS_8ios_base7seekdirEj +0000000000187e08 w DF .text 0000000000000140 _ZN2nn5audio18AddI3dl2ReverbImplINS0_10SubMixTypeEEENS_6ResultEPNS0_19AudioRendererConfigEPNS0_15I3dl2ReverbTypeEPvmPT_i +000000000004bad4 g DF .text 000000000000048c _ZN2nn2fs15RomFsFileSystem10InitializeEPNS0_8IStorageEPvmb +000000000004c350 g DF .text 00000000000000d8 _ZN2nn2fs15RomFsFileSystem15DoOpenDirectoryEPNSt3__110unique_ptrINS0_3fsa10IDirectoryENS2_14default_deleteIS5_EEEEPKcNS0_17OpenDirectoryModeE +000000000013f5d8 g DF .text 00000000000000c4 _ZN2nn3nfp21DeleteApplicationAreaERKNS0_12DeviceHandleE +000000000022045c w DF .text 0000000000000004 _ZN2nn3hid6detail37SixAxisSensorUserCalibrationStateLifoD0Ev +0000000000395df4 g DF .text 000000000000000c _ZNKSt20bad_array_new_length4whatEv +0000000000095370 g DF .text 0000000000000048 _ZN2nn2os6detail25SharedMemoryImplByHorizon5UnmapEjPvm +00000000001a3dd4 g DF .text 000000000000000c _ZN2nn5audio6server10MixContext13SetSortedInfoEiPNS1_7MixInfoE +00000000001c8e38 g DF .text 000000000000003c _ZN2nn5swkbd18ConvertUtf8ToUtf16EPviPKc +0000000000284698 g DF .text 00000000000001b8 NvDdkVicCreateSession +000000000023aebc g DF .text 0000000000000018 _ZN2nn8irsensor30GetImageTransferProcessorStateEPNS0_27ImageTransferProcessorStateEPvmRKNS0_14IrCameraHandleE +0000000000117f10 g DF .text 0000000000000004 _ZN2nn5codec11OpusDecoderD1Ev +00000000000820e4 g DF .text 0000000000000040 nnmem_nlib_rename +0000000000152054 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E43_nn_sf_sync_SetEthernetCommunicationEnabledEb +00000000002c6330 g DF .text 00000000000000cc _ZN7android21SurfaceComposerClient4hideERKNS_2spINS_7IBinderEEE +0000000000270968 g DF .text 000000000000005c NvRmSyncGetInfo +0000000000210968 g DF .text 00000000000013a8 load_ttf +00000000000a1a98 g DF .text 0000000000000004 nnsocketConnect +00000000002c5e48 g DF .text 000000000000001c _ZN7android21SurfaceComposerClient12getErrorTextEiRNS_7String8E +000000000094e620 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001a407c g DF .text 0000000000000138 _ZN2nn5audio6server10MixContext9TsortInfoERKNS1_15SplitterContextE +000000000022851c g DF .text 0000000000000044 _ZN2nn3hid6system45RetryCurrentAnalogStickManualCalibrationStageENS1_11UniquePadIdENS1_19AnalogStickPositionE +000000000032f17c w DF .text 00000000000000a0 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE6sentryD2Ev +00000000001a684c g DF .text 0000000000000010 _ZNK2nn5audio6server12VoiceContext8GetStateEi +000000000033862c w DF .text 00000000000004ac _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__do_get_signedIlEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000003e58fc g DF .text 00000000000001bc __nnmusl_FileRemove +0000000000182d3c g DF .text 0000000000000018 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTask9GetResultEv +00000000002c70cc g DF .text 00000000000000a4 _ZN7android21SurfaceComposerClient13setBrightnessERKNS_2spINS_7IBinderEEEf +00000000002cf158 g DF .text 000000000000002c _ZN7android7String8D2Ev +00000000001249a4 g DF .text 0000000000000058 _ZN2nn7friends6detail20AsyncContextInternal14FunctionCallerEPv +000000000015e0f0 g DF .text 0000000000000058 _ZN2nn4pctl18IsPlayTimerEnabledEv +00000000001d282c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000041a64 g DF .text 000000000000001c _ZN2nn4edid6detail13GetColorDepthEh +00000000000a1c2c g DF .text 000000000000000c nnsocketGetNameInfoWithOptions +000000000017aef4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_SetOptionENS6_13ContextOptionEi +00000000001cdce8 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_TransactParcelAutoEijRKNS0_8InBufferERKNS0_9OutBufferEj +000000000000874c w DF .text 00000000000000fc _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE5ResetEPKvm +0000000000071634 g DF .text 0000000000000008 nnmem_nlib_thread_attr_setptr +00000000000ac8a8 g DF .text 000000000000006c _ZN2nn6socket8resolver3tls12SetClientTLSEPFvPvES3_ +0000000000185bc4 g DF .text 000000000000000c _ZN2nn5audio19ResetAuxI3dl2ReverbEPNS0_18AuxI3dl2ReverbTypeE +00000000000c03d0 g DF .text 000000000000018c _ZN2nn7account28NetworkServiceAccountManager46DebugCreateNintendoAccountAuthorizationRequestEPNS0_42NintendoAccountAuthorizationRequestContextEmPKcmRKNS0_45NintendoAccountAuthorizationRequestParametersEPvm +00000000000c78f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_RejectToChangeIntoBackgroundEv +00000000001cffd4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_CreateManagedLayerENS0_3OutImvEEmjNS_6applet20AppletResourceUserIdE +000000000035a680 g DF .text 0000000000000018 _ZNKSt3__120__codecvt_utf8_utf16IDsE13do_max_lengthEv +00000000003babb8 g DF .text 0000000000000040 cproj +000000000023a91c g DF .text 0000000000000054 _ZN2nn8irsensor17GetIrCameraHandleERKj +00000000003dd080 g DF .text 00000000000000c8 fputc +0000000000955d58 w DO .data 00000000000000c8 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +000000000036cd9c g DF .text 0000000000000004 _ZNSt3__114error_categoryD1Ev +0000000000060cd4 g DF .text 0000000000000150 _ZN2nn2fs21OpenGameCardPartitionEPNSt3__110unique_ptrINS0_8IStorageENS1_14default_deleteIS3_EEEEjNS0_20GameCardPartitionRawE +0000000000005f18 g DF .text 0000000000000098 _ZN2nn6crypto6detail19CbcModeAes128Helper13EncryptBlocksEPvS3_PKviPKNS0_12AesEncryptorILm16EEE +00000000000ce938 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_EnsureSaveDataENS0_3OutIlvEERKNS_7account3UidE +00000000002bdc28 g DF .text 000000000000003c _ZN7android22ISurfaceComposerClientC2Ev +00000000009a8bb0 g DO .bss 0000000000000008 _ZN2nn2os6detail19g_UserExceptionInfoE +00000000001aa44c g DF .text 0000000000000004 _ZN2nn5audio3dsp4WaitEv +00000000002c57cc g DF .text 0000000000000008 _ZNK7android21SurfaceComposerClient9initCheckEv +00000000000473a4 g DF .text 0000000000000010 _ZN2nn2fs19SetEnabledAutoAbortEb +00000000002637f8 g DF .text 0000000000000024 NvOsSemaphoreDestroy +00000000003ca78c g DF .text 0000000000000150 fmodf +000000000025d820 g DF .text 0000000000000048 NvUHashContains +0000000000144ee0 g DF .text 0000000000000098 _ZN2nn3ngc6detail14ContentsReader11GetFileSizeEPjPc +0000000000232120 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E37_nn_sf_sync_EnableSixAxisSensorFusionENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleEb +00000000007e14d0 w DO .rodata 000000000000001b _ZTSN2nn4nifm6detail8IRequestE +00000000000a1990 g DF .text 0000000000000004 _ZN2nn6socket9InetNtohlEj +0000000000286a68 g DF .text 0000000000000068 NvRmGpuMappingCreate +00000000003ca8dc g DF .text 0000000000000240 fmodl +00000000003cd9f4 g DF .text 00000000000001d0 remquof +000000000017df40 g DF .text 0000000000000194 _ZN2nn4time10DaysToDateEPiS1_S1_i +00000000002cc708 g DF .text 0000000000000004 _ZNK7android6Region4dumpEPKcj +00000000002d1f7c g DF .text 00000000000000e0 _ZN7android10VectorImplaSERKS0_ +00000000003dd148 g DF .text 000000000000004c fputs +00000000003986bc g DF .text 00000000000000e0 __cxa_end_catch +0000000000174fa4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_NeedsToUpdateHeadphoneVolumeENS0_3OutIbvEESJ_NSI_IavEEb +00000000003341b4 w DF .text 0000000000000024 _ZNSt3__17collateIcED0Ev +00000000003cdbc4 g DF .text 0000000000000328 remquol +000000000006cc24 g DF .text 0000000000000198 _ZN2nn2fs19MountSystemSaveDataEPKcNS0_15SaveDataSpaceIdEmNS0_6UserIdE +00000000001b3444 g DF .text 0000000000000bcc _ZN2nn2ec6detail12GeneratePathERNS1_15ShowShopPageArgEPKcNS0_8SourceIdES5_S5_S5_z +00000000003556cc g DF .text 0000000000000044 _ZNSt3__15ctypeIcED1Ev +0000000000396af0 g DF .text 0000000000000014 _ZNSt10bad_typeidC2Ev +00000000000aa444 w DF .text 0000000000000214 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEENSJ_ILm4ELm4ELl4EEENSL_ILi1ELi34ELm0EEENSG_ILm4ELm4ELl8EEEEEELm8ELm12ELb0EEESQ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESY_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeES10_S11_SY_j +00000000000b9408 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSK_ILm8ELm8ELl16EEEEEELm24ELm4ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENSX_ILm8ELm8EvEEj +00000000003c3ca8 g DF .text 000000000000003c fesetexceptflag +0000000000179fa8 g DF .text 0000000000000024 nnsslConnectionSetSessionCacheMode +000000000022e57c g DF .text 0000000000000060 _ZN2nn3hid6system24ListSixAxisSensorHandlesEPNS1_25UniqueSixAxisSensorHandleERKNS1_11UniquePadIdEi +00000000000685a4 g DF .text 0000000000000048 _ZN2nn2fs20CreateSystemSaveDataEmllj +00000000000b2380 g DF .text 0000000000000044 _ZN2nn7account6detail24SimpleOAuthProcedureBaseC2EOS2_ +00000000001a7b24 g DF .text 0000000000000004 _ZN2nn5audio6server6detail21InitializeAudioDeviceERKNS_6applet20AppletResourceUserIdE +0000000000271a58 g DF .text 0000000000000108 NvRmStreamFree +0000000000822360 w DO .rodata 0000000000000025 _ZTSPFvPNSt3__121__horizon_thread_dataEE +00000000000a1c4c g DF .text 0000000000000004 nnsocketGAIStrError +00000000007d4ca1 g DO .rodata 0000000000000022 silk_pitch_contour_iCDF +000000000015d574 g DF .text 0000000000000058 _ZN2nn4pctl28GetPlayTimerSpentTimeForTestEv +00000000001bed4c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw17GetPositionInRoomEv +00000000003a774c g DF .text 0000000000000000 __fesetround +00000000001806f4 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6Object12AddReferenceEv +00000000001e386c g DF .text 0000000000000628 fs__malloc +00000000000914c8 g DF .text 0000000000000004 nnosGetMultiWaitHolderUserData +0000000000271b60 g DF .text 00000000000002c0 NvRmStreamBegin +00000000003281bc g DF .text 0000000000000018 _ZNSt3__121__horizon_thread_data13release_stackEv +000000000017a424 g DF .text 0000000000000030 _ZN2nn3ssl6detail10SslApiBase21GetSslResultFromValueEPNS_6ResultEPKcj +000000000094fcb0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +000000000022043c w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS1_17GestureDummyStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +00000000002386bc g DF .text 0000000000000260 _ZN2nn8irsensor6detail13StatusManagerC2Ev +000000000029c654 g DF .text 00000000000000a0 _ZN7android10MemoryBaseC2ERKNS_2spINS_11IMemoryHeapEEElm +0000000000156930 g DF .text 000000000000001c _ZN2nn4nifm16SetRequestGreedyENS0_13RequestHandleEb +0000000000234af8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E34_nn_sf_sync_EnableAppletToGetInputENS_6applet20AppletResourceUserIdEb +00000000001675e8 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi9ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEENSG_ILi1ELi5ELm0EEEEEELm8ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEESS_j +0000000000a80d78 g DO .bss 0000000000000010 _ZNSt3__17codecvtIcc11__mbstate_tE2idE +00000000003433b8 w DF .text 0000000000000060 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE10__get_yearERiRS4_S4_RjRKNS_5ctypeIwEE +0000000000040df4 g DF .text 0000000000000138 _ZN2nn4util27ConvertCharacterUtf8ToUtf32EPjPKc +0000000000076344 g DF .text 0000000000000064 nnmem_nlib_utf32char_to_utf16 +00000000001698d8 g DF .text 0000000000000060 _ZN2nn8settings6system18GetNetworkSettingsEPNS1_15NetworkSettingsEi +0000000000366d5c w DF .text 0000000000000070 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4findEwm +000000000094cca0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001b917c g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw13GetMouthColorEv +0000000000161094 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000169efc g DF .text 0000000000000078 _ZN2nn8settings6system13GetRegionCodeEPNS1_10RegionCodeE +000000000035524c g DF .text 000000000000000c _ZNSt3__15ctypeIcE13classic_tableEv +0000000000150004 g DF .text 0000000000000004 _ZN2nn3ngc6detail11CalcSelect0EjjPKjS3_PKh +00000000000a1304 g DF .text 0000000000000100 _ZN2nn2sm20InitializeForManagerEv +0000000000a1d3f8 g DO .bss 0000000000000240 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue15g_MessageQueuesE +00000000007ada90 g DO .rodata 0000000000000004 _ZN2nn4util6detail8Float2PiE +00000000000ac864 g DF .text 0000000000000044 _ZN2nn6socket8resolver3tls12GetClientTLSERPv +000000000039c8b8 g DF .text 000000000000002c _Unwind_GetLanguageSpecificData +00000000000c8230 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000152598 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail12IScanRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +00000000007e90d0 g DO .rodata 0000000000000004 _ZN2nn5audio15ReverbParameter15ChannelCountMaxE +00000000002d1f54 g DF .text 0000000000000014 _ZN7android10VectorImplD2Ev +000000000016fc10 g DF .text 0000000000000070 _ZN2nn8settings6detail24GetBatteryPercentageFlagEPb +000000000022244c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm13EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000002386b8 g DF .text 0000000000000004 _ZN2nn8irsensor6detail23GetAppletResourceUserIdEv +00000000002c9624 g DF .text 0000000000000068 _ZN7android13GraphicBuffer8initSizeEjjij +000000000016d534 g DF .text 0000000000000078 _ZN2nn8settings6detail24SetVibrationMasterVolumeEf +0000000000364dbc w DF .text 000000000000009c _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE16find_last_not_ofEPKcmm +000000000008f1e8 g DF .text 0000000000000008 _ZN2nn2os17FinalizeMultiWaitEPNS0_13MultiWaitTypeE +00000000003a9738 g DF .text 00000000000000ec freopen +000000000005db48 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +0000000000188670 g DF .text 000000000000000c _ZN2nn5audio31GetI3dl2ReverbLateReverbDensityEPKNS0_15I3dl2ReverbTypeE +000000000029e4b4 g DF .text 0000000000000024 _ZN7android6Parcel8growDataEm +00000000003e48b0 g DF .text 00000000000000ac __asctime +00000000001d2fc8 g DF .text 000000000000009c _ZN2nn2vi17GetZOrderCountMaxEPKNS0_7DisplayE +0000000000070e7c g DF .text 0000000000000010 _ZN2nn4lmem6detail15DestroyUnitHeapEPNS1_8HeapHeadE +000000000026cdbc g DF .text 0000000000000004 NvRmSyncFreeSemaphores +000000000019a668 g DF .text 0000000000000008 _ZN2nn5audio39GetFinalOutputRecorderBufferDataPointerEPKNS0_25FinalOutputRecorderBufferE +00000000000c7ff0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_AcquireLastApplicationCaptureBufferENS0_3OutINS0_12NativeHandleEvEE +000000000024da1c g DF .text 00000000000000c8 _ZN2nn5album22SaveAndShareScreenshotEPKvmNS0_9ImageSizeENS0_16ImageOrientationENS0_17AlbumReportOptionERKNS_7account3UidE +000000000031c508 w DF .text 0000000000000548 _ZNSt3__16__sortIRNS_6__lessIhhEEPhEEvT0_S5_T_ +00000000008233a0 g DO .rodata 0000000000000023 _ZTSNSt3__120__codecvt_utf8_utf16IDiEE +0000000000140fc0 g DF .text 0000000000000024 _ZN2nn3ngc15ProfanityFilterC1Ev +00000000000b4a1c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE46_nn_sf_sync_IsUserRegistrationRequestPermittedENS0_3OutIbvEEm +00000000007cf6e0 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000329468 w DF .text 0000000000000034 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED0Ev +000000000023ed9c g DF .text 000000000000007c _ZN22nerd_gillette_internal5otete7jaimev221DecodePacketPrefixROKERjmPKhmPm +00000000002328a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E41_nn_sf_sync_IsUsbFullKeyControllerEnabledENS0_3OutIbvEE +0000000000a80d88 g DO .bss 0000000000000010 _ZNSt3__17codecvtIwc11__mbstate_tE2idE +000000000095bb00 w DO .data 0000000000000018 _ZTIN2nn3hid6detail15NpadJoyLeftLifoE +0000000000229350 g DF .text 000000000000004c _ZN2nn3hid6system17BindIrSensorEventEjPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000262e80 g DF .text 000000000000005c NvOsGetTimeMS +00000000000143c0 g DF .text 0000000000000018 _ZN2nn5image6detail4jpeg25jpeg_calc_jpeg_dimensionsEPNS2_20jpeg_compress_structE +00000000001a67ec g DF .text 0000000000000010 _ZNK2nn5audio6server12VoiceContext17GetDspSharedStateEi +00000000002ce6bc g DF .text 00000000000000dc _ZN7android8String166appendEPKDsm +00000000000d1d0c w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm4EE27InitializeShimLibraryHolderINS_3apm14ISystemManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESF_ +00000000001fc768 g DF .text 00000000000000a8 get_charData_ttf +00000000003261e4 g DF .text 0000000000000004 _ZSt18uncaught_exceptionv +0000000000264ea8 g DF .text 00000000000000c4 _ZN2nv26InitializeGraphicsDevtoolsEPvm +00000000002c9c98 g DF .text 0000000000000050 _ZN7android13GraphicBuffer9lockAsyncEjPPvi +00000000001ca118 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard24SetChangedStringCallbackEPFvPKNS0_16ChangedStringArgEE +0000000000961090 g DO .data 0000000000000028 _ZTIN7android10IInterfaceE +00000000000645c0 g DF .text 0000000000000098 _ZN2nn2fs29SetEnabledProgramVerificationEb +000000000023481c w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E27_nn_sf_sync_GetNpadsWithNfcENS0_3OutIlvEERKNS0_8OutArrayIjEE +000000000014770c g DF .text 0000000000000060 _ZN2nn3ngc6detail3Bp_D1Ev +00000000001d0f48 w DF .text 0000000000000134 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl64EEENSB_ILm64ELm1ELl0EEENSB_ILm8ELm8ELl72EEEEEELm80ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm64ELm1EvEESM_j +000000000094d2f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000156f68 g DF .text 0000000000000014 _ZNK2nn4nifm23TemporaryNetworkProfile5GetIdEv +0000000000286e04 g DF .text 000000000000000c NvRmGpuRegOpsSessionSmEventsControl +0000000000955d00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectE +0000000000111acc g DF .text 000000000000001c tonality_analysis_init +00000000001750d8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E51_nn_sf_sync_GetConsoleSixAxisSensorAccelerationBiasENS0_3OutINS5_6system36ConsoleSixAxisSensorAccelerationBiasEvEE +000000000008f360 g DF .text 0000000000000048 _ZN2nn2os15InitializeMutexEPNS0_9MutexTypeEbi +00000000001862f4 g DF .text 0000000000000040 _ZN2nn5audio20SetBufferMixerVolumeEPNS0_15BufferMixerTypeEif +00000000001c5644 g DF .text 0000000000000008 _ZN2nn3mii8DatabaseC1Ev +000000000022ab18 g DF .text 00000000000000a4 _ZN2nn3hid15KeyCodeComposer15EnqueueAltCodesEPKii +000000000022fccc g DF .text 000000000000005c _ZNK2nn3hid15VibrationPlayer11GetFileInfoEv +00000000003e3108 g DF .text 0000000000000034 wcscat +00000000000904e8 g DF .text 0000000000000010 _ZN2nn2os11YieldThreadEv +0000000000948850 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4http15IOAuthProcedureENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000007e92ac g DO .rodata 0000000000000004 _ZN2nn5audio9VoiceType15PriorityHighestE +00000000003dd610 w DF .text 00000000000000c4 fseeko64 +000000000034a2e0 w DF .text 00000000000002f8 _ZNKSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_bRNS_8ios_baseERjRNS_12basic_stringIcS3_NS_9allocatorIcEEEE +000000000094e910 w DO .data 0000000000000018 _ZTIN2nn3apm8IManagerE +00000000002b4c18 g DF .text 00000000000001f0 _ZN7android19IGraphicBufferAlloc11asInterfaceERKNS_2spINS_7IBinderEEE +00000000002c61a4 g DF .text 00000000000000d0 _ZN7android21SurfaceComposerClient7setSizeERKNS_2spINS_7IBinderEEEjj +00000000000e8af0 g DF .text 00000000000000b0 ec_dec_icdf +00000000001de0d8 g DF .text 0000000000000014 FS_set_cmap_variant +0000000000298cfc g DF .text 0000000000000050 _ZThn8_N7android12BnMemoryHeapD0Ev +0000000000088ef8 g DF .text 00000000000000c0 _ZN2nn7nlibsdk4heap11CentralHeap12GetAllocSizeEPKv +00000000000c2408 g DF .text 0000000000000038 _ZN2nn7account13ProfileEditor7RefreshEv +0000000000262f34 g DF .text 0000000000000014 NvOsGetTimeNS +0000000000362668 g DF .text 000000000000008c _ZNSt13runtime_errorC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE +00000000003dbcd0 g DF .text 000000000000002c insque +0000000000955798 g DO .data 0000000000000010 _ZTIN2nn3ssl6detail10SslApiBaseE +0000000000185a40 g DF .text 0000000000000078 _ZN2nn5audio27SetAuxI3dl2ReverbParametersEPNS0_18AuxI3dl2ReverbTypeEPKNS0_23I3dl2ReverbParameterSetE +0000000000068c58 g DF .text 0000000000000134 _ZN2nn2fs16GetSaveDataFlagsEPjNS0_15SaveDataSpaceIdEm +0000000000122d88 g DF .text 0000000000000008 _ZNK2nn7friends16UserPresenceView17GetLastOnlineTimeEv +000000000019ee84 g DF .text 0000000000000008 _ZN2nn5audio6server16CommandGenerator26GeneratePerformanceCommandEPKNS1_25PerformanceEntryAddressesENS0_22PerformanceCommandTypeEj +00000000002558c8 g DF .text 00000000000000c4 _ZN2nn3web16ShowSharePageArg24SetApplicationAlbumEntryERKNS_6capsrv21ApplicationAlbumEntryE +00000000002590a0 g DF .text 0000000000000010 nvdcFreeDisplayEdid +000000000019c924 g DF .text 00000000000000d0 _ZN2nn5audio6server24AudioRendererManagerImpl21GetAudioDeviceServiceENS_2sf3OutINS3_13SharedPointerINS0_6detail12IAudioDeviceEEEvEERNS_6applet20AppletResourceUserIdE +0000000000169610 g DF .text 0000000000000060 _ZN2nn8settings6system23GetNxControllerSettingsEPNS1_20NxControllerSettingsEi +000000000024cd30 g DF .text 0000000000000014 _ZN2nn5album12LibraryState20EnsureShareAvailableEv +00000000000a6930 w DF .text 000000000000029c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSG_ILi1ELi33ELm0EEENSG_ILi2ELi33ELm0EEENSG_ILi3ELi34ELm0EEENSG_ILi4ELi34ELm0EEENSG_ILi5ELi34ELm0EEENSE_ILm24ELm8ELl8EEEEEELm32ELm8ELb0EEESO_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESV_NST_23InRawClientArgumentTypeILm4ELm4EvEENST_24BufferClientArgumentTypeESY_SY_SY_SY_SY_NSW_ILm24ELm8EvEEj +00000000007cdd50 w DO .rodata 00000000000000a9 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000002ca488 g DF .text 0000000000000020 _ZN7android22GraphicBufferAllocatorD2Ev +00000000000786fc g DF .text 00000000000004c4 nnmem_nlib_mq_open +0000000000168808 g DF .text 0000000000000050 _ZN2nn8settings6system43IsUserSystemClockAutomaticCorrectionEnabledEv +000000000021f248 g DF .text 0000000000000028 _ZN2nn3hid6detail20SharedMemoryAccessorC2Ev +00000000002cabf8 g DF .text 0000000000000010 _ZN7android19GraphicBufferMapperC1Ev +000000000009cdb0 w DF .text 0000000000000004 _ZN2nn2sf4hipc6server24HipcServerSessionManager35GetHipcServerSessionManagerInternalEj +00000000003ab10c g DF .text 0000000000000034 __pthread_getlocale_addr +0000000000023d98 g DF .text 0000000000000380 _ZN2nn5image6detail4jpeg15jpeg_idct_ifastEPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000000822fc g DF .text 0000000000000014 nnmem_nlib_disk_freespace +000000000029f6a0 g DF .text 0000000000000220 _ZN7android6Parcel17writeNativeHandleEPK13native_handle +00000000000befcc g DF .text 0000000000000008 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService7IsChildEv +00000000003e0314 g DF .text 00000000000000e0 ecvt +00000000000094d0 w DF .text 0000000000000008 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE8Block1284ZeroEv +000000000003f388 g DF .text 00000000000000f4 _ZN2nn4util9TSNPrintfEPcmPKcz +00000000003a9dcc w DF .text 0000000000000c94 __isoc99_vfscanf +000000000019dd14 g DF .text 0000000000000184 _ZN2nn5audio6server13CommandBuffer27GenerateDepopPrepareCommandEPNS0_10VoiceStateEPiiijb +00000000003e0c84 g DF .text 0000000000000094 strtoull +00000000000933dc g DF .text 0000000000000060 _ZN2nn2os6detail23MultiWaitHolderOfThread20RemoveFromObjectListEv +0000000000215cd8 g DF .text 0000000000000048 _ZN2nn3hid6detail34GetConsoleSixAxisSensorHandleForVrEPNS0_26ConsoleSixAxisSensorHandleE +00000000002360d4 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail18HidTemporaryServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +000000000011f598 g DF .text 0000000000000130 _ZN2nn7friends33GetFacedFriendRequestProfileImageEPmPKcPvm +000000000095be70 w DO .data 0000000000000018 _ZTIN2nn3hid6detail19UniquePadConfigLifoE +0000000000183cdc w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm17EE27InitializeShimLibraryHolderINS_6aocsrv6detail20IAddOnContentManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +00000000001aa448 g DF .text 0000000000000004 _ZN2nn5audio3dsp17SendCommandBufferEimmibm +000000000011f2c8 g DF .text 00000000000000f8 _ZN2nn7friends21AddFacedFriendRequestERKNS_7account3UidERKNS0_33FacedFriendRequestRegistrationKeyERKNS1_8NicknameEPKvm +0000000000063234 g DF .text 00000000000001b0 _ZN2nn2fs9MountLogoEPKcS2_NS_3ncm9ProgramIdE +0000000000095e58 g DF .text 00000000000000bc _ZN2nn2os6detail26ThreadManagerImplByHorizon22GetThreadContextUnsafeEPNS0_24ThreadContextInfoAarch64EPKNS0_10ThreadTypeE +00000000000d8a90 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +000000000003ca6c g DF .text 0000000000000064 _ZNK2nn4util6detail16IntrusiveDicImpl8FindImplERKNS0_17basic_string_viewIcNSt3__111char_traitsIcEEEE +000000000097d1e0 g DO .data 0000000000000078 _ZTCNSt3__19strstreamE0_NS_14basic_iostreamIcNS_11char_traitsIcEEEE +00000000001fe27c g DF .text 000000000000028c fsg_GridFit +00000000007b91f0 w DO .rodata 0000000000000028 _ZTSN2nn2sf4hipc6server17HipcServerMessageE +000000000013a058 g DF .text 00000000000000d0 _ZN2nn3nfc9GetNpadIdEPjRKNS0_12DeviceHandleE +00000000001528ac w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E32_nn_sf_sync_SetRequirementPresetEi +00000000000b29e8 g DF .text 00000000000000b4 _ZN2nn7account26InitializeForSystemServiceEv +00000000007d6610 g DO .rodata 0000000000000024 _ZTSN2nn5codec22OpusMultiStreamDecoderE +00000000001903e8 g DF .text 000000000000005c _ZN2nn5audio28RegisterAppletResourceUserIdENS_6applet20AppletResourceUserIdE +00000000000a1c50 g DF .text 0000000000000004 nnsocketSysctl +000000000013a734 g DF .text 00000000000000c4 _ZN2nn3nfc13StopDetectionERKNS0_12DeviceHandleE +000000000016f000 g DF .text 0000000000000038 _ZN2nn8settings6detail30DestroySettingsItemKeyIteratorEPNS0_5fwdbg23SettingsItemKeyIteratorE +0000000000076024 g DF .text 000000000000008c nnmem_nlib_utf32nlen_ +00000000001bafd8 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw11SetEyeColorEi +000000000009c354 g DF .text 0000000000000008 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase11RequestStopEv +00000000000570b8 w DF .text 0000000000000134 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJEEELm0ELm0ELb0EEESG_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectEj +00000000001bcdd8 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw8SetMoleYEi +0000000000959e40 w DO .data 0000000000000018 _ZTIN2nn5visrv2sf26IApplicationDisplayServiceE +00000000001700e0 g DF .text 0000000000000088 _ZN2nn8settings6detail28GetWirelessCertificationFileEPmPvm +000000000022eeb0 g DF .text 0000000000000040 _ZN2nn3hid14VibrationMixer10SetMixModeENS0_16VibrationMixModeE +00000000000c8200 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E50_nn_sf_sync_ReleaseCallerAppletCaptureSharedBufferEv +0000000000190188 g DF .text 000000000000005c _ZN2nn5audio31RequestSuspendAudioOutsForDebugENS_6applet20AppletResourceUserIdE +00000000000446fc g DF .text 0000000000000034 nndetailUnexpectedDefaultImpl +00000000001979b0 g DF .text 0000000000000100 _ZN2nn5audio36AcquireAudioDeviceSwitchNotificationEPNS_2os11SystemEventE +00000000001c9e2c g DF .text 0000000000000004 _ZN2nn5swkbd14InlineKeyboardD1Ev +000000000002fc70 g DF .text 000000000000001c _ZN2nn5image13ExifExtractorC1EPvm +000000000008c70c g DF .text 00000000000000f0 _ZN2nn3mem19NumberLineAllocator16GetTotalFreeSizeEv +0000000000979848 w DO .data 0000000000000010 _ZTINSt3__115basic_streambufIcNS_11char_traitsIcEEEE +00000000001d6b94 g DF .text 0000000000000188 _ZN2nn2vi6native23DeserializeNativeWindowEPNS1_18NativeWindowHolderEPKvm +000000000080be70 w DO .rodata 0000000000000134 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +0000000000348b5c w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb1EE16do_thousands_sepEv +000000000006b85c g DF .text 0000000000000104 _ZN2nn2fs16IsSdCardInsertedEv +0000000000329268 w DF .text 0000000000000008 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9showmanycEv +00000000002540d0 g DF .text 0000000000000008 _ZNK2nn3web26OfflineHtmlPageReturnValue10GetLastUrlEv +0000000000035918 g DF .text 00000000000007d4 nnutilZlib_inflate_fast +0000000000117f18 g DF .text 000000000000001c _ZNK2nn5codec11OpusDecoder17GetWorkBufferSizeEii +000000000022fcc4 g DF .text 0000000000000008 _ZNK2nn3hid15VibrationPlayer8IsLoadedEv +00000000000974b0 g DF .text 000000000000000c nnResultIsFailure +0000000000295214 g DF .text 0000000000000068 _ZNK7android7BBinder10findObjectEPKv +00000000002a1294 g DF .text 0000000000000148 _ZN7android6Parcel19ipcSetDataReferenceEPKhmPKjmPFvPS0_S2_mS4_mPvES6_ +00000000003e7f7c g DF .text 0000000000000018 __get_tls_data +00000000000391dc g DF .text 00000000000001ac nnutilZlib__tr_stored_block +000000000014ee90 g DF .text 000000000000005c _ZN2nn3ngc6detail15CompressedArrayD2Ev +00000000001d705c g DF .text 0000000000000040 _ZN2nn2vi6buffer11BufferQueue8FinalizeEv +00000000000b6c10 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm128EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +0000000000273794 g DF .text 0000000000000008 NvRmChannelOpenDeviceFile +0000000000217050 g DF .text 0000000000000060 _ZN2nn3hid6detail19DisableHandheldHidsEv +000000000034d9bc w DF .text 0000000000000390 _ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEcRKNS_12basic_stringIcS3_NS_9allocatorIcEEEE +000000000004ff30 g DF .text 0000000000000150 _ZN2nn2fs12GetEntryTypeEPNS0_18DirectoryEntryTypeEPKc +00000000000912e0 g DF .text 0000000000000018 nnosCreateThreadWithCoreNumber +000000000012a888 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +000000000012b958 g DF .text 0000000000000174 _ZN2nn2fs23CleanUpTemporaryStorageEv +00000000007eb560 w DO .rodata 000000000000001c _ZTSN2nn5audio6detail8IAudioInE +00000000003e33cc g DF .text 0000000000000044 wcsncmp +000000000016fe40 g DF .text 0000000000000070 _ZN2nn8settings6detail17SetDeviceNickNameERKNS0_6system14DeviceNickNameE +00000000001bc86c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw15GetMustacheTypeEv +00000000002cff20 g DF .text 0000000000000024 _ZN7android7String87toLowerEv +000000000034f164 g DF .text 000000000000015c _ZNSt3__17codecvtIwc11__mbstate_tEC1EPKcm +00000000001b6134 g DF .text 0000000000000028 _ZN2nn3mii21ParamCharInfoAccessorC1ERKNS0_8CharInfoE +000000000008fec0 g DF .text 0000000000000054 _ZN2nn2os19TryAcquireSemaphoreEPNS0_13SemaphoreTypeE +000000000097bd38 w DO .data 0000000000000010 _ZTINSt3__110money_baseE +00000000003628c0 w DF .text 00000000000000ac _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1ERKS5_ +0000000000358b64 g DF .text 0000000000000008 _ZNKSt3__114__codecvt_utf8IDsE16do_always_noconvEv +00000000001b529c g DF .text 0000000000000074 _ZN2nn2la25RequestJumpToSystemUpdateEv +000000000004b74c g DF .text 0000000000000010 _ZN2nn2fs29SetResultHandledByApplicationEb +000000000016b59c g DF .text 0000000000000044 _ZN2nn8settings20ResetXpadKeyboardMapEi +0000000000229660 g DF .text 0000000000000044 _ZN2nn3hid19GetJoyXpadLeftStateEPNS0_12JoyXpadStateERKNS0_9JoyXpadIdE +0000000000804d10 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi41EE4MaskE +000000000032987c w DF .text 0000000000000008 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9showmanycEv +000000000036ce5c g DF .text 0000000000000028 _ZNSt3__16thread20hardware_concurrencyEv +0000000000948940 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEEE +000000000015ee54 g DF .text 0000000000000128 _ZN2nn4pctl18PairingAccountInfo22GetMiiImageContentTypeEPmPcm +00000000007e3de0 w DO .rodata 00000000000000e4 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +000000000018c880 g DF .text 00000000000001f0 _ZN2nn5audio16VoiceInfoManager16AcquireVoiceInfoEii +000000000011b698 g DF .text 0000000000000008 _ZNK2nn3err18ErrorResultVariantcvNS_6ResultEEv +0000000000151f24 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E41_nn_sf_sync_CreateTemporaryNetworkProfileENS0_3OutINS0_13SharedPointerINS6_15INetworkProfileEEEvEENSP_INS_4util4UuidEvEERKNS6_2sf18NetworkProfileDataE +00000000001c3468 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw15SetMustacheTypeEi +000000000021d8e8 g DF .text 0000000000000078 _ZN2nn3hid6detail28SetControlPadRestrictionTypeENS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEENS0_25ControlPadRestrictionTypeE +0000000000156984 g DF .text 0000000000000018 _ZN2nn4nifm31RegisterRequestSocketDescriptorENS0_13RequestHandleEi +0000000000096ee8 g DF .text 0000000000000074 _ZN2nn2os6detail36InternalCriticalSectionImplByHorizon5EnterEv +0000000000183f98 w DF .text 0000000000000040 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_ListAddOnContentENS0_3OutIivEERKNS0_8OutArrayIiEEmii +00000000009492c8 w DO .data 0000000000000078 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account24IBaasAccessTokenAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6ObjectE +000000000004e11c g DF .text 00000000000000ac _ZN2nn2fs6detail10MountTable5MountEONSt3__110unique_ptrINS1_18FileSystemAccessorENS3_14default_deleteIS5_EEEE +00000000001d047c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E51_nn_sf_sync_ForceDetachSharedLayerFromLowLevelLayerENS_2vi7fbshare17SharedLayerHandleE +00000000000476cc g DF .text 0000000000000068 _ZN2nn2fs24HierarchicalRomFileTableC1Ev +00000000007b2130 w DO .rodata 000000000000001c _ZTSN2nn5fssrv2sf11IFileSystemE +000000000014550c g DF .text 0000000000000270 _ZN2nn3ngc6detail11AhoCorasick5MatchEPKvmPFbPKcS6_jPvES7_ +000000000019ef10 g DF .text 00000000000000bc _ZN2nn5audio6server12DetailAspectC2EPNS1_16CommandGeneratorENS0_20PerformanceEntryTypeEjNS0_21PerformanceDetailTypeE +00000000003dc6d8 g DF .text 0000000000000020 __freading +0000000000a68508 g DO .bss 0000000000000008 _ZN7android9SingletonINS_8ComposerEE9sInstanceE +000000000035a924 g DF .text 0000000000000040 _ZNSt3__18numpunctIwED2Ev +000000000022cd9c g DF .text 0000000000000048 _ZN2nn3hid26SetAccelerometerParametersERKNS0_19SixAxisSensorHandleEff +000000000000809c g DF .text 0000000000000034 _ZN2nn6crypto6detail10Sha256Impl21InitializeWithContextEPKNS0_13Sha256ContextE +000000000023a744 g DF .text 0000000000000028 _ZN2nn8irsensor6detail15IrSensorSession15ActivateServiceEv +000000000031609c g DF .text 0000000000000004 nngpioSetInterruptMode +0000000000199698 g DF .text 00000000000001c4 _ZN2nn5audio19AppendAudioInBufferEPNS0_7AudioInEPNS0_13AudioInBufferE +00000000000d9688 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +0000000000221dcc g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm5EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000001b6188 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor13GetFontRegionEv +000000000022df44 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm2EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000002867d4 g DF .text 000000000000000c NvRmGpuDeviceResumeFromPause +000000000039f650 g DF .text 0000000000000068 __gesf2 +00000000000bd4ac w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E12GetProxyInfoEv +0000000000295aec g DF .text 0000000000000024 _ZTv0_n48_N7android9BpRefBase20onIncStrongAttemptedEjPKv +000000000005797c w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm0ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeEj +000000000019cd48 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E17_nn_sf_sync_StartEv +000000000036ba00 g DF .text 0000000000000074 _ZNSt3__112strstreambuf9pbackfailEi +00000000001527e4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E12GetProxyInfoEv +00000000001891ac g DF .text 0000000000000030 _ZN2nn5audio14MemoryPoolInfo6AttachEv +0000000000188ed8 g DF .text 0000000000000008 _ZN2nn5audio15AudioBufferListINS0_25FinalOutputRecorderBufferEE5clearEv +00000000000d55e8 g DF .text 00000000000001f4 _ZN2nn4bcat26DeleteDeliveryCacheStorageENS_13ApplicationIdE +00000000001f9d3c g DF .text 0000000000000074 ScaleFuncCall +0000000000312280 g DF .text 0000000000000024 nvnDevtoolsBootstrap +000000000034f13c w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIcc11__mbstate_tED2Ev +000000000025cee8 g DF .text 000000000000007c NvOsFreeLeak +00000000000bc03c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE25_nn_sf_sync_ApplyResponseERKNS0_7InArrayIcEE +00000000001671a0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_SetUserAgreementCheckEnabledEb +00000000001865b4 g DF .text 0000000000000018 _ZN2nn5audio8AddDelayEPNS0_19AudioRendererConfigEPNS0_9DelayTypeEPvmPNS0_10SubMixTypeENS_8TimeSpanEi +000000000009edf8 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_S6_E30_nn_sf_sync_CloneCurrentObjectENS0_3OutINS0_12NativeHandleEvEE +00000000001936b8 g DF .text 00000000000000d0 _ZN2nn5audio38CreateAudioOutManagerForDebuggerByHipcEv +000000000022a054 g DF .text 000000000000000c _ZNK2nn3hid15KeyCodeComposer14GetDeadKeyModeEv +0000000000264798 g DF .text 0000000000000020 cuda_AllocAlign +00000000003dda14 g DF .text 0000000000000110 __fwritex +0000000000096138 g DF .text 0000000000000088 _ZN2nn2os6detail27InterruptEventImplByHorizon4WaitEv +0000000000947060 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000001e03dc g DF .text 00000000000000fc FSS_load_font_with_offset +000000000023d3b0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_E35_nn_sf_sync_SetAppletResourceUserIdENS_6applet20AppletResourceUserIdE +00000000008223b8 g DO .rodata 0000000000000004 _ZNSt3__18ios_base6skipwsE +00000000000cd510 w DF .text 00000000000002ac _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_20InHandleArgumentInfoILi0ELi1EEENSC_18BufferArgumentInfoILi0ELi21ELm128EEEEEELm8ELm0ELb1EEESO_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_26InHandleClientArgumentTypeENS2_24BufferClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001bc878 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetGlassTypeEv +0000000000951110 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000029e914 g DF .text 000000000000005c _ZN7android6Parcel13foreachObjectEPFvP18flat_binder_objectPvES3_ +0000000000118808 g DF .text 0000000000000004 _ZN2nn5codec22OpusMultiStreamDecoderD2Ev +00000000001bc854 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw13GetMouthColorEv +0000000000090bf8 g DF .text 000000000000001c _ZN2nn2os20DetachTransferMemoryEPNS0_18TransferMemoryTypeE +000000000033678c w DF .text 0000000000000464 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE23__do_get_floating_pointIfEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000003e1b84 g DF .text 000000000000002c __memrchr +0000000000214508 g DF .text 0000000000000060 _ZN2nn3hid6detail22InitializeAudioControlEv +000000000006e358 g DF .text 0000000000000100 _ZN2nn3htc28GetTargetEnvironmentVariableEPmPcmPKc +00000000003661a8 w DF .text 0000000000000048 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmRKS5_mm +00000000003a0f64 g DF .text 000000000000058c __divxc3 +000000000025ab4c g DF .text 00000000000000e8 nvdcutilOpen +000000000011768c g DF .text 0000000000000008 _ZNK2nn5codec19HardwareOpusDecoder13IsInitializedEv +00000000001b6718 g DF .text 000000000000000c _ZN2nn3mii20SetSpecialMiiKeyCodeEi +000000000035b5c4 g DF .text 0000000000000224 _ZNKSt3__120__time_get_c_storageIcE8__monthsEv +000000000097d2b0 g DO .data 0000000000000050 _ZTCNSt3__19strstreamE16_NS_13basic_ostreamIcNS_11char_traitsIcEEEE +00000000000fef2c g DF .text 000000000000006c silk_insertion_sort_increasing_all_values_int16 +0000000000172710 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object11DisposeImplEv +000000000022a060 g DF .text 0000000000000014 _ZN2nn3hid15KeyCodeComposer5ClearEv +00000000002390c0 g DF .text 0000000000000008 _ZN2nn8irsensor6detail19StatusManagerHolderC1Ev +00000000001a365c g DF .text 0000000000000158 _ZNK2nn5audio6server10PoolMapper6UpdateEPNS1_14MemoryPoolInfoEPKNS0_14MemoryPoolInfo11InParameterEPNS5_9OutStatusE +00000000003d3320 g DF .text 000000000000001c wctomb +0000000000296f98 g DF .text 00000000000000b4 _ZNK7android7IMemory7pointerEv +00000000003e22e0 g DF .text 0000000000000138 strlcpy +0000000000095ca8 g DF .text 0000000000000008 _ZN2nn2os6detail26ThreadManagerImplByHorizon11YieldThreadEv +00000000007d65b0 g DO .rodata 0000000000000019 _ZTSN2nn5codec11OpusDecoderE +000000000008f144 g DF .text 0000000000000064 _ZN2nn2os25InitializeMultiWaitHolderEPNS0_19MultiWaitHolderTypeEPNS0_16MessageQueueTypeENS0_20MessageQueueWaitTypeE +0000000000081c2c g DF .text 0000000000000038 nnmem_nlib_thread_getconcurrency +000000000094fff0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000027379c g DF .text 00000000000002a4 NvRmChannelOpen +00000000000b7498 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E23_nn_sf_sync_GetNicknameERKNS0_8OutArrayIcEE +000000000018a720 g DF .text 0000000000000008 _ZN2nn5audio8SinkInfo7CleanUpEv +00000000003966ac g DF .text 0000000000000054 _ZNSt12length_errorD1Ev +00000000003e3bf0 g DF .text 0000000000000090 clock +0000000000255c80 g DF .text 0000000000000050 _ZNK2nn3web20SharePageReturnValue10GetLastUrlEv +00000000002c54b8 g DF .text 0000000000000154 _ZN7android21SurfaceComposerClient10onFirstRefEv +000000000009134c g DF .text 0000000000000004 nnosTryAcquireSemaphore +00000000000a55d0 g DF .text 0000000000000180 _ZN2nn6socket6detail21GetResourceStatisticsENS0_14StatisticsTypeEPvmj +00000000007e92bc g DO .rodata 0000000000000004 _ZN2nn5audio9VoiceType15ChannelCountMaxE +000000000015e878 g DF .text 0000000000000050 _ZN2nn4pctl13StopPlayTimerEv +0000000000342d48 w DF .text 0000000000000010 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11do_get_timeES4_S4_RNS_8ios_baseERjP2tm +000000000017101c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_GetConfigurationId1ENS0_3OutINS5_7factory16ConfigurationId1EvEE +0000000000356984 g DF .text 0000000000000054 _ZNKSt3__112ctype_bynameIwE10do_tolowerEPwPKw +0000000000150e60 g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient26UnregisterSocketDescriptorEi +000000000019d30c g DF .text 0000000000000008 _ZNK2nn5audio6server13CommandBuffer8GetCountEv +0000000000068558 g DF .text 000000000000004c _ZN2nn2fs20CreateSystemSaveDataEmmllj +00000000001229ec g DF .text 0000000000000028 _ZN2nn7friends12UserPresence10InitializeEv +000000000012af78 g DF .text 0000000000000230 _ZN2nn2fs17MountAddOnContentEPKcNS_13ApplicationIdEiPvm +000000000023d450 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail20IrSensorSystemServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +0000000000294ef4 g DF .text 0000000000000008 _ZN7android7IBinder19queryLocalInterfaceERKNS_8String16E +000000000006f318 g DF .text 0000000000000054 _ZN2nn4lmem17SetExpHeapGroupIdEPNS0_6detail8HeapHeadEt +000000000015cfac g DF .text 0000000000000054 _ZN2nn4pctl31UnlockSystemSettingsRestrictionEPKc +000000000036c7d0 g DF .text 0000000000000144 _ZNSt3__112system_errorC1ENS_10error_codeEPKc +00000000003e1548 g DF .text 0000000000000614 memmem +0000000000171afc w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm576EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +0000000000344ef0 g DF .text 0000000000000500 _ZNKSt3__118__time_get_storageIcE15__do_date_orderEv +0000000000041234 g DF .text 0000000000000018 _ZN2nn4diag6detail10nnText_ldnEPKc +000000000036c0d4 g DF .text 0000000000000030 _ZThn16_NSt3__19strstreamD1Ev +00000000003abffc w DF .text 0000000000000004 ftruncate64 +00000000007adc4c g DO .rodata 0000000000000004 _ZN2nn4util8Color4u812ConstantGrayE +000000000023d448 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail20IrSensorSystemServerEEEEES6_E17GetCmifBaseObjectEv +00000000007adc40 g DO .rodata 0000000000000004 _ZN2nn4util15RelocationTable15PackedSignatureE +0000000000093344 g DF .text 0000000000000048 _ZNK2nn2os6detail23MultiWaitHolderOfThread10IsSignaledEv +000000000022f9b4 g DF .text 0000000000000028 _ZN2nn3hid23VibrationNodeConnectionC1Ev +000000000033fe70 w DF .text 00000000000005d4 _ZNSt3__19__num_putIwE23__widen_and_group_floatEPcS2_S2_PwRS3_S4_RKNS_6localeE +0000000000155800 g DF .text 0000000000000068 _ZN2nn4nifm38SetEthernetCommunicationEnabledForTestEb +0000000000184fe0 g DF .text 00000000000004bc _ZN2nn5audio29InitializeAudioRendererConfigEPNS0_19AudioRendererConfigERKNS0_22AudioRendererParameterEPvm +000000000095bb18 w DO .data 0000000000000020 _ZTVN2nn3hid6detail16NpadJoyRightLifoE +0000000000953530 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000264dac g DF .text 0000000000000094 _ZN2nv18InitializeGraphicsEPvm +000000000034f0d4 w DF .text 0000000000000008 _ZNKSt3__18messagesIwE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE +00000000001b8d60 g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw11GetHairFlipEv +0000000000286ce0 g DF .text 0000000000000024 NvRmGpuChannelSetPriority +000000000014f5b8 g DF .text 00000000000000a4 _ZNK2nn3ngc6detail15CompressedArray6ExportEPNS1_12BinaryWriterE +00000000008017b0 w DO .rodata 0000000000000104 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +0000000000979c68 w DO .data 0000000000000080 _ZTVNSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +000000000039f3b4 g DF .text 0000000000000068 __gedf2 +00000000003e3410 g DF .text 0000000000000044 wcsncpy +0000000000095cb0 g DF .text 0000000000000050 _ZN2nn2os6detail26ThreadManagerImplByHorizon14ChangePriorityEPNS0_10ThreadTypeEi +0000000000249680 g DF .text 0000000000000140 _ZN22nerd_gillette_internal5otete7jaimev215IdentifyClusterEPKNS1_23FullSilhouetteCodecData7SegmentEhNS_15NumericalVectorIsLm2EEE +00000000000b6278 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +000000000008df80 g DF .text 0000000000000068 _ZN2nn2os14StopTimerEventEPNS0_14TimerEventTypeE +00000000007ce260 w DO .rodata 00000000000000bc _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000125b00 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E68_nn_sf_sync_GetPlayHistoryRegistrationKeyWithNetworkServiceAccountIdENS0_3OutINS5_26PlayHistoryRegistrationKeyEvEENS_7account23NetworkServiceAccountIdEb +000000000011d790 g DF .text 000000000000005c _ZN2nn7friends14GetProfileListEPNS0_12AsyncContextEPNS0_7ProfileEPKNS_7account23NetworkServiceAccountIdEi +00000000003afaa8 g DF .text 0000000000000084 ilogbf +0000000000353b54 g DF .text 0000000000000040 _ZNSt3__16localeaSERKS0_ +0000000000361fd8 g DF .text 000000000000003c _ZNSt3__119__shared_mutex_baseC1Ev +00000000007ae7d0 g DO .rodata 0000000000000010 _ZN2nn4util8Vector4f13ConstantUnitWE +000000000039cc24 g DF .text 0000000000000028 _Unwind_GetCFA +00000000000bd33c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E27_nn_sf_sync_GetProfileImageENS0_3OutIjvEERKNS0_9OutBufferE +0000000000039388 g DF .text 0000000000000090 nnutilZlib__tr_flush_bits +000000000015e6cc g DF .text 000000000000010c _ZN2nn4pctl16GetUnlinkedEventEv +000000000080cde0 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail18HidTemporaryServerEEEEEE13ServiceObjectE +00000000003afb2c g DF .text 00000000000000d0 ilogbl +000000000012342c g DF .text 0000000000000008 _ZN2nn7friends11UserSetting29GetFriendCodeNextIssuableTimeEv +0000000000296d18 g DF .text 0000000000000014 _ZTv0_n24_N7android10IInterfaceD1Ev +00000000003ab0fc g DF .text 0000000000000004 __pthread_mutex_unlock +00000000003c7284 g DF .text 0000000000000090 atanhf +0000000000118830 g DF .text 0000000000000008 _ZNK2nn5codec22OpusMultiStreamDecoder13IsInitializedEv +00000000002c3898 g DF .text 0000000000000024 _ZN7android14SurfaceControlD0Ev +0000000000333118 w DF .text 0000000000000004 _ZNSt3__114basic_iostreamIcNS_11char_traitsIcEEED2Ev +000000000002a3f0 g DF .text 0000000000000030 _ZN2nn5image6detail4jpeg14jpeg_get_smallEPNS2_18jpeg_common_structEm +00000000001e4bb8 g DF .text 0000000000000108 delete_fs_cache +00000000002c8db8 g DF .text 0000000000000054 _ZN7android5Fence11waitForeverEPKc +000000000084d120 g DO .rodata 0000000000000040 atanhi +0000000000174d68 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_SetExternalRtcResetFlagEb +00000000002cb3bc g DF .text 0000000000000084 _ZN7android6RegionC2ERKNS_4RectE +00000000003c7314 g DF .text 0000000000000110 atanhl +00000000007dfb00 g DO .rodata 0000000000000023 _ZTSN2nn3ngc6detail16NullOutputStreamE +00000000002cdf54 g DF .text 0000000000000004 _ZNK7android12SharedBuffer7acquireEv +00000000003e2e94 g DF .text 000000000000012c strverscmp +00000000007ce140 w DO .rodata 000000000000001a _ZTSN2nn3apm14ISystemManagerE +00000000003d33e4 g DF .text 0000000000000024 lrand48 +0000000000268f00 g DF .text 0000000000000174 NvOsDrvIoctl2 +0000000000126050 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_CancelFriendRequestERKNS_7account3UidENS5_9RequestIdE +000000000016c8e4 g DF .text 0000000000000070 _ZN2nn8settings6detail22GetBluetoothEnableFlagEPb +0000000000269074 g DF .text 0000000000000190 NvOsDrvIoctl3 +00000000002ca7c0 g DF .text 000000000000008c _ZN7android22GraphicBufferAllocator4freeEPK13native_handle +0000000000147ff8 g DF .text 00000000000005fc _ZNK2nn3ngc6detail3Bp_8FindOpenEj +000000000022e9c8 g DF .text 0000000000000050 _ZN2nn3hid20IsVibrationPermittedEv +00000000001f0014 g DF .text 0000000000000030 FS_close +0000000000237a40 g DF .text 0000000000000080 _ZN2nn8irsensor6detail20RunPointingProcessorERKNS0_14IrCameraHandleE +00000000002cafdc g DF .text 000000000000000c _ZN7android19GraphicBufferMapper10apiVersionEv +00000000000b8294 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E56_nn_sf_sync_RefreshNintendoAccountUserResourceCacheAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000118c14 g DF .text 0000000000000040 _ZN2nn5codec23GetOpusPacketFrameCountEPKhm +000000000024edc8 g DF .text 000000000000001c _ZN2nn6capsrv12LibraryState26GetMovieWriteStreamSessionEv +00000000003e313c g DF .text 000000000000004c wcschr +00000000000694b8 g DF .text 000000000000014c _ZN2nn2fs22GetSaveDataJournalSizeEPlNS0_15SaveDataSpaceIdEm +00000000003164b8 g DF .text 00000000000000e4 _ZN2nn3i2c16GetManagerByHipcEPKc +00000000007ae7a0 g DO .rodata 0000000000000010 _ZN2nn4util8Vector4f13ConstantUnitXE +0000000000070854 g DF .text 0000000000000060 _ZN2nn4lmem6detail11DumpExpHeapEPNS1_8HeapHeadE +000000000008289c g DF .text 0000000000000160 _ZN2nn7nlibsdk4heap12TlsHeapCacheC1EPNS1_14TlsHeapCentralEj +0000000000285ec4 g DF .text 0000000000000008 nvgr_get_format +000000000024cc0c g DF .text 0000000000000010 _ZNK2nn5album12LibraryState13IsInitializedEv +000000000029587c g DF .text 0000000000000070 _ZN7android9BpRefBaseD1Ev +00000000003ab1f4 g DF .text 0000000000000004 sem_wait +0000000000366958 w DF .text 0000000000000048 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmRKS5_mm +00000000000b9604 w DF .text 0000000000000170 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl8EEENSG_ILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm16ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENSS_ILm4ELm4EEENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000097e60 g DF .text 000000000000016c _ZN2nn2ro12UnloadModuleEPNS0_6ModuleE +0000000000166fc8 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5prepo6detail3ipc13IPrepoServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +0000000000360d4c g DF .text 0000000000000004 _ZNSt3__119__shared_weak_countD1Ev +00000000001521a4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E31_nn_sf_sync_SetDefaultIpSettingERKNS5_13IpSettingDataE +0000000000262edc g DF .text 0000000000000058 NvOsGetTimeUS +00000000000d8f48 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +000000000014046c g DF .text 00000000000000b8 _ZN2nn3nfp23RecreateApplicationAreaERKNS0_12DeviceHandleERKNS0_25ApplicationAreaCreateInfoE +00000000001a069c g DF .text 0000000000000150 _ZN2nn5audio6server16CommandGenerator23GenerateFinalMixCommandEv +000000000022af2c g DF .text 000000000000004c _ZN2nn3hid6system20BindNfcActivateEventEjPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000092838 g DF .text 0000000000000178 _ZN2nn2os6detail17MemoryHeapManager11SetHeapSizeEm +00000000008052b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi86EE4MaskE +00000000003e7648 g DF .text 0000000000000018 __nnmusl_SignalConditionVariable +00000000000dd894 g DF .text 000000000000002c opus_strerror +0000000000956d20 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags6LatestE +0000000000184cc4 g DF .text 0000000000000028 _ZN2nn5audio6detail22GetConfigOutStatusSizeERKNS0_22AudioRendererParameterE +000000000097b8e8 w DO .data 0000000000000010 _ZTINSt3__114__num_get_baseE +00000000000a99bc w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESV_NS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000007f61b0 g DO .rodata 0000000000000018 _ZN2nn3mii6detail9MoleColorE +0000000000041264 g DF .text 000000000000002c _ZN2nn4edid17VisitAudioFormatsEPKNS0_4EdidEPFbPKNS0_15AudioFormatInfoEPvES7_ +00000000000a18d4 g DF .text 000000000000009c _ZN2nn6socket5FcntlEiiz +0000000000199650 g DF .text 0000000000000008 _ZN2nn5audio20GetAudioInSampleRateEPKNS0_7AudioInE +000000000025cca4 g DF .text 0000000000000004 NvOsSetAllocHook +0000000000122234 g DF .text 0000000000000008 _ZNK2nn7friends15FriendCandidate7IsValidEv +000000000029dc08 g DF .text 000000000000002c _ZN7android6Parcel9initStateEv +00000000000be8bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E19_nn_sf_sync_HasDoneENS0_3OutIbvEE +00000000007ae7b0 g DO .rodata 0000000000000010 _ZN2nn4util8Vector4f13ConstantUnitYE +00000000001bcd14 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetNicknameERKNS0_8NicknameE +0000000000107e60 g DF .text 0000000000000378 silk_process_gains_FIX +0000000000342d40 w DF .text 0000000000000008 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13do_date_orderEv +00000000000bf3e0 g DF .text 0000000000000018 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarD2Ev +0000000000090fe4 g DF .text 0000000000000010 nnosAllocateMemoryForThreadLocal +00000000000a7630 w DF .text 0000000000000214 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSE_ILm4ELm4ELl4EEENSG_ILi1ELi33ELm0EEEEEELm8ELm8ELb0EEESK_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESR_NSP_23InRawClientArgumentTypeILm4ELm4EvEENSP_24BufferClientArgumentTypeEST_SU_j +0000000000156610 g DF .text 000000000000006c _ZN2nn4nifm20RemoveNetworkProfileERKNS_4util4UuidE +00000000002d2874 g DF .text 0000000000000014 _ZN7android10VectorImpl4sortEPFiPKvS2_E +00000000000cde04 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE17GetCmifBaseObjectEv +00000000000d20f0 g DF .text 0000000000000150 _ZN2nn3apm20CheckPerformanceListENS0_15PerformanceModeENS0_24PerformanceConfigurationE +000000000016b2c0 g DF .text 0000000000000078 _ZN2nn8settings7factory30GetWirelessLanCountryCodeCountEPi +0000000000216bec g DF .text 00000000000000b4 _ZN2nn3hid6detail15FinalizeGestureEv +00000000002a15f4 g DF .text 0000000000000040 _ZN7android6Parcel4BlobD2Ev +000000000022fcbc g DF .text 0000000000000008 _ZN2nn3hid15VibrationPlayer6UnloadEv +00000000002599f4 g DF .text 0000000000000008 nvdcFlipProposeSafe +00000000000c055c g DF .text 0000000000000028 _ZN2nn7account28NetworkServiceAccountManager30SetSystemProgramIdentificationERKNS0_27SystemProgramIdentificationE +0000000000958ea0 w DO .data 0000000000000018 _ZTIN2nn5audio6server10EffectInfoILNS0_10EffectTypeE1ENS0_20BufferMixerParameterEEE +0000000000003034 g DF .text 00000000000000b8 _ZN2nn6crypto6detail14bigint_sub_modEPjPKjS4_S4_i +00000000000bffa4 g DF .text 00000000000000a0 _ZN2nn7account28NetworkServiceAccountManager37RefreshCachedNintendoAccountInfoAsyncEPNS0_12AsyncContextE +000000000015b45c g DF .text 0000000000000068 _ZN2nn2oe27GetDefaultDisplayResolutionEPiS1_ +000000000019bf84 g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem18GetRenderingDeviceEv +00000000002a167c g DF .text 00000000000000fc _ZN7android12ProcessState4selfEv +00000000003ba97c g DF .text 000000000000004c clogf +0000000000152a9c w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E25_nn_sf_sync_GetAppletInfoENS0_3OutIjvEESQ_SQ_RKNS0_9OutBufferEj +00000000001682ac g DF .text 0000000000000048 _ZN2nn8settings6system24SetBluetoothBoostEnabledEb +0000000000121fe8 g DF .text 0000000000000008 _ZN2nn7friends16DaemonSuspensionC2Ev +00000000001bc7c8 g DF .text 000000000000000c _ZNK2nn3mii6detail12StoreDataRaw11GetCreateIdEv +00000000003335b4 g DF .text 00000000000000d4 _ZNSt3__18ios_base17register_callbackEPFvNS0_5eventERS0_iEi +00000000003ba9c8 g DF .text 000000000000003c clogl +00000000000cec28 w DF .text 0000000000000168 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_20InObjectArgumentInfoILi0ELi0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_26InObjectClientArgumentTypeEj +00000000001d47ec g DF .text 0000000000000070 _ZN2nn2vi19SetLayerScalingModeEPNS0_5LayerENS0_11ScalingModeE +00000000000bd838 g DF .text 00000000000000a0 _ZN2nn7account12AsyncContextD1Ev +000000000021e468 g DF .text 00000000000000b8 _ZN2nn3hid6detail17BindIrSensorEventERjPNS_2os15SystemEventTypeENS3_14EventClearModeE +000000000022ff28 g DF .text 0000000000000008 _ZNK2nn3hid15VibrationPlayer20GetLoopStartPositionEv +000000000026daec g DF .text 00000000000000e0 NvRmSurfaceLoadJson +0000000000154414 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +00000000007ae7c0 g DO .rodata 0000000000000010 _ZN2nn4util8Vector4f13ConstantUnitZE +0000000000269360 g DF .text 00000000000000cc _Z17NvOsDrvQueryEventijPN2nn2os15SystemEventTypeE +0000000000322148 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIffEEPfEEjT0_S5_S5_S5_S5_T_ +0000000000346fc4 w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb1EE13do_pos_formatEv +0000000000951e60 w DO .data 0000000000000018 _ZTIN2nn2lm11ILogServiceE +000000000022e92c g DF .text 0000000000000054 _ZN2nn3hid31IsUsbFullKeyControllerConnectedERKj +000000000015faf8 g DF .text 000000000000067c _ZN2nn4pctl6detail3ipc28InitializeIpcSessionIfNeededEv +00000000001c956c g DF .text 00000000000000d4 _ZN2nn5swkbd9SetOkTextEPNS0_14KeyboardConfigEPKDs +000000000019c0f0 g DF .text 000000000000001c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl5StartEv +0000000000186af4 g DF .text 000000000000001c _ZN2nn5audio15GetDelayDryGainEPKNS0_9DelayTypeE +00000000000473b4 g DF .text 0000000000000018 _ZN2nn2fs20DefaultResultHandlerENS_6ResultE +00000000003a7c44 g DF .text 0000000000000000 fabs +00000000003e77c4 g DF .text 00000000000000a4 __nnmusl_TimedAcquireSemaphore +00000000009588b0 w DO .data 0000000000000018 _ZTIN2nn5audio6detail36IFinalOutputRecorderManagerForAppletE +00000000003e01f4 g DF .text 0000000000000088 atoll +000000000013a2f8 g DF .text 00000000000000c4 _ZN2nn3nfc25ReleasePassThroughSessionERKNS0_12DeviceHandleE +0000000000023b20 g DF .text 0000000000000278 _ZN2nn5image6detail4jpeg15jpeg_fdct_islowEPiPPhi +00000000001325b0 w DF .text 000000000000024c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutHandleClientArgumentTypeENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000001ce9b8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_CloseSharedLayerENS_2vi7fbshare17SharedLayerHandleE +00000000003dbffc g DF .text 0000000000000048 tsearch +000000000012a774 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_7friends6detail3ipc28IDaemonSuspendSessionServiceEEEvi +00000000001812b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E32_nn_sf_sync_GetSetupResutltValueENS0_3OutIjvEE +00000000001a3020 g DF .text 000000000000000c _ZN2nn5audio6server13EffectContext10InitializeEPNS1_14EffectInfoBaseEi +00000000002cac80 g DF .text 0000000000000058 _ZN7android19GraphicBufferMapper4lockEPK13native_handleiRKNS_4RectEPPv +00000000000bee78 w DF .text 00000000000000a0 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm17EE27InitializeShimLibraryHolderINS_7account24IBaasAccessTokenAccessorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENKUlPvE_clESF_ +00000000000be398 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_7account24IBaasAccessTokenAccessorENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +000000000022d938 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm3EEEiPNS0_16TouchScreenStateIXT_EEEi +00000000003c3638 g DF .text 000000000000021c __putenv +0000000000182d68 g DF .text 0000000000000004 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTask6CancelEv +000000000012222c g DF .text 0000000000000008 _ZNK2nn7friends15FriendCandidate13GetPlayRecordEv +000000000097b900 w DO .data 0000000000000028 _ZTINSt3__19__num_getIcEE +00000000007c78d0 w DO .rodata 0000000000000104 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000000d18d4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000252e2c g DF .text 00000000000003d4 _ZN2nn3web16ShowLobbyPageArgC2Ev +000000000015847c g DF .text 0000000000000004 _ZN2nn4nifm6detail12HttpResponseD2Ev +0000000000117f34 g DF .text 0000000000000008 _ZNK2nn5codec11OpusDecoder13IsInitializedEv +00000000002b3b2c g DF .text 0000000000000088 _ZN7android12ConsumerBase25setFrameAvailableListenerERKNS_2wpINS0_22FrameAvailableListenerEEE +00000000001a7d10 w DF .text 0000000000000030 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_E47_nn_sf_sync_OpenAudioRendererForManualExecutionENS0_3OutINS0_13SharedPointerINS5_14IAudioRendererEEEvEERKNS5_30AudioRendererParameterInternalEmONS0_12NativeHandleEmNS_6applet20AppletResourceUserIdE +000000000014decc g DF .text 0000000000000090 _ZN2nn3ngc6detail9SparseSetC1EOS2_ +00000000003dd4f0 w DF .text 0000000000000078 __isoc99_fscanf +0000000000186b10 g DF .text 000000000000004c _ZN2nn5audio15SetDelayDryGainEPNS0_9DelayTypeEf +00000000002d273c g DF .text 0000000000000084 _ZN7android10VectorImpl8insertAtEmm +00000000002c7e64 g DF .text 0000000000000008 hw_get_module_by_class +000000000009901c g DF .text 00000000000004b8 _ZN2nn2ro6detail8RoModule10RelocationEb +0000000000256714 g DF .text 000000000000013c _ZN2nn3web14ShowWebPageArg6SetUidERKNS_7account3UidE +000000000097b8d0 g DO .data 0000000000000018 _ZTINSt3__115numpunct_bynameIwEE +000000000005c928 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm1ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000285ff4 g DF .text 0000000000000040 nvgr_set_shadow_memory +0000000000239f78 g DF .text 00000000000000a8 _ZN2nn8irsensor6detail15IrSensorSession20RunPointingProcessorERKNS0_14IrCameraHandleERKNS0_29PackedPointingProcessorConfigE +000000000022f340 g DF .text 00000000000000a8 _ZN2nn3hid13VibrationNode14DisconnectFromEPS1_ +000000000008d214 g DF .text 0000000000000004 _ZN2nn2os15QueryMemoryInfoEPNS0_10MemoryInfoE +000000000080c1a0 w DO .rodata 00000000000000eb _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_EE +000000000014ba98 g DF .text 0000000000000084 _ZN2nn3ngc6detail7SbvRankD2Ev +000000000026b838 g DF .text 0000000000000174 NvRmMultiplanarSurfaceSetup +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__16locale5facetD1Ev +0000000000047544 g DF .text 0000000000000008 _ZN2nn2fs24HierarchicalRomFileTable31QueryFileEntryBucketStorageSizeEl +000000000084d160 g DO .rodata 0000000000000040 atanlo +0000000000170abc g DF .text 0000000000000070 _ZN2nn8settings6detail24GetWirelessLanEnableFlagEPb +00000000001d7784 g DF .text 00000000000000c0 _ZN2nn6fontll6detail12ReadCoverageEPKvtt +00000000007a8610 g DO .rodata 0000000000000019 _ZTSN2nn5image11JpegDecoderE +00000000000a1a84 g DF .text 0000000000000004 nnsocketRecvFrom +00000000001a5bcc g DF .text 00000000000001d8 _ZN2nn5audio6server9VoiceInfo17UpdateWaveBuffersEPNS0_6common17BehaviorParameter9ErrorInfoEiPKNS0_9VoiceInfo11InParameterEPPNS0_10VoiceStateERNS1_10PoolMapperERKNS1_12BehaviorInfoE +00000000001da5e4 g DF .text 0000000000000010 _ZN2nn6fontll18ScalableFontEngine11SetAutoHintEb +000000000034790c w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb1EE11do_groupingEv +0000000000363d60 w DF .text 000000000000018c _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertENS_11__wrap_iterIPKcEEc +000000000003b880 g DF .text 0000000000000008 _ZNK2nn4util17BinaryBlockHeader12GetBlockSizeEv +000000000084f110 g DO .rodata 0000000000000010 __pio2_hi +000000000001e81c g DF .text 0000000000000328 _ZN2nn5image6detail4jpeg27jpeg_core_output_dimensionsEPNS2_22jpeg_decompress_structE +000000000005fe7c g DF .text 00000000000000b4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter28DoDeleteDirectoryRecursivelyEPKc +000000000009d1b8 g DF .text 00000000000000a0 _ZN2nn2sf4hipc6server24HipcServerSessionManager23ProcessInvokeMethodImplEONS0_4cmif6server20CmifServerObjectInfoEPNS2_17HipcServerSessionEPKNS1_6detail25HipcMessageBufferAccessorEPKNSA_21HipcMessageHeaderInfoEPvm +00000000001c7a14 g DF .text 000000000000000c _ZN2nn3mii13AppletManager15SetResultCancelEv +0000000000823d20 w DO .rodata 0000000000000019 _ZTSNSt3__111__money_getIwEE +00000000001b5328 g DF .text 000000000000004c _ZN2nn2la27AppletToNifmArgumentsReader20TryPopFromOutChannelENS_6applet19LibraryAppletHandleE +0000000000180f84 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm32ELm8ELl0EEEEEELm32ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm32ELm8EvEEj +00000000002cc084 g DF .text 0000000000000120 _ZNK7android6Region9translateEii +000000000002c06c g DF .text 00000000000000d8 _ZN2nn5image6detail19InitializeIfdHeaderEPNS1_9IfdHeaderEPKNS1_12ValuedIfdTagEtt +00000000000b80c8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEE29_nn_sf_sync_CheckAvailabilityEv +000000000032eb78 w DF .text 00000000000000e8 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE4syncEv +0000000000804550 w DO .rodata 000000000000002e _ZTSN2nn3hid6detail27SixAxisSensorCountStateLifoE +000000000017b5ac w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E16_nn_sf_sync_PeekENS0_3OutIjvEERKNS0_9OutBufferE +0000000000169938 g DF .text 0000000000000044 _ZN2nn8settings6system18SetNetworkSettingsEPKNS1_15NetworkSettingsEi +00000000003e6590 g DF .text 00000000000001cc __nnmusl_DirRead +0000000000232198 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E46_nn_sf_sync_ResetSixAxisSensorFusionParametersENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +0000000000954f50 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_EE +000000000096d660 g DO .data 0000000000000020 _ZTTN7android12ConsumerBaseE +000000000024dae4 g DF .text 00000000000000d8 _ZN2nn5album22SaveAndShareScreenshotEPNS0_7ShareIdEPKvmNS0_9ImageSizeENS0_16ImageOrientationENS0_17AlbumReportOptionERKNS_7account3UidE +00000000000c62a4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000003d34d4 g DF .text 0000000000000038 seed48 +000000000036117c g DF .text 0000000000000024 _ZNSt3__115recursive_mutexC2Ev +00000000000cbd88 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE31_nn_sf_sync_GetWindowControllerENS0_3OutINS0_13SharedPointerINS6_17IWindowControllerEEEvEE +00000000001ca398 g DF .text 000000000000003c _ZN2nn5swkbd6detail18InlineKeyboardImpl10InitializeERKNS0_13InitializeArgE +00000000002217dc g DF .text 00000000000000a4 _ZN2nn3hid6detail19FinalizeTouchScreenEv +00000000003cd234 g DF .text 0000000000000038 nearbyint +00000000000c66d4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000003ab020 g DF .text 0000000000000014 pthread_condattr_getpshared +00000000009492b0 w DO .data 0000000000000018 _ZTIN2nn2sf22UnitHeapMemoryResourceE +00000000000c1958 g DF .text 0000000000000014 _ZN2nn7account8NotifierC1Ev +000000000022dcf8 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm13EEEiPNS0_16TouchScreenStateIXT_EEEi +0000000000173ac0 w DF .text 0000000000000168 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_24BufferClientArgumentTypeEj +00000000001fb888 g DF .text 0000000000000360 apply_offsets +00000000002952e0 g DF .text 0000000000000054 _ZN7android7BBinderD2Ev +00000000000ba7f8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEE12GetProxyInfoEv +00000000000d8658 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E29_nn_sf_sync_BlockDeliveryTaskENS_13ApplicationIdE +0000000000255088 g DF .text 0000000000000094 _ZN2nn3web6detail24ShowOfflinePageArgDetail15SetDocumentKindEPhRKNS1_19OfflineDocumentKindE +0000000000082ce0 w DF .text 00000000000000f0 _ZN2nn7nlibsdk4heap12TlsHeapCache14FreeFunc_Mode0INSt3__117integral_constantIbLb0EEEEEiPS2_Pv +00000000000a22a0 g DF .text 0000000000000030 _ZN2nn6socket6detail12GetLastErrnoEv +00000000003613d8 g DF .text 0000000000000080 _ZNSt3__111timed_mutex8try_lockEv +00000000007d4bce g DO .rodata 0000000000000002 silk_type_offset_no_VAD_iCDF +0000000000220614 g DF .text 0000000000000010 _ZN2nn3hid6detail23MakeSixAxisSensorHandleEhii +000000000013a8e0 g DF .text 00000000000001d8 _ZN2nn3nfp6client20CreateDebugInterfaceEv +000000000006eea8 g DF .text 0000000000000054 _ZN2nn4lmem10HasAddressEPNS0_6detail8HeapHeadEPv +00000000000c6ce8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_EnterFatalSectionEv +00000000002cb91c g DF .text 0000000000000058 _ZN7android6Region14makeBoundsSelfEv +0000000000064dc8 g DF .text 00000000000000b4 _ZN2nn2fs24UnregisterAllExternalKeyEv +0000000000182d6c g DF .text 0000000000000004 _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTaskC2ENS_2os14EventClearModeENS0_34EnsureNetworkClockAvailabilityModeE +0000000000198d18 g DF .text 0000000000000010 _ZN2nn5audio17SetAudioInEnabledEb +0000000000804e10 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi49EE4MaskE +0000000000123818 g DF .text 0000000000000014 _ZN2nn7friends13FriendSettingC2Ev +00000000002cfbdc g DF .text 0000000000000040 _ZN7android7String810lockBufferEm +0000000000113d98 g DF .text 0000000000000140 opus_multistream_decoder_create +00000000001b15b4 g DF .text 0000000000000024 _ZN2nn2ec37ShowShopApplicationInformationForMenuENS0_5NsUidERKNS_7account3UidENS0_8SourceIdEPKc +0000000000975f60 g DO .data 0000000000000010 _ZTIN7android10VectorImplE +00000000003e3188 g DF .text 0000000000000040 wcscmp +000000000007e404 g DF .text 0000000000000160 nnmem_nlib_strto_float +000000000094b988 w DO .data 00000000000000a8 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ISystemAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000007d4e37 g DO .rodata 0000000000000012 silk_rate_levels_iCDF +00000000007fb6f8 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail23RandomMiiMouthTypeTableE +00000000003594f8 g DF .text 0000000000000098 _ZNKSt3__115__codecvt_utf16IDsLb0EE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_ +00000000000a1c38 g DF .text 0000000000000004 nnsocketFreeAddrInfo +0000000000065b88 w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE12DoDeleteFileEPKc +0000000000264b94 g DF .text 0000000000000004 NvOsGetCurrentThreadId +000000000004b820 g DF .text 0000000000000034 _ZN2nn2fs6detail15LogErrorMessageENS_6ResultEPKc +00000000002a689c g DF .text 0000000000000270 _ZN7android22IGraphicBufferConsumer10BufferItem9unflattenERPKvRmRPKiS5_ +0000000000354654 g DF .text 00000000000000ac _ZNSt3__114collate_bynameIcEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +000000000036dea8 g DF .text 0000000000000034 __cxa_bad_cast +000000000019a678 g DF .text 00000000000000a8 _ZN2nn5audio31AppendFinalOutputRecorderBufferEPNS0_19FinalOutputRecorderEPNS0_25FinalOutputRecorderBufferE +000000000023c90c w DF .text 0000000000000190 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENS7_18OutRawArgumentInfoILm16ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENSB_ILm4ELm4ELl0EEEEEELm16ELm16ELb1EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSN_24OutRawClientArgumentTypeILm16ELm8EEENSN_24BufferClientArgumentTypeENSO_ILm4ELm4EvEEj +00000000002c98b8 g DF .text 00000000000000bc _ZN7android13GraphicBufferD1Ev +000000000021439c g DF .text 0000000000000078 _ZN2nn3hid6detail45RetryCurrentAnalogStickManualCalibrationStageENS0_6system11UniquePadIdENS2_19AnalogStickPositionE +00000000000c6db4 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_SetFocusHandlingModeEbbb +0000000000202250 g DF .text 0000000000000064 FsLtt_getGroupType +00000000000913f8 g DF .text 0000000000000004 nnosDetachWritableHandleOfSystemEvent +0000000000957770 w DO .data 0000000000000018 _ZTIN2nn5audio6detail16IAudioOutManagerE +000000000036d798 g DF .text 000000000000004c _ZNSt3__121__libcpp_execute_onceEPNS_9once_flagEPFvvE +000000000014cea0 g DF .text 0000000000000018 _ZN2nn3ngc6detail3Set12SetAllocatorEPNS1_16WorkBufAllocatorE +0000000000160a60 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_CheckMasterKeyENS0_3OutIbvEERKNS5_11InquiryCodeERKNS0_7InArrayIcEE +00000000001b2ed4 g DF .text 00000000000000a4 _ZN2nn2ec6detail15ShowShopPageArg6SetUidERKNS_7account3UidE +0000000000232148 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E44_nn_sf_sync_SetSixAxisSensorFusionParametersENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleEff +000000000020221c g DF .text 000000000000002c FsLtt_component +000000000081f650 w DO .rodata 0000000000000016 _ZTSN2nn3fgm2sf8IRequestE +00000000007e79f0 w DO .rodata 000000000000002b _ZTSN2nn7timesrv6detail7service12ISteadyClockE +000000000013a594 g DF .text 00000000000000b4 _ZN2nn3nfc11ListDevicesEPNS0_12DeviceHandleEPii +00000000000e0a34 g DF .text 00000000000000ec celt_encoder_init +00000000000fcf70 g DF .text 00000000000002c4 silk_quant_LTP_gains +0000000000180288 g DF .text 00000000000000c8 _ZN2nn4time6detail7service21ServiceProviderClient33GetUserStaticServiceSharedPointerEPNS_2sf13SharedPointerINS_7timesrv6detail7service14IStaticServiceEEE +000000000005c0a0 w DF .text 00000000000001f8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm4ELl0EEENSG_ILm8ELm8ELl16EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm24ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm4EEENSU_ILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000007c9e40 w DO .rodata 000000000000010a _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000025a080 g DF .text 0000000000000008 nvdcGetSinkCaps +000000000097bec8 w DO .data 0000000000000010 _ZTINSt3__111__money_getIcEE +0000000000160c60 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E32_nn_sf_sync_GetPlayTimerSettingsENS0_3OutINS5_17PlayTimerSettingsEvEE +00000000001d6688 g DF .text 0000000000000174 _ZN2nn2vi6detail18SystemServiceProxy25InitializeForSharedBufferEv +000000000022c6ec g DF .text 0000000000000044 _ZN2nn3hid6system41BindPlayReportRegisteredDeviceUpdateEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000007e90bc g DO .rodata 0000000000000004 _ZN2nn5audio22AudioRendererParameter12SinkCountMaxE +00000000003551fc g DF .text 0000000000000024 _ZNSt3__15ctypeIwED0Ev +000000000021ad8c g DF .text 000000000000007c _ZN2nn3hid6detail14DisconnectNpadERKj +000000000004eb50 g DF .text 000000000000008c _ZN2nn2fs14CloseDirectoryENS0_15DirectoryHandleE +00000000000a2974 g DF .text 0000000000000194 _ZN2nn6socket6detail4SendEiPKvmi +000000000097d700 g DO .data 0000000000000018 _ZTISt12domain_error +00000000001cffb4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetDisplayResolutionENS0_3OutIlvEESH_m +000000000035bad0 g DF .text 00000000000000c4 _ZNKSt3__120__time_get_c_storageIwE7__am_pmEv +000000000005d750 w DF .text 00000000000001a4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutHandleArgumentInfoILi0ELi1EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutHandleClientArgumentTypeEj +000000000013c4b8 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEENSG_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm4EvEENS2_24BufferClientArgumentTypeENSS_ILm4ELm4EvEEj +000000000002ec50 g DF .text 0000000000000024 _ZN2nn5image11JpegEncoderC1Ev +00000000000c7b6c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_SetExpectedMasterVolumeEff +0000000000169cc0 g DF .text 0000000000000048 _ZN2nn8settings6system19SetExternalRtcResetEb +000000000008e7cc g DF .text 00000000000000b4 _ZN2nn2os16SendMessageQueueEPNS0_16MessageQueueTypeEm +00000000003ac078 g DF .text 0000000000000004 getpid +0000000000287038 g DF .text 000000000000000c NvRmGpuSwizzlerDecompressSurface +000000000006c520 g DF .text 000000000000012c _ZN2nn2fs21SetSpeedEmulationModeENS0_18SpeedEmulationModeE +0000000000011b18 g DF .text 0000000000000080 _ZN2nn5image6detail4jpeg19jinit_marker_writerEPNS2_20jpeg_compress_structE +0000000000250524 g DF .text 00000000000000f4 _ZN2nn3ldn11ScanPrivateEPNS0_11NetworkInfoEPiiRKNS0_10ScanFilterEi +00000000007ae730 g DO .rodata 0000000000000010 _ZN2nn4util8Vector3f12ConstantZeroE +00000000000c99d8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE21_nn_sf_sync_GetResultEv +0000000000151804 g DF .text 0000000000000038 _ZN2nn4nifm6detail21ServiceProviderClient8FinalizeEv +000000000004a6cc w DF .text 000000000000027c _ZN2nn2fs26KeyValueRomStorageTemplateINS0_24HierarchicalRomFileTable11RomEntryKeyENS2_12FileRomEntryELi768EE12FindInternalEPjS6_PNS5_14StorageElementERKS3_jPKvm +00000000000c2554 g DF .text 0000000000000030 _ZN2nn7account13ProfileEditor5FlushEv +00000000000d2240 g DF .text 0000000000000004 _ZN2nn6applet23GetAppletResourceUserIdEv +00000000000ea3a8 g DF .text 00000000000000f4 ec_laplace_encode +000000000097d928 g DO .data 0000000000000010 _ZTISt9type_info +000000000094ce70 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEEE +000000000017f1cc g DF .text 00000000000000c0 _ZN2nn4time34SetStandardLocalSystemClockContextERKNS0_18SystemClockContextE +00000000003a6930 g DF .text 0000000000000088 __atomic_fetch_sub_1 +00000000003a69b8 g DF .text 0000000000000088 __atomic_fetch_sub_2 +00000000002845b8 g DF .text 00000000000000e0 NvDdkVicExecuteFd +00000000003a6a40 g DF .text 0000000000000088 __atomic_fetch_sub_4 +00000000000fa64c g DF .text 0000000000000010 silk_Get_Encoder_Size +0000000000121758 g DF .text 0000000000000180 _ZN2nn7friends17SendFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdERKNS0_15InAppScreenNameESA_ +000000000022c648 g DF .text 0000000000000044 _ZN2nn3hid6system40BindPlayReportControllerUsageUpdateEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000001e155c g DF .text 000000000000040c FSS_get_table_structure +0000000000a35210 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_3hid6detail18HidTemporaryServerEE8_globalsE +00000000002282a0 g DF .text 0000000000000044 _ZN2nn3hid6system30UnregisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +0000000000329884 w DF .text 00000000000000cc _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6xsgetnEPwl +00000000003a6ac8 g DF .text 0000000000000088 __atomic_fetch_sub_8 +000000000004afb0 g DF .text 0000000000000134 _ZN2nn2fs11FileStorage12OperateRangeEPvmNS0_11OperationIdEllPKvm +000000000004c5f0 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem19DoGetTotalSpaceSizeEPlPKc +00000000001d0018 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_CreateIndirectLayerENS0_3OutImvEE +0000000000318104 g DF .text 000000000000006c _ZN2nn3pcv18GetOscillatorClockEPj +0000000000017da8 g DF .text 000000000000005c _ZN2nn5image6detail4jpeg23jpeg_has_multiple_scansEPNS2_22jpeg_decompress_structE +00000000000d8f50 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E29_nn_sf_sync_CreateFileServiceENS0_3OutINS0_13SharedPointerINS7_25IDeliveryCacheFileServiceEEEvEE +00000000007ef9f0 w DO .rodata 0000000000000029 _ZTSN2nn5audio6detail20IFinalOutputRecorderE +0000000000259a08 g DF .text 000000000000015c nvdcGetAviInfoframe +00000000001c64c4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E21_nn_sf_sync_IsUpdatedENS0_3OutIbvEEi +00000000001c9f80 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard14SetKeytopAlphaEf +0000000000235000 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E36_nn_sf_sync_InitializeFirmwareUpdateEv +00000000001263a8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000253684 g DF .text 0000000000000094 _ZN2nn3web40GetOfflineHtmlPageReturnValueFromStorageEPNS0_26OfflineHtmlPageReturnValueERKNS_6applet13StorageHandleE +0000000000825184 g DO .rodata 0000000000000010 _ZTSSt11logic_error +000000000003b650 g DF .text 0000000000000010 _ZNK2nn4util16BinaryFileHeader12GetAlignmentEv +0000000000125514 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_CreateFriendServiceENS0_3OutINS0_13SharedPointerINS7_14IFriendServiceEEEvEE +00000000001608a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_DeleteSettingsEv +00000000000ce978 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_SetTerminateResultEj +00000000002320b4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E30_nn_sf_sync_StartSixAxisSensorENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +000000000009142c g DF .text 0000000000000004 nnosWaitEvent +00000000001341ec g DF .text 000000000000000c _ZN2nn4htcs6detail25virtual_socket_collection20GetWorkingMemorySizeEi +00000000001e4670 g DF .text 000000000000037c find_in_cache +00000000000918ec g DF .text 0000000000000034 _ZN2nn2os6detail13ThreadManager22DeleteAliasStackUnsafeEPNS0_10ThreadTypeE +000000000023c1a4 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14IrSensorServerEEEEEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000002551ac g DF .text 0000000000000090 _ZN2nn3web6detail24ShowOfflinePageArgDetail17SetPointerEnabledEPhb +00000000003e775c g DF .text 0000000000000018 __nnmusl_FinalizeSemaphore +000000000097d860 g DO .data 0000000000000018 _ZTISt14overflow_error +00000000000b6580 w DF .text 00000000000002ac _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi25ELm512EEENSC_20InHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESO_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeENS2_26InHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000133434 g DF .text 0000000000000058 _ZN2nn4htcs6detail5closeENS_2sf13SharedPointerINS_3tma7ISocketEEERi +0000000000160e00 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_SetPlayTimerSettingsForDebugERKNS5_17PlayTimerSettingsE +000000000022ffc0 g DF .text 000000000000011c _ZN2nn3hid15VibrationPlayer20OnNextSampleRequiredEPNS0_14VibrationValueEPNS_4util13IntrusiveListINS0_23VibrationNodeConnectionENS4_27IntrusiveListBaseNodeTraitsIS6_S6_EEEE +000000000039c85c g DF .text 000000000000005c _Unwind_ForcedUnwind +0000000000942488 g DO .data 0000000000000010 _ZTIN2nn5image11ExifBuilderE +000000000008fc10 g DF .text 0000000000000004 _ZN2nn2os12SdkMutexType10InitializeEv +000000000004c5cc g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem17DoRenameDirectoryEPKcS3_ +00000000001b18a8 g DF .text 00000000000001d0 _ZN2nn2ec6detail34ShowShopApplicationInformationImplENS1_10LaunchModeENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdEPKc +0000000000316290 g DF .text 00000000000000ac _ZN2nn3i2c9HasDeviceENS0_9I2cDeviceE +00000000000b77e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE28_nn_sf_sync_GetUserExistenceENS0_3OutIbvEERKNS5_3UidE +00000000008223dc g DO .rodata 0000000000000004 _ZNSt3__18ios_base7goodbitE +000000000097e4f8 g DO .data 0000000000000038 _ZTVN10__cxxabiv129__pointer_to_member_type_infoE +000000000006a298 g DF .text 0000000000000214 _ZN2nn2fs26WriteSaveDataThumbnailFileEmNS0_6UserIdEPKvmS3_m +0000000000174dac w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_SetUsbFullKeyEnableFlagEb +00000000003246fc g DF .text 0000000000000058 _ZNSt3__124__libcpp_debug_exceptionD0Ev +000000000084f120 g DO .rodata 0000000000000010 __pio2_lo +000000000012bdc8 g DF .text 00000000000007c0 _ZN2nn2fs25EnsureApplicationSaveDataEPlNS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyERKNS_7account3UidE +00000000002861e4 g DF .text 0000000000000030 nvgr_set_compressed +0000000000091430 g DF .text 0000000000000004 nnosTimedWaitEvent +0000000000185d2c g DF .text 000000000000000c _ZNK2nn5audio15BehaviorManager31GetMemroyPoolErrorAssertEnabledEv +000000000023af48 g DF .text 0000000000000044 _ZN2nn8irsensor20RunPointingProcessorERKNS0_14IrCameraHandleE +00000000000bb938 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E39_nn_sf_sync_IsLinkedWithNintendoAccountENS0_3OutIbvEE +00000000000ca0a8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17_nn_sf_sync_WriteElRKNS0_8InBufferE +00000000000d0ea0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E23_nn_sf_sync_OpenSessionENS0_3OutINS0_13SharedPointerINS5_8ISessionEEEvEE +000000000094ead0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000348fe8 w DF .text 00000000000012a8 _ZNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE8__do_getERS4_S4_bRKNS_6localeEjRjRbRKNS_5ctypeIcEERNS_10unique_ptrIcPFvPvEEERPcSM_ +00000000000a00b4 g DF .text 000000000000001c _ZN2nn2sf4hipc13ConnectToPortEPNS_3svc6HandleES3_ +0000000000824060 g DO .rodata 0000000000000018 _ZTSSt19bad_optional_access +00000000003e31c8 g DF .text 0000000000000018 wcscpy +0000000000160654 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E42_nn_sf_sync_IsRestrictionTemporaryUnlockedENS0_3OutIbvEE +00000000008058fc g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout20EnglishUnitedKingdomE +00000000001ce964 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_GetSharedBufferMemoryHandleIdENS0_3OutINS_2vi6native20NativeMemoryHandleIdEvEENSG_ImvEENSG_INSH_7fbshare22SharedMemoryPoolLayoutEvEENSM_18SharedBufferHandleENS_6applet20AppletResourceUserIdE +0000000000296d84 g DF .text 000000000000004c _ZN7android10IInterface8asBinderEv +0000000000174730 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E44_nn_sf_sync_GetWirelessCertificationFileSizeENS0_3OutImvEE +00000000002cf074 g DF .text 0000000000000038 _ZN7android7String8C2EPKDi +0000000000949278 w DO .data 0000000000000038 _ZTVN2nn2sf22UnitHeapMemoryResourceE +00000000000be4a4 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account24IBaasAccessTokenAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6Object7ReleaseEv +0000000000212118 g DF .text 000000000000004c swap_ttc_header +000000000097e400 g DO .data 0000000000000018 _ZTIN10__cxxabiv120__si_class_type_infoE +00000000001b45d4 g DF .text 000000000000006c _ZN2nn7friends19ShowBlockedUserListERKNS_7account3UidE +00000000003649c8 w DF .text 00000000000000d0 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4findEPKcmm +0000000000986c90 g DO .data 0000000000000008 stdin +0000000000168a38 g DF .text 0000000000000044 _ZN2nn8settings22GetDebugPadKeyboardMapEPNS0_19DebugPadKeyboardMapE +00000000001d076c w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm16ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEESN_NSL_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000022c408 g DF .text 000000000000005c _ZN2nn3hid12GetNpadStateEPNS0_16NpadJoyLeftStateERKj +00000000001c35e8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding8Ei +00000000002a0704 g DF .text 000000000000008c _ZNK7android6Parcel12readString16Ev +00000000003465f4 w DF .text 00000000000000c4 _ZNKSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcPK2tmcc +0000000000124fac g DF .text 00000000000000cc _ZN2nn7friends6detail3ipc33CreateDaemonSuspendSessionServiceEPPNS2_28IDaemonSuspendSessionServiceE +00000000002cf010 g DF .text 0000000000000038 _ZN7android7String8C2EPKDs +00000000008240f0 g DO .rodata 0000000000000015 _ZTSNSt3__110ostrstreamE +00000000003a4bdc g DF .text 0000000000000038 __ucmpti2 +0000000000326264 g DF .text 0000000000000034 _ZNSt16nested_exceptionC1Ev +000000000094fad8 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000326f24 g DF .text 00000000000000e4 _ZNSt3__16futureIvEC2EPNS_17__assoc_sub_stateE +000000000032dc64 w DF .text 00000000000000a0 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getEPwl +00000000000cad40 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000031f2f8 w DF .text 00000000000002cc _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIjjEEPjEEbT0_S5_T_ +00000000001232d4 g DF .text 0000000000000150 _ZN2nn7friends11UserSetting28ChangeFriendRequestReceptionEPNS0_12AsyncContextEb +00000000009541b0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000319e98 g DF .text 0000000000000024 _ZN2nn3pwm18GetInternalManagerEv +00000000003b9254 g DF .text 00000000000005c4 __intscan +00000000001c8ce4 g DF .text 000000000000005c _ZN2nn2pl21GetCurrentIlluminanceEv +00000000002aaec8 g DF .text 0000000000000030 _ZN7android18BufferItemConsumerD1Ev +00000000007e3090 w DO .rodata 000000000000010c _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000002a1948 g DF .text 0000000000000060 _ZN7android12ProcessState16setContextObjectERKNS_2spINS_7IBinderEEERKNS_8String16E +00000000001caa44 g DF .text 00000000000000dc _ZN2nn5swkbd6detail18InlineKeyboardImpl15SetCustomizeDicEPKvmRKNS0_16CustomizeDicInfoE +00000000000b54ec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E19_nn_sf_sync_GetBaseENS0_3OutINS6_11ProfileBaseEvEE +0000000000328e48 w DF .text 0000000000000014 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEED2Ev +000000000029e1fc g DF .text 00000000000002b8 _ZN7android6Parcel10appendFromEPKS0_mm +00000000002bdc9c g DF .text 000000000000003c _ZTv0_n24_N7android22ISurfaceComposerClientD1Ev +000000000011bf10 g DF .text 000000000000001c _ZN2nn3err6detail32MakeErrorInfoModuleDirectoryPathEPcmj +000000000019bf64 g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem14GetSampleCountEv +000000000097d518 g DO .data 0000000000000028 _ZTVSt9bad_alloc +000000000014020c g DF .text 00000000000001bc _ZN2nn3nfp18GetApplicationAreaEPvPmRKNS0_12DeviceHandleEm +00000000000d6688 g DF .text 0000000000000008 _ZN2nn4bcat17DeliveryCacheFileC1Ev +00000000000cea84 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_EndBlockingHomeButtonEv +00000000001886d0 g DF .text 00000000000000fc _ZN2nn5audio21LoadI3dl2ReverbPresetEPNS0_15I3dl2ReverbTypeENS1_6PresetE +00000000009594c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3mii6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000942aa8 g DO .data 0000000000000050 _ZTVN2nn2fs11FileStorageE +000000000017dde0 g DF .text 0000000000000160 _ZN2nn4time10DateToDaysEiii +0000000000256a84 g DF .text 0000000000000090 _ZN2nn3web14ShowWebPageArg25SetTouchEnabledOnContentsEb +00000000000b4d2c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE17GetCmifBaseObjectEv +0000000000174308 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_SetColorSetIdEi +00000000000d1874 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E30_nn_sf_sync_GetThrottlingStateENS0_3OutINS5_15ThrottlingStateEvEE +000000000015df54 g DF .text 0000000000000050 _ZN2nn4pctl45ClearFreeCommunicationApplicationListForDebugEv +000000000018bed4 g DF .text 0000000000000040 _ZN2nn5audio20IsVoiceDroppedFlagOnEPKNS0_9VoiceTypeE +00000000001c52c8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding5Ev +00000000001cd9b0 w DF .text 0000000000000050 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_GetIndirectLayerImageMapENS0_3OutIlvEESH_RKNS0_9OutBufferEllmNS_6applet20AppletResourceUserIdE +0000000000313818 g DF .text 0000000000000048 _ZN2nn3fgm7Request3GetEPj +0000000000156f60 g DF .text 0000000000000004 _ZN2nn4nifm23TemporaryNetworkProfileC2ERKNS0_18NetworkProfileDataE +000000000029e738 g DF .text 0000000000000114 _ZNK7android6Parcel16enforceInterfaceERKNS_8String16EPNS_14IPCThreadStateE +00000000003cb950 w DF .text 000000000000071c lgamma_r +0000000000151b10 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +0000000000233eb4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E12GetProxyInfoEv +0000000000366f84 w DF .text 0000000000000094 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE12find_last_ofEPKwmm +00000000003966ac g DF .text 0000000000000054 _ZNSt12domain_errorD2Ev +00000000002d0d18 g DF .text 0000000000000008 androidGetTid +0000000000a83490 w DO .bss 0000000000000008 ___environ +00000000000964bc g DF .text 00000000000000b8 _ZN2nn2os6detail30InterProcessEventImplByHorizon4WaitEjb +00000000002c50b0 g DF .text 00000000000000a4 _ZN7android8Composer9setMatrixERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEffff +00000000007adc80 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f13ConstantBlackE +0000000000017ad0 g DF .text 000000000000027c _ZN2nn5image6detail4jpeg18jpeg_consume_inputEPNS2_22jpeg_decompress_structE +0000000000098ea0 g DF .text 000000000000017c _ZNK2nn2ro6detail8RoModule10ResolveSymEPmNS1_3Elf5Elf643SymE +00000000007e43c0 w DO .rodata 00000000000000ea _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_EE +00000000001985d4 g DF .text 00000000000000d8 _ZN2nn5audio16GetAudioOutStateEPKNS0_8AudioOutE +0000000000161054 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E52_nn_sf_sync_FinishSynchronizeParentalControlSettingsENS6_9AsyncDataE +00000000008051f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi80EE4MaskE +0000000000945ab0 w DO .data 0000000000000018 _ZTIN2nn2ro6detail12IRoInterfaceE +00000000007e8ff0 w DO .rodata 000000000000002a _ZTSN2nn6aocsrv6detail20IAddOnContentManagerE +000000000019c764 g DF .text 0000000000000170 _ZN2nn5audio6server24AudioRendererManagerImpl35OpenAudioRendererForManualExecutionENS_2sf3OutINS3_13SharedPointerINS0_6detail14IAudioRendererEEEvEERKNS6_30AudioRendererParameterInternalEmONS3_12NativeHandleEmNS_6applet20AppletResourceUserIdE +0000000000180d84 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E12GetProxyInfoEv +00000000002c686c g DF .text 00000000000000dc _ZN7android21SurfaceComposerClient9setMatrixERKNS_2spINS_7IBinderEEEffff +000000000020f398 g DF .text 0000000000000070 FsScratchSpace_reserve +00000000001b59a8 g DF .text 0000000000000008 _ZNK2nn2la31NifmToNetConnectArgumentsWriter13GetExportSizeEv +0000000000239198 g DF .text 000000000000002c _ZN2nn8irsensor6detail19StatusManagerHolder5ClearEv +000000000014b460 g DF .text 00000000000000a0 _ZN2nn3ngc6detail12OutputStream5CloseEv +00000000001bfc40 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw16GetEyebrowRotateEv +00000000002c8798 g DF .text 0000000000000008 sync_pt_info +0000000000166798 g DF .text 0000000000000140 _ZN2nn5prepo6detail19PlayReportGenerator11AddKeyValueEPmPKcS5_Phmm +0000000000196e00 w DF .text 000000000000017c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSD_ILm8ELm8ELl8EEEEEELm0ELm16ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSL_24OutRawClientArgumentTypeILm4ELm4EEENSN_ILm8ELm8EEEj +00000000000a0180 g DF .text 0000000000000048 _ZN2nn2sf4hipc16SendAsyncRequestEPNS_3svc6HandleES3_Pvm +00000000000baee8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E31_nn_sf_sync_RegisterUserWithUidERKNS5_3UidE +0000000000364a98 w DF .text 0000000000000070 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE4findEcm +0000000000363918 w DF .text 0000000000000204 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertEmPKcm +00000000007e6cd0 w DO .rodata 000000000000002d _ZTSN2nn7timesrv6detail7service14IStaticServiceE +0000000000230a40 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E12GetProxyInfoEv +00000000002a4814 g DF .text 0000000000000034 _ZN7android14IPCThreadStateD2Ev +00000000003160b4 g DF .text 0000000000000004 nngpioClearInterruptStatus +000000000094c4c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000007124c g DF .text 000000000000000c nnmem_nlib_getversion +000000000009a2dc g DF .text 000000000000002c _ZN2nn2sf4cmif6server23CmifServerDomainManager6DomainC2EPS3_ +0000000000230f98 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E48_nn_sf_sync_GetAvailableFirmwareVersionForRevertENS0_3OutINS5_6system15FirmwareVersionEvEENSL_11UniquePadIdE +00000000002c57e8 g DF .text 0000000000000100 _ZN7android21SurfaceComposerClient19linkToComposerDeathERKNS_2spINS_7IBinder14DeathRecipientEEEPvj +0000000000269444 g DF .text 00000000000000bc _Z17hosFinalizeEventsP10EventAsyncP13NvOsThreadRec +0000000000956ca0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000c0da8 g DF .text 00000000000000b8 _ZN2nn7account34NetworkServiceAccountAdministrator65ProxyProcedureToAcquireApplicationAuthorizationForNintendoAccountEPNS0_48NintendoAccountApplicationAuthorizationProcedureERKNS0_9SessionIdE +000000000008edac g DF .text 00000000000000b0 _ZN2nn2os22TryReceiveMessageQueueEPmPNS0_16MessageQueueTypeE +000000000015869c g DF .text 0000000000000034 _ZN2nn3nsd9ResolveExEPNS0_4FqdnERKS1_ +0000000000823230 g DO .rodata 000000000000001d _ZTSNSt3__114__codecvt_utf8IDiEE +000000000024108c w DF .text 00000000000004f4 _ZN22nerd_gillette_internal5otete7jaimev29SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_14FingerInPacketERT_ +000000000028225c g DF .text 00000000000000b8 NvDdkVicGetColorSpace +00000000001a4d68 g DF .text 0000000000000008 _ZNK2nn5audio6server12SinkInfoBase8GetStateEv +0000000000228400 g DF .text 000000000000005c _ZN2nn3hid6system26IsAnalogStickButtonPressedENS1_11UniquePadIdENS1_19AnalogStickPositionE +00000000002c5ea0 g DF .text 000000000000003c _ZN7android21SurfaceComposerClient17getDisplaySurfaceERKNS_2spINS_7IBinderEEERNS1_INS_22IGraphicBufferProducerEEERNS1_INS_22IGraphicBufferConsumerEEE +000000000021ec28 g DF .text 00000000000000a4 _ZN2nn3hid6detail20GetRegisteredDevicesEPiPNS0_6system16RegisteredDeviceEi +0000000000178ce4 g DF .text 000000000000008c _ZN2nn3ssl10Connection11DoHandshakeEv +00000000001d4d60 g DF .text 0000000000000070 _ZN2nn2vi18SetLayerVisibilityEPNS0_5LayerEb +00000000000fcd54 g DF .text 0000000000000074 silk_log2lin +000000000097c5f0 g DO .data 0000000000000018 _ZTISt19bad_optional_access +00000000000020d0 g DF .text 0000000000000774 _ZN2nn6crypto6detail10bigint_divEPjS2_PKjiS4_i +0000000000160e20 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_GetPlayTimerSpentTimeForTestENS0_3OutINS_12TimeSpanTypeEvEE +00000000001c5f3c g DF .text 0000000000000194 _ZN2nn3mii6detail21ServiceProviderClient10InitializeEv +000000000022b744 g DF .text 0000000000000044 _ZN2nn3hid6system16GetNpadPowerInfoEPNS1_9PowerInfoES3_RKj +00000000003de00c g DF .text 0000000000000010 getline +00000000002addd0 g DF .text 0000000000000414 _ZN7android15BufferQueueCoreC2ERKNS_2spINS_19IGraphicBufferAllocEEE +0000000000823480 w DO .rodata 0000000000000014 _ZTSNSt3__17collateIwEE +0000000000805150 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi75EE4MaskE +00000000000d5bb8 g DF .text 00000000000000d4 _ZN2nn4bcat31EnumerateBackgroundDeliveryTaskEPiPNS0_8TaskInfoEi +0000000000253ddc g DF .text 0000000000000090 _ZN2nn3web22ShowOfflineHtmlPageArg21SetJsExtensionEnabledEb +0000000000125da8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_SyncBlockedUserListERKNS_7account3UidE +000000000009c1c8 g DF .text 0000000000000058 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase14InitializePortEiiPKc +0000000000234d68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E49_nn_sf_sync_AcquireUniquePadConnectionEventHandleENS0_3OutINS0_12NativeHandleEvEE +00000000001a3814 g DF .text 000000000000000c _ZN2nn5audio6server11AddressInfoD1Ev +00000000000c1290 g DF .text 000000000000001c _ZN2nn7account42NintendoAccountAuthorizationRequestContextC2EPNS0_3nas21IAuthorizationRequestERKNS0_3UidE +00000000003c281c g DF .text 0000000000000004 iswblank +000000000018ddcc g DF .text 0000000000000070 _ZN2nn5audio22Axfx2AllPassInitializeEPNS0_14Axfx2DelayLineEjfPf +000000000021e310 g DF .text 0000000000000074 _ZN2nn3hid6detail11ActivateNfcERjNS_6applet20AppletResourceUserIdE +0000000000048b00 g DF .text 0000000000000098 _ZN2nn2fs24HierarchicalRomFileTable8FindOpenEPNS1_12FindPositionEPKc +0000000000089a10 g DF .text 000000000000000c _ZN2nn7nlibsdk4heap10CachedHeap7ReallocEPvmPS3_ +000000000011b960 g DF .text 0000000000000064 _ZN2nn3err14SystemErrorArg20SetFullScreenMessageEPKc +000000000017eddc g DF .text 0000000000000008 _ZNK2nn4time13ClockSnapshot35GetStandardUserSystemClockPosixTimeEv +000000000003c5d8 g DF .text 0000000000000030 _ZN2nn4util15CompressDeflateEPmPvmPKvmS2_mii +000000000008d218 g DF .text 0000000000000004 _ZN2nn2os23QueryMemoryInfoForDebugEPNS0_10MemoryInfoE +0000000000803d00 w DO .rodata 0000000000000051 _ZTSN2nn3hid6detail8RingLifoINS0_16NpadJoyDualStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000018d284 g DF .text 0000000000000018 _ZN2nn5audio6common10NodeStates5Stack3popEv +00000000001b0270 g DF .text 00000000000000b8 _ZN2nn5audio3dsp20DspExceptionNotifier6NotifyEv +00000000001b22a4 g DF .text 0000000000000100 _ZN2nn2ec6detail33ShowShopInformationWithParamsImplENS1_10LaunchModeEPKcRKNS_7account3UidENS0_8SourceIdE +0000000000048478 g DF .text 0000000000000144 _ZN2nn2fs24HierarchicalRomFileTable23GetDirectoryInformationEPNS0_16RomDirectoryInfoEi +00000000000c7c00 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_SetTransparentVolumeRateEf +00000000003cd590 g DF .text 0000000000000110 nexttoward +00000000003470cc w DF .text 0000000000000008 _ZNKSt3__110moneypunctIwLb1EE16do_thousands_sepEv +000000000008db68 g DF .text 00000000000000e4 _ZN2nn2os15InitializeFiberEPNS0_9FiberTypeEPFS2_PvES3_S3_mi +0000000000959fa0 w DO .data 0000000000000018 _ZTIN3nns9hosbinder16IHOSBinderDriverE +00000000003a730c g DF .text 0000000000000074 __atomic_fetch_xor_16 +000000000012041c g DF .text 00000000000000d0 _ZN2nn7friends19GetUserPresenceViewEPNS0_16UserPresenceViewERKNS_7account3UidE +00000000003188cc w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm3EE27InitializeShimLibraryHolderINS_3pcv6detail11IPcvServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +00000000001968f0 w DF .text 00000000000001e8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm8ELm4ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEENS7_18OutRawArgumentInfoILm16ELm4ELl0EEENSD_ILm8ELm8ELl8EEEEEELm16ELm16ELb0EEESK_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSP_23InRawClientArgumentTypeILm8ELm4EvEENSP_26InHandleClientArgumentTypeENSP_24OutRawClientArgumentTypeILm16ELm4EEENSR_ILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000bae10 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE24_nn_sf_sync_GetAccountIdENS0_3OutINS5_23NetworkServiceAccountIdEvEE +00000000000b826c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E47_nn_sf_sync_GetNintendoAccountUserResourceCacheENS0_3OutINS5_17NintendoAccountIdEvEENSQ_INS5_3nas11NasUserBaseEvEERKNS0_9OutBufferE +00000000001adc00 g DF .text 00000000000003e0 _ZN2nn5audio26I3dl2Reverb2ChannelMonoMixEPNS0_16I3dl2ReverbStateEPPKiPPij +0000000000825590 g DO .rodata 0000000000000025 _ZTSN10__cxxabiv120__si_class_type_infoE +0000000000075b98 g DF .text 00000000000000a0 nnmem_nlib_swapendian_16 +000000000016cb14 g DF .text 0000000000000070 _ZN2nn8settings6detail27SetBluetoothBoostEnableFlagEb +0000000000358780 g DF .text 0000000000000008 _ZNKSt3__17codecvtIDic11__mbstate_tE13do_max_lengthEv +0000000000979f08 w DO .data 00000000000000e0 _ZTVNSt3__115time_get_bynameIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000036d74c g DF .text 0000000000000018 _ZNSt3__119__libcpp_mutex_lockEPN2nn2os9MutexTypeE +0000000000122f2c g DF .text 000000000000000c _ZN2nn7friends12ProfileExtraC2Ev +000000000011a23c w DF .text 00000000000001e4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi25ELm272EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_24BufferClientArgumentTypeEj +0000000000264768 g DF .text 000000000000002c multimedia_DebugPrintf +00000000003c2e80 g DF .text 0000000000000014 tolower +00000000000a1b74 g DF .text 0000000000000004 nnsocketInetAton +00000000000685ec g DF .text 0000000000000040 _ZN2nn2fs20CreateSystemSaveDataENS0_15SaveDataSpaceIdEmmllj +0000000000125f88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_DropFriendNewlyFlagERKNS_7account3UidENSL_23NetworkServiceAccountIdE +0000000000179cb4 g DF .text 00000000000000bc _ZN2nn3ssl14BuiltInManager28GetBuiltInCertificateBufSizeEPjPNS0_15CaCertificateIdEj +000000000036558c w DF .text 0000000000000034 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6assignEPKw +00000000007adcc0 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f13ConstantGreenE +0000000000190db0 g DF .text 0000000000000058 _ZN2nn5audio21GetAudioRendererStateENS0_19AudioRendererHandleE +00000000000a575c g DF .text 0000000000000008 _ZN2nn6socket6detail8InetNtoaE7in_addr +00000000001b2b5c g DF .text 0000000000000378 _ZN2nn2ec6detail15ShowShopPageArgC1EPKc +000000000021c8b0 g DF .text 00000000000000b4 _ZN2nn3hid6detail26SetAccelerometerParametersENS0_19SixAxisSensorHandleEff +000000000024ff68 g DF .text 0000000000000044 _ZN2nn3ldn16SetAdvertiseDataEPKvm +00000000009b82d0 w DO .bss 00000000000010c0 _ZZN2nn2lm6detail17UnitHeapAllocatorILm1024ELi4ELi8EE11GetInstanceEvE10s_Instance +00000000001fd09c g DF .text 0000000000000d78 get_comp +00000000007bd190 w DO .rodata 000000000000002b _ZTSN2nn7account4baas22IManagerForApplicationE +00000000003dff2c g DF .text 0000000000000084 __string_read +00000000007c4300 g DO .rodata 000000000000002c _ZTSN2nn7account28NetworkServiceAccountManagerE +00000000003cece0 g DF .text 0000000000000198 sinf +0000000000047198 g DF .text 0000000000000090 _ZN2nn2fs6detail8IdString8ToStringINS0_15SaveDataSpaceIdEEEPKcT_ +00000000003cee78 g DF .text 00000000000000ac sinh +0000000000126e08 w DF .text 0000000000000248 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl104EEENSG_ILm64ELm1ELl0EEENSG_ILm33ELm1ELl64EEENSC_18BufferArgumentInfoILi2ELi5ELm0EEENSK_ILi0ELi25ELm72EEENSK_ILi1ELi25ELm72EEENSG_ILm8ELm8ELl120EEEEEELm128ELm0ELb1EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSW_ILm64ELm1EvEENSW_ILm33ELm1EvEENS2_24BufferClientArgumentTypeES10_S10_NSW_ILm8ELm8EvEEj +000000000014dbf0 g DF .text 00000000000000a4 _ZNK2nn3ngc6detail3Sbv6ExportEPNS1_12BinaryWriterE +00000000001c31d8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetFontRegionEi +0000000000257710 g DF .text 0000000000000090 _ZN2nn3web15ShowNewsPageArg16SetFooterEnabledEb +00000000000bd1c0 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE22_nn_sf_sync_GetRequestENS0_3OutINS5_10RequestUrlEvEENSS_INS5_11CallbackUriEvEE +00000000003cefec g DF .text 0000000000000128 sinl +00000000000c94ec w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_PushContextENS0_13SharedPointerINS6_8IStorageEEE +0000000000173798 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E38_nn_sf_sync_GetAvailableLanguageCodes2ENS0_3OutIivEERKNS0_8OutArrayINS5_12LanguageCodeEEE +0000000000823a10 w DO .rodata 0000000000000045 _ZTSNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000959ef0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000000bfa1c g DF .text 00000000000000c4 _ZN2nn7account44EnsureNetworkServiceAccountIdTokenCacheAsyncEPNS0_12AsyncContextERKNS0_10UserHandleE +00000000002702e8 g DF .text 0000000000000020 NvRmMemRead +0000000000325cd8 g DF .text 0000000000000144 _ZNKSt3__111__libcpp_db15__subscriptableEPKvl +0000000000090ec4 g DF .text 0000000000000060 _ZN2nn2os23SetUserExceptionHandlerEPFvPNS0_17UserExceptionInfoEEPvmS2_ +00000000000b6a84 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E20_nn_sf_sync_GetStateENS0_3OutINS6_5StateEvEE +00000000000bb890 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E51_nn_sf_sync_SynchronizeProfileAsyncIfSecondsElapsedENS0_3OutIbvEENSQ_INS0_13SharedPointerINSK_13IAsyncContextEEEvEEj +0000000000122dcc g DF .text 000000000000000c _ZN2nn7friends7ProfileC2Ev +000000000015c640 g DF .text 0000000000000058 _ZN2nn2oe44SetPerformanceModeChangedNotificationEnabledEb +00000000002860c8 g DF .text 0000000000000010 nvgr_set_stereo_info +00000000001a0c00 g DF .text 0000000000000028 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_19BiquadFilterCommandE +0000000000231040 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E17GetCmifBaseObjectEv +0000000000041b8c g DF .text 0000000000000008 _ZN2nn4edid6detail22IsSuspendModeSupportedEh +00000000003abff8 g DF .text 0000000000000004 close +0000000000148d5c g DF .text 00000000000000cc _ZN2nn3ngc6detail2Bp5ResetEv +0000000000178184 g DF .text 0000000000000014 _ZN2nn3ssl10ConnectionC1Ev +00000000001d01d8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_SetDisplayLayerStackEmj +00000000003244fc g DF .text 0000000000000050 _ZNSt3__129__libcpp_throw_debug_functionERKNS_19__libcpp_debug_infoE +00000000000444a8 g DF .text 0000000000000054 _ZN2nn4diag6detail9AbortImplEPKcS3_S3_iPKNS_6ResultEPKNS_2os17UserExceptionInfoES3_z +00000000000c8160 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E53_nn_sf_sync_AcquireLastApplicationCaptureSharedBufferENS0_3OutIbvEENSK_IivEE +0000000000168928 g DF .text 0000000000000044 _ZN2nn8settings6system23SetDataDeletionSettingsERKNS1_20DataDeletionSettingsE +00000000000ca614 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutHandleArgumentInfoILi0ELi1EEENSC_18OutRawArgumentInfoILm8ELm8ELl0EEEEEELm0ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutHandleClientArgumentTypeENS2_24OutRawClientArgumentTypeILm8ELm8EEEj +00000000000d9258 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +000000000013d470 g DF .text 0000000000000024 _ZN2nn3nfp6client25GetUserInterfaceForCommonEv +00000000000c7b64 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +000000000017cddc g DF .text 000000000000002c _ZN2nn3ssl6detail16SslMemoryManager4FreeEPvm +0000000000320618 w DF .text 00000000000002cc _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessImmEEPmEEbT0_S5_T_ +0000000000215de0 g DF .text 00000000000000a4 _ZN2nn3hid6detail16FinalizeDebugPadEv +000000000016f3cc g DF .text 00000000000000d4 _ZN2nn8settings6detail22ResetSettingsItemValueEPKcS3_ +00000000008055d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi111EE4MaskE +00000000000d7274 g DF .text 0000000000000034 _ZN2nn4bcat6detail17ShimLibraryGlobalC1Ev +00000000001ca3d4 g DF .text 00000000000000cc _ZN2nn5swkbd6detail18InlineKeyboardImpl6LaunchEv +000000000015b344 g DF .text 0000000000000008 _ZN2nn2oe28RequestToRelaunchApplicationEv +00000000000ce8f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_CreateApplicationAndRequestToStartENS_3ncm13ApplicationIdE +00000000002c3ae0 g DF .text 000000000000002c _ZN7android14SurfaceControl7setCropERKNS_4RectE +00000000007c3e60 w DO .rodata 0000000000000149 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000017b514 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E36_nn_sf_sync_DoHandshakeGetServerCertENS0_3OutIjvEESN_RKNS0_9OutBufferE +0000000000330c34 w DF .text 0000000000000118 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5writeEPKcl +0000000000075c38 g DF .text 0000000000000080 nnmem_nlib_swapendian_32 +000000000011e0b0 g DF .text 00000000000000c0 _ZN2nn7friends20DropFriendNewlyFlagsERKNS_7account3UidE +00000000001b5c90 g DF .text 0000000000000104 _ZNK2nn3mii8Nickname7IsValidEv +0000000000a80738 g DO .bss 00000000000000a0 _ZNSt3__15wcoutE +00000000001683cc g DF .text 0000000000000050 _ZN2nn8settings6system23GetOverlayDispProgramIdEv +00000000000937b4 g DF .text 0000000000000048 _ZNK2nn2os6detail36MultiWaitHolderOfMessageQueueNotFull10IsSignaledEv +00000000002ce070 g DF .text 0000000000000018 _ZN7android8String16C2ERKS0_ +000000000039e6c8 g DF .text 0000000000000044 __absvti2 +00000000000bad74 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas28IFloatingRegistrationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +000000000000773c g DF .text 0000000000000540 _ZN2nn6crypto6detail10Sha256Impl7GetHashEPvm +00000000001fc1c8 g DF .text 000000000000013c read_comp_parms_ttf +0000000000286e58 g DF .text 000000000000000c NvRmGpuRegOpsSessionPerfbufMap +000000000016f970 g DF .text 0000000000000070 _ZN2nn8settings6detail9GetSslKeyEPNS0_7factory6SslKeyE +000000000024ede4 g DF .text 0000000000000098 _ZN2nn6capsrv12LibraryState26SetMovieWriteStreamSessionENS_2sf13SharedPointerINS0_2sf30IMovieWriteStreamServiceObjectEEENS1_12ServiceLevelE +0000000000273f30 g DF .text 0000000000000008 NvRmChannelMapAtSubmitEnabled +00000000001cb32c g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl17CalcChangedState_ENS_6applet13StorageHandleEm +000000000009a9f4 g DF .text 000000000000000c _ZThn8_N2nn2sf4cmif6server23CmifServerDomainManager6Domain16UnregisterObjectENS1_18CmifDomainObjectIdE +0000000000187824 g DF .text 0000000000000034 _ZN2nn5audio21GetReverbPredelayTimeEPKNS0_10ReverbTypeE +00000000001ba280 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw8SetMoleYEi +00000000002221dc g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm10EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000001c775c g DF .text 0000000000000114 _ZNK2nn3mii11AppletInput22GetValidUuidArrayCountEv +000000000023f82c g DF .text 0000000000000088 _ZN22nerd_gillette_internal5otete7jaimev214DecodeImageROKERA1200_tPKhmPmRKNS0_7jaimev117IntensityInPacketE +0000000000329e48 w DF .text 0000000000000108 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5flushEv +0000000000189758 g DF .text 00000000000000b4 _ZN2nn5audio10MixManager7AcquireEPNS0_12FinalMixTypeEi +0000000000346c58 w DF .text 00000000000000b4 _ZNKSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPK2tmcc +0000000000134d94 g DF .text 0000000000000260 _ZN2nn4htcs6detail25virtual_socket_collection5CloseEiRi +00000000001d9d30 g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine8SetScaleEiiii +00000000001094b8 g DF .text 0000000000000088 silk_inner_prod_aligned +0000000000286850 g DF .text 000000000000000c NvRmGpuDeviceWaitForError +0000000000326144 g DF .text 00000000000000a0 _ZNSt3__111__libcpp_db10__insert_iEPv +000000000036211c g DF .text 0000000000000084 _ZNSt3__119__shared_mutex_base11lock_sharedEv +0000000000008850 w DF .text 0000000000000344 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE9UpdateAadEPKvm +0000000000190e08 g DF .text 0000000000000374 _ZN2nn5audio26RequestUpdateAudioRendererENS0_19AudioRendererHandleEPKNS0_19AudioRendererConfigE +0000000000145140 g DF .text 0000000000000008 _ZN2nn3ngc6detail16WorkBufAllocator8AllocateEm +0000000000184bf0 g DF .text 000000000000000c _ZN2nn5audio27InitializeAudioOutParameterEPNS0_17AudioOutParameterE +00000000002d1578 g DF .text 0000000000000038 _ZNK7android6Thread11exitPendingEv +00000000000d7c18 g DF .text 00000000000000d4 _ZN2nn4bcat6detail3ipc33CreateDeliveryCacheStorageServiceEPPNS2_28IDeliveryCacheStorageServiceENS_13ApplicationIdE +00000000002351a4 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail15HidSystemServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +0000000000979d50 w DO .data 0000000000000068 _ZTVNSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000000a52d4 g DF .text 00000000000001c4 _ZN2nn6socket6detail6SysctlEPimPvPmS3_m +00000000000bf4a4 g DF .text 0000000000000024 _ZN2nn7account38ExternalNetworkServiceAccountRegistrar12RegisterUserEPNS0_3UidE +000000000002bcd4 g DF .text 00000000000002bc _ZN2nn5image6detail13SearchIfdTagsEPNS1_6IfdTagEtRKNS1_9IfdHeaderERKNS1_10ExifBinaryE +00000000003ab1e0 g DF .text 0000000000000004 sem_getvalue +00000000001414e8 g DF .text 0000000000000698 _ZN2nn3ngc15ProfanityFilter23CheckProfanityWordsImplEPjPPKDsmb +00000000001884c4 g DF .text 0000000000000094 _ZN2nn5audio33SetI3dl2ReverbLateReverbDecayTimeEPNS0_15I3dl2ReverbTypeENS_8TimeSpanE +00000000001cefd8 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_ILm4ELm4EvEEj +000000000013f20c g DF .text 00000000000000c4 _ZN2nn3nfp6FormatERKNS0_12DeviceHandleE +0000000000823500 g DO .rodata 0000000000000015 _ZTSNSt3__18numpunctIcEE +0000000000160af0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_IsPairingActiveENS0_3OutIbvEE +0000000000805530 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi106EE4MaskE +00000000000914ac g DF .text 0000000000000004 nnosTimedWaitAny +00000000002cd4f8 g DF .text 0000000000000024 _ZN7android12NativeHandleC1EP13native_handleb +00000000001ca1a4 g DF .text 0000000000000010 _ZNK2nn5swkbd14InlineKeyboard18GetTouchRectanglesEPNS0_4RectES3_ +0000000000180af8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E63_nn_sf_sync_IsStandardUserSystemClockAutomaticCorrectionEnabledENS0_3OutIbvEE +0000000000269960 g DF .text 0000000000000018 NvRmChipGetPlatform +000000000004c6a8 w DF .text 000000000000000c _ZN2nn2fs3fsa11IFileSystem12DoQueryEntryEPcmPKcmNS1_7QueryIdES5_ +000000000009a760 g DF .text 00000000000000b4 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain14RegisterObjectENS1_18CmifDomainObjectIdEONS2_20CmifServerObjectInfoE +0000000000164498 g DF .text 0000000000000038 _ZN2nn5prepo6detail7msgpack9WriteBoolEPNS2_17OutputStreamParamEb +00000000000a6498 w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl32EEENS7_20InHandleArgumentInfoILi0ELi1EEENSD_ILm8ELm8ELl40EEENSD_ILm32ELm4ELl0EEEEEELm48ELm4ELb1EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_23InRawClientArgumentTypeILm8ELm8EvEENSO_26InHandleClientArgumentTypeESS_NSR_ILm32ELm4EvEEj +00000000000d881c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +000000000022f464 g DF .text 0000000000000098 _ZN2nn3hid23VibrationNodeConnection10DisconnectEv +00000000007be340 w DO .rodata 000000000000015b _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000002a1e0 g DF .text 00000000000001b8 _ZN2nn5image6detail4jpeg13jpeg_idct_2x4EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000220460 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS1_33SixAxisSensorUserCalibrationStateELi1ENS1_13AtomicStorageIS3_EEED2Ev +0000000000074858 g DF .text 0000000000000188 nnmem_nlib_strchr_generic +000000000097e530 g DO .data 0000000000000008 unw_local_addr_space +0000000000951fb0 w DO .data 0000000000000018 _ZTIN2nn2lm7ILoggerE +0000000000184b24 g DF .text 0000000000000030 _ZN2nn5audio15AudioBufferListINS0_13AudioInBufferEE9push_backEPS2_ +000000000035706c g DF .text 00000000000002d8 _ZNKSt3__17codecvtIwc11__mbstate_tE5do_inERS1_PKcS5_RS5_PwS7_RS7_ +000000000021a320 g DF .text 00000000000000ac _ZN2nn3hid6detail24BindNfcDeviceUpdateEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +000000000097a978 g DO .data 0000000000000068 _ZTVNSt3__112ctype_bynameIcEE +00000000001bce90 g DF .text 0000000000000004 _ZN2nn3mii6detail11UtilityImplD1Ev +0000000000804cb0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi38EE4MaskE +0000000000810dd0 w DO .rodata 00000000000000be _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000329224 w DF .text 0000000000000010 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5pbumpEi +00000000001aff48 g DF .text 0000000000000070 _ZN2nn5audio3dsp20DspExceptionNotifier11GetInstanceEv +000000000025626c g DF .text 0000000000000050 _ZN2nn3web14ShowWebPageArgC2Ev +00000000000418e4 g DF .text 0000000000000008 _ZN2nn4edid9CloseEdidEPNS0_4EdidE +00000000000a1998 g DF .text 0000000000000004 _ZN2nn6socket12SetLastErrnoEi +00000000001bcdb0 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw15SetMustacheTypeEi +00000000001208ac g DF .text 00000000000000d0 _ZN2nn7friends24GetPlayHistoryStatisticsEPNS0_21PlayHistoryStatisticsERKNS_7account3UidE +00000000001d9608 w DF .text 0000000000000180 _ZNSt3__17__sort4IRPFbRKN2nn6fontll15OtfKerningTable11KerningPairES6_EPS4_EEjT0_SB_SB_SB_T_ +00000000007bd4f0 w DO .rodata 000000000000014a _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +0000000000264764 g DF .text 0000000000000004 multimedia_DebugString +000000000018914c g DF .text 0000000000000008 _ZNK2nn5audio14MemoryPoolInfo6IsUsedEv +000000000033cd34 g DF .text 000000000000006c _ZNSt3__114__num_put_base18__identify_paddingEPcS1_RKNS_8ios_baseE +0000000000074dac g DF .text 000000000000007c nnmem_nlib_wcscat +0000000000323e20 g DF .text 0000000000000038 _ZNSt3__112__rs_defaultD2Ev +00000000009b9390 w DO .bss 0000000000000008 _ZGVZN2nn2lm6detail17UnitHeapAllocatorILm1024ELi4ELi8EE11GetInstanceEvE10s_Instance +00000000002380d0 w DF .text 0000000000000220 _ZNK2nn8irsensor6detail8RingLifoINS0_24TeraPluginProcessorStateELi5EE12ReadFilteredEPS3_iNSt3__18functionIFbRKS3_EEEj +00000000001b5890 g DF .text 0000000000000008 _ZNK2nn2la21CommonArgumentsWriter13GetExportSizeEv +0000000000264b68 g DF .text 0000000000000004 NvOsLibraryUnload +00000000001bacf4 g DF .text 0000000000000020 _ZN2nn3mii6detail13GetDefaultMiiEi +00000000000d480c g DF .text 0000000000000010 _ZN2nn6applet28RequestToRelaunchApplicationENS0_13StorageHandleE +0000000000264b50 g DF .text 0000000000000004 NvOsSharedMemUnmap +0000000000332b44 w DF .text 0000000000000128 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE3putEw +000000000094d1f8 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24ITransferStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000003afa0 g DF .text 0000000000000008 nnutilZlib_zcfree +000000000024e810 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_SaveScreenShotEx0ENS0_3OutINS5_21ApplicationAlbumEntryEvEERKNS0_8InBufferERKNS5_6detail22ScreenShotAttributeEx0ENS_6applet20AppletResourceUserIdEj +00000000003333b4 g DF .text 000000000000001c _ZNSt3__18ios_base6xallocEv +0000000000076158 g DF .text 00000000000000d8 nnmem_nlib_utf32ncpy_ +0000000000118e08 g DF .text 0000000000000038 _ZN2nn5codec6detail21GetOpusForceModeValueENS0_14OpusCodingModeE +000000000023239c w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E34_nn_sf_sync_SetSupportedNpadIdTypeENS_6applet20AppletResourceUserIdERKNS0_7InArrayIjEE +000000000004fd30 g DF .text 0000000000000200 _ZN2nn2fs15RenameDirectoryEPKcS2_ +000000000019d174 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E42_nn_sf_sync_GetAudioDeviceOutputVolumeAutoERKNS0_8InBufferENS0_3OutIfvEE +000000000021d858 g DF .text 0000000000000090 _ZN2nn3hid6detail28GetPlusMinusButtonCapabilityEPbS2_RKj +0000000000156168 g DF .text 0000000000000040 _ZN2nn4nifm19SetLocalNetworkModeEb +00000000002542c0 g DF .text 00000000000004f4 _ZN2nn3web38ShowApplicationLegalInformationPageArgC1Ev +000000000014b5ec g DF .text 0000000000000008 _ZN2nn3ngc6detail16NullOutputStream11PushBuffer_EPKvmb +0000000000230128 g DF .text 0000000000000044 _ZN2nn3hid15VibrationTargetC2ERKNS0_21VibrationDeviceHandleE +0000000000151b00 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +00000000000cb248 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IHomeMenuFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000001e970c g DF .text 0000000000001368 LFNT_map_char +0000000000253a28 g DF .text 0000000000000060 _ZN2nn3web22ShowOfflineHtmlPageArgC2ERKNS_13ApplicationIdEPKc +0000000000052cc4 g DF .text 0000000000000028 _ZN2nn2fs6detail26EventNotifierObjectAdapterD2Ev +0000000000091408 g DF .text 0000000000000004 nnosTimedWaitSystemEvent +000000000026cdac g DF .text 0000000000000008 NvRmSyncCreateFromSemaphoresWithAttr +00000000000043fc g DF .text 00000000000006a0 _ZN2nn6crypto6detail7Md5Impl12ProcessBlockEv +0000000000063de4 g DF .text 0000000000000184 _ZN2nn2fs23GetAndClearMmcErrorInfoEPNS0_16StorageErrorInfoEPmPcm +0000000000187068 g DF .text 0000000000000050 _ZN2nn5audio13SetAuxEnabledEPNS0_7AuxTypeEb +000000000094c0c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000011da9c g DF .text 0000000000000044 _ZN2nn7friends29GetPlayHistoryRegistrationKeyEPNS0_26PlayHistoryRegistrationKeyEb +000000000008257c w DF .text 00000000000000d0 _ZN2nn7nlibsdk4heap14TlsHeapCentral22UncacheSmallMemoryListEPNS1_12TlsHeapCacheEPv +0000000000145374 g DF .text 00000000000000ac _ZNK2nn3ngc6detail11AhoCorasick7MemSizeEv +00000000009ef6e0 g DO .bss 0000000000000008 _ZN2nn3ssl6detail16SslMemoryManager11g_pHeapHeadE +0000000000264658 g DF .text 0000000000000018 glslc_Alloc +0000000000079114 g DF .text 000000000000015c nnmem_nlib_mq_send +00000000007caf40 w DO .rodata 000000000000011c _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEEE +000000000026b27c g DF .text 0000000000000074 NvRmSurfaceComputeAlignment +00000000001b75f8 g DF .text 0000000000000018 _ZN2nn3mii6detail15GetWrinkleColorENS0_9GammaTypeE +000000000025bd34 g DF .text 000000000000000c NvMemoryProfilerBeginRealloc +00000000002cda6c g DF .text 000000000000002c _ZNK7android7RefBase10createWeakEPKv +0000000000346edc w DF .text 0000000000000008 _ZNKSt3__110moneypunctIcLb0EE16do_decimal_pointEv +000000000036c5a0 g DF .text 0000000000000050 _ZNSt3__115system_categoryEv +000000000029bebc g DF .text 0000000000000024 _ZN7android12MemoryDealerD0Ev +000000000003b8c0 g DF .text 0000000000000018 _ZNK2nn4util15RelocationTable7Section10GetBasePtrEPv +000000000004b484 w DF .text 0000000000000004 _ZN2nn2fs8IStorageD2Ev +0000000000178440 g DF .text 00000000000000c0 _ZN2nn3ssl10Connection11SetHostNameEPKcj +00000000000d98d0 w DF .text 0000000000000008 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm27EE27InitializeShimLibraryHolderINS_4bcat6detail3ipc15IServiceCreatorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESH_ +00000000002c7170 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient13getBrightnessERKNS_2spINS_7IBinderEEERf +000000000015c280 g DF .text 000000000000000c _ZN2nn2oe27GetNotificationMessageEventEv +0000000000178168 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3ssl2sf11ISslContextEE19FunctionForBoolTypeEv +0000000000075cb8 g DF .text 0000000000000080 nnmem_nlib_swapendian_64 +0000000000086a4c g DF .text 000000000000069c _ZN2nn7nlibsdk4heap14TlsHeapCentral17CacheSmallMemory_EPhmb +00000000007b9290 g DO .rodata 0000000000000039 _ZTSN2nn2sf4hipc6server34HipcServerSessionManagerWithDomainE +00000000000c7d84 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service18IDisplayControllerEEEvi +00000000001ba1ac g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw11SetMoleTypeEi +0000000000125e04 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_GetRelationshipENS0_3OutINS5_12RelationshipEvEERKNS_7account3UidENSO_23NetworkServiceAccountIdE +000000000018611c g DF .text 0000000000000048 _ZN2nn5audio17RemoveBufferMixerEPNS0_19AudioRendererConfigEPNS0_15BufferMixerTypeEPNS0_12FinalMixTypeE +0000000000a809b8 g DO .bss 00000000000000a0 _ZNSt3__15wclogE +00000000009493f0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account24IBaasAccessTokenAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6ObjectE +00000000001cbd80 g DF .text 0000000000000070 _ZN2nn2vi17GetDisplayCmuLumaEPfPKNS0_7DisplayE +00000000002329f4 w DF .text 00000000000000b0 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object11DisposeImplEv +00000000000d4e3c g DF .text 000000000000001c _ZN2nn4bcat6detail25DeliveryCacheProgressImpl5ClearEv +000000000016dbac g DF .text 0000000000000070 _ZN2nn8settings6detail29GetAvailableLanguageCodeCountEPi +00000000009d3ff0 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_4nifm6detail21ServiceProviderClient30CreateNifmUserServiceObjectTagEE8_globalsE +000000000019a65c g DF .text 000000000000000c _ZN2nn5audio32SetFinalOutputRecorderBufferInfoEPNS0_25FinalOutputRecorderBufferEPvmm +0000000000250618 g DF .text 0000000000000040 _ZN2nn3ldn19GetDisconnectReasonEv +00000000007d421e g DO .rodata 0000000000000002 silk_LTP_gain_middle_avg_RD_Q14 +0000000000121e94 g DF .text 000000000000013c _ZNK2nn7friends11BlockedUser18GetProfileImageUrlEPNS0_3UrlENS0_9ImageSizeE +0000000000082ec0 w DF .text 0000000000000170 _ZN2nn7nlibsdk4heap12TlsHeapCache17ReallocFunc_Mode0INSt3__117integral_constantIbLb0EEEEEiPS2_PvmPS8_ +00000000002bdcd8 g DF .text 0000000000000038 _ZN7android22ISurfaceComposerClientD0Ev +000000000094cf00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001c08a0 g DF .text 0000000000000034 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetAuthorIdEPNS1_12Ver3AuthorIdE +0000000000174ca4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetNxControllerSettingsENS0_3OutIivEERKNS0_8OutArrayINS5_6system20NxControllerSettingsEEE +00000000003589bc g DF .text 0000000000000194 _ZNKSt3__114__codecvt_utf8IDsE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_ +000000000015c748 g DF .text 00000000000000ac _ZN2nn2oe21TryPopLaunchParameterEPmPvm +00000000000ce694 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service21IApplicationFunctionsEEEvi +0000000000174b5c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_SetPtmFuelGaugeParameterERKNS5_6system21PtmFuelGaugeParameterE +0000000000070a44 g DF .text 0000000000000008 _ZN2nn4lmem6detail17GetNextBlockFrontEPNS1_8HeapHeadE +00000000000c127c g DF .text 0000000000000014 _ZN2nn7account42NintendoAccountAuthorizationRequestContextC2Ev +00000000001d0a98 w DF .text 000000000000017c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm4096EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSF_ILm8ELm8ELl8EEEEEELm16ELm4ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSN_24OutRawClientArgumentTypeILm4ELm4EEENSN_23InRawClientArgumentTypeILm8ELm8EvEESS_j +0000000000366c74 w DF .text 00000000000000e8 _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE4findEPKwmm +0000000000959078 g DO .data 0000000000000028 _ZTVN2nn5audio6server10ReverbInfoE +0000000000364368 w DF .text 00000000000001d4 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE7replaceEmmPKcm +00000000007cac20 w DO .rodata 000000000000010b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service19ILibraryAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000011112c g DF .text 0000000000000004 opus_repacketizer_destroy +00000000003132e8 w DF .text 0000000000000144 _ZN2nn3fgm14SessionManager9GetObjectEPNS_2sf13SharedPointerINS0_2sf8ISessionEEE +0000000000156e04 g DF .text 0000000000000004 _ZN2nn4nifm7RequestD1Ev +00000000002705fc g DF .text 0000000000000098 NvRmMemHandleExportForAruid +0000000000188f38 g DF .text 0000000000000008 _ZNK2nn5audio15AudioBufferListINS0_25FinalOutputRecorderBufferEE4backEv +00000000001a60bc g DF .text 0000000000000028 _ZNK2nn5audio6server9VoiceInfo16HasAnyConnectionEv +0000000000396b08 g DF .text 0000000000000024 _ZNSt10bad_typeidD0Ev +00000000007bf230 w DO .rodata 00000000000001aa _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas24IManagerForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +000000000018b4bc g DF .text 0000000000000138 _ZN2nn5audio19SplitterInfoManager19ReleaseSplitterInfoEPNS0_12SplitterInfoE +000000000002f658 g DF .text 0000000000000020 _ZN2nn5image11ExifBuilder12SetMakerNoteEPKvm +00000000001dec94 g DF .text 0000000000000130 load_fnt +00000000002d0950 g DF .text 0000000000000034 _ZNK7android7String814find_extensionEv +00000000001baf88 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw12GetHairColorEv +00000000003bc838 g DF .text 00000000000002f4 __des_setkey +0000000000048810 g DF .text 0000000000000190 _ZN2nn2fs24HierarchicalRomFileTable8OpenFileEPNS0_11RomFileInfoEi +000000000025cca8 g DF .text 0000000000000004 NvOsSetResourceAllocFileLine +000000000018c4e0 g DF .text 000000000000031c _ZN2nn5audio16VoiceInfoManager10InitializeEiPvm +000000000097a348 w DO .data 0000000000000070 _ZTVNSt3__117moneypunct_bynameIcLb0EEE +00000000002d1460 g DF .text 0000000000000008 _ZN7android6Thread10readyToRunEv +000000000016e724 g DF .text 0000000000000070 _ZN2nn8settings6detail16SetPtmBatteryLotERKNS0_7factory10BatteryLotE +0000000000955e40 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +0000000000197f80 g DF .text 0000000000000220 _ZN2nn5audio12OpenAudioOutEPNS0_8AudioOutEPKcRKNS0_17AudioOutParameterE +0000000000955ff0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +00000000002572b4 g DF .text 0000000000000104 _ZN2nn3web15ShowNewsPageArg18SetCallbackableUrlEPKc +0000000000097e0c g DF .text 0000000000000054 _ZN2nn2ro18LookupModuleSymbolEPmPKNS0_6ModuleEPKc +0000000000259168 g DF .text 0000000000000060 nvdcQueryVblankSyncpt +00000000000cc194 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE17GetCmifBaseObjectEv +0000000000228fe4 g DF .text 0000000000000044 _ZN2nn3hid6system19DisableHandheldHidsEv +0000000000954c40 w DO .data 0000000000000018 _ZTIN2nn8settings22IFactorySettingsServerE +000000000019b5e8 g DF .text 00000000000000f8 _ZN2nn5audio6server17AudioRenderSystem8FinalizeEv +00000000001d33d4 g DF .text 00000000000000b4 _ZN2nn2vi22GetDisplayHotplugEventEPNS_2os15SystemEventTypeEPNS0_7DisplayE +0000000000395d74 g DF .text 0000000000000014 _ZNSt9bad_allocC2Ev +00000000000a7e68 w DF .text 0000000000000118 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSE_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_NSM_23InRawClientArgumentTypeILm4ELm4EvEESQ_j +00000000007b8720 w DO .rodata 0000000000000033 _ZTSN2nn2os6detail33MultiWaitHolderOfNativeWaitObjectE +00000000002302f4 g DF .text 0000000000000048 _ZNK2nn3hid15VibrationTarget18GetActualVibrationEPNS0_14VibrationValueE +00000000000bb1bc w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas14IAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +000000000017a1ac g DF .text 0000000000000024 nnsslConnectionGetVerifyCertError +000000000017aeec w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E12GetProxyInfoEv +00000000001c78bc g DF .text 0000000000000008 _ZNK2nn3mii12AppletOutput17GetAppendMiiIndexEv +00000000003c26f0 g DF .text 000000000000001c __isspace_l +00000000003cf5dc g DF .text 0000000000000054 trunc +000000000019117c g DF .text 000000000000002c _ZN2nn5audio34SetAudioRendererRenderingTimeLimitENS0_19AudioRendererHandleEi +0000000000041420 g DF .text 0000000000000028 _ZN2nn4edid27GetDisplayYearOfManufactureEPiPKNS0_11DisplayInfoE +00000000000ab1b8 w DF .text 00000000000002ac _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSJ_ILm4ELm4ELl4EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSM_ILi1ELi33ELm0EEENSM_ILi2ELi33ELm0EEENSM_ILi3ELi33ELm0EEENSM_ILi4ELi34ELm0EEENSM_ILi5ELi34ELm0EEENSM_ILi6ELi34ELm0EEENSM_ILi7ELi34ELm0EEENSJ_ILm4ELm4ELl8EEEEEELm12ELm8ELb0EEESW_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEES14_NS2_23InRawClientArgumentTypeILm4ELm4EvEES16_NS2_24BufferClientArgumentTypeES17_S17_S17_S17_S17_S17_S17_S16_j +00000000000d9170 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +00000000003ac07c g DF .text 0000000000000004 lseek +000000000020ff5c g DF .text 00000000000001d8 any_used_fntset_or_unshared_lfnt_table_ptrs +000000000023120c w DF .text 00000000000000f8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm40ELm8ELl0EEEEEELm40ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm40ELm8EvEEj +00000000002cd51c g DF .text 0000000000000048 _ZN7android12NativeHandleD1Ev +00000000007c8d80 w DO .rodata 00000000000000f7 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000003c32f4 g DF .text 0000000000000008 __ctype_get_mb_cur_max +0000000000177044 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm44ELm4ELl0EEEEEELm0ELm44ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm44ELm4EEEj +00000000003420a0 w DF .text 00000000000000f0 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE11__get_am_pmERiRS4_S4_RjRKNS_5ctypeIcEE +0000000000221a7c g DF .text 00000000000001b0 _ZN2nn3hid6detail19GetTouchScreenStateILm2EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000003560a0 g DF .text 00000000000000ac _ZNSt3__112ctype_bynameIwEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +000000000094d760 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001cebd4 w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl16EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEENSB_ILm4ELm4ELl12EEEEEELm24ELm0ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSN_ILm4ELm4EvEESP_SP_SP_j +00000000001a32e4 g DF .text 0000000000000008 _ZN2nn5audio6server11AddressInfo21SetForceMappedDspAddrEm +00000000000c1d24 g DF .text 0000000000000030 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureC2EOS1_ +0000000000945048 g DO .data 0000000000000008 nnmem_nlib_utf8_nbytes_table +000000000094e220 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEEE +000000000016ac84 g DF .text 0000000000000050 _ZN2nn8settings6system12GetQuestFlagEv +00000000002203b4 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_13DebugPadStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +0000000000089cc4 g DF .text 0000000000000024 _ZN2nn3mem17StandardAllocatorC1EPvm +000000000020f408 g DF .text 00000000000000e8 FsScratchSpace_release +00000000000816f4 g DF .text 000000000000002c nnmem_nlib_semaphore_init +00000000000b23c4 g DF .text 000000000000008c _ZN2nn7account6detail24SimpleOAuthProcedureBaseaSEOS2_ +00000000000bb750 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E41_nn_sf_sync_DeleteRegistrationInfoLocallyEv +000000000019d6a4 g DF .text 0000000000000094 _ZN2nn5audio6server13CommandBuffer21GenerateVolumeCommandEfij +00000000000bf44c g DF .text 0000000000000058 _ZNK2nn7account38ExternalNetworkServiceAccountRegistrar26GetOAuthProcedureSessionIdEPNS0_9SessionIdE +000000000009c560 g DF .text 00000000000000b0 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase16ProcessAsSessionEPNS_2os19MultiWaitHolderTypeE +00000000000bf3d0 g DF .text 0000000000000010 _ZN2nn7account38ExternalNetworkServiceAccountRegistrarC2EOS1_ +00000000001a4d38 g DF .text 0000000000000008 _ZN2nn5audio6server12SinkInfoBase14GetDeviceStateEv +000000000009749c g DF .text 0000000000000008 nnResultGetDescription +000000000035ba0c g DF .text 00000000000000c4 _ZNKSt3__120__time_get_c_storageIcE7__am_pmEv +0000000000160794 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_SetSafetyLevelEi +0000000000225fc8 g DF .text 00000000000000e4 _ZN2nn3hid6detail21GetUniquePadInterfaceEPNS0_6system18UniquePadInterfaceENS2_11UniquePadIdE +0000000000046600 g DF .text 0000000000000024 _ZN2nn2fs17SetLocalAccessLogEb +0000000000163f0c g DF .text 0000000000000188 _ZN2nn5prepo6detail7msgpack11WriteStringEPNS2_17OutputStreamParamEPKcj +000000000016b6c0 g DF .text 0000000000000078 _ZN2nn8settings6detail14GetAudioVolumeEPNS0_6system11AudioVolumeEi +000000000022f1e8 g DF .text 00000000000000d4 _ZN2nn3hid13VibrationNodeD2Ev +0000000000264b40 g DF .text 0000000000000008 NvOsSharedMemGetFd +000000000097d5e8 g DO .data 0000000000000028 _ZTVSt9exception +0000000000189048 g DF .text 0000000000000054 _ZN2nn5audio18CopyMemoryPoolDataEPKNS0_14MemoryPoolTypeEPvPKvm +00000000001afdc4 g DF .text 0000000000000038 _ZN2nn5audio3dsp24ApplyLinearEnvelopeGain1EPiPKiiii +0000000000218758 g DF .text 0000000000000214 _ZN2nn3hid6detail20GetJoyXpadLeftStatesEPiPNS0_12JoyXpadStateEiRKNS0_9JoyXpadIdE +0000000000365654 w DF .text 00000000000000e4 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendEmw +000000000097cea8 g DO .data 0000000000000080 _ZTVNSt3__112strstreambufE +000000000004b9d4 g DF .text 0000000000000090 _ZN2nn2fs15RomFsFileSystem28GetRequiredWorkingMemorySizeEPmPNS0_8IStorageE +000000000018b944 g DF .text 0000000000000008 _ZNK2nn5audio12SplitterInfo9GetInUsedEv +000000000018aaa0 g DF .text 0000000000000044 _ZN2nn5audio15AcquireSplitterEPNS0_19AudioRendererConfigEPNS0_12SplitterTypeEiii +00000000001741dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E37_nn_sf_sync_SetUserSystemClockContextERKNS_4time18SystemClockContextE +00000000001a7b94 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_14MixRampCommandE +0000000000045d84 g DF .text 000000000000000c _ZN2nn4diag6detail16PrintDebugStringEPKcm +000000000004d5e0 g DF .text 0000000000000084 _ZN2nn2fs6detail18FileSystemAccessor15CreateDirectoryEPKc +00000000001fe0bc g DF .text 0000000000000084 fsg_CopyElementBackwards +0000000000118444 g DF .text 0000000000000150 _ZN2nn5codec11OpusEncoder17EncodeInterleavedEPmPvmPKsi +000000000017053c g DF .text 0000000000000070 _ZN2nn8settings6detail18GetUsb30EnableFlagEPb +0000000000a80698 g DO .bss 00000000000000a0 _ZNSt3__14coutE +0000000000189318 g DF .text 0000000000000008 _ZNK2nn5audio14MemoryPoolInfo10GetAddressEv +0000000000259ff0 g DF .text 0000000000000048 nvdcValidateMode +000000000034f310 w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIDic11__mbstate_tED1Ev +000000000095da00 g DO .data 0000000000000018 _ZTIN2nn8irsensor6detail15IrSensorSessionE +0000000000072204 g DF .text 0000000000000088 nnmem_nlib_snprintf +0000000000169e68 g DF .text 0000000000000050 _ZN2nn8settings6system38GetPushNotificationActivityModeOnSleepEv +000000000014b078 g DF .text 000000000000005c _ZN2nn3ngc6detail15NullInputStreamC2Ev +00000000007e76f0 w DO .rodata 0000000000000174 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEvEE +000000000022bc84 g DF .text 0000000000000054 _ZN2nn3hid6system10HasBatteryERKj +000000000022747c g DF .text 0000000000000078 _ZN2nn3hid6detail27BeginPermitVibrationSessionEv +0000000000324864 g DF .text 0000000000000038 _ZNSt3__18__i_nodeD1Ev +0000000000050080 g DF .text 00000000000001a0 _ZN2nn2fs8OpenFileEPNS0_10FileHandleEPKci +000000000094d740 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000097a428 w DO .data 0000000000000070 _ZTVNSt3__117moneypunct_bynameIwLb0EEE +0000000000148af8 g DF .text 0000000000000238 _ZNK2nn3ngc6detail3Bp_7EncloseEj +00000000002cc428 g DF .text 00000000000000ec _ZNK7android6Region9operationERKS0_iii +000000000036296c w DF .text 0000000000000088 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcm +000000000004dfac g DF .text 0000000000000034 _ZN2nn2fs6detail18FileSystemAccessor10QueryEntryEPcmPKcmNS0_3fsa7QueryIdES5_ +00000000000b2a9c g DF .text 00000000000000b8 _ZN2nn7account26InitializeForAdministratorEv +000000000025e228 g DF .text 00000000000000f8 NvUHashReplace +00000000003c2518 g DF .text 0000000000000024 isalnum +00000000003c385c g DF .text 0000000000000108 setenv +0000000000068eb4 g DF .text 0000000000000124 _ZN2nn2fs20GetSaveDataTimeStampEPNS_4time9PosixTimeEm +000000000006ff98 g DF .text 0000000000000230 _ZN2nn4lmem6detail24ResizeExpHeapMemoryBlockEPNS1_8HeapHeadEPvm +00000000000e8508 g DF .text 00000000000000d0 encode_pulses +000000000011d62c g DF .text 0000000000000164 _ZN2nn7friends14GetProfileListEPNS0_12AsyncContextEPNS0_7ProfileERKNS_7account3UidEPKNS5_23NetworkServiceAccountIdEi +000000000018c2b8 g DF .text 0000000000000018 _ZN2nn5audio29GetVoiceBiquadFilterParameterEPKNS0_9VoiceTypeEi +000000000024cc24 g DF .text 0000000000000008 _ZNK2nn5album12LibraryState16IsShareAvailableEv +0000000000317e08 g DF .text 0000000000000094 _ZN2nn3pcv15GetVoltageRangeEPiS1_S1_NS0_11PowerDomainE +0000000000117f10 g DF .text 0000000000000004 _ZN2nn5codec11OpusDecoderD2Ev +0000000000296838 g DF .text 0000000000000038 _ZN7android8BpBinder10onFirstRefEv +0000000000353cf4 g DF .text 000000000000005c _ZNSt3__16localeC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000000455f0 g DF .text 0000000000000060 _ZN2nn4diag18IsDebuggerAttachedEv +000000000021414c g DF .text 0000000000000070 _ZN2nn3hid6detail30UnregisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +00000000001cae6c g DF .text 0000000000000070 _ZNK2nn5swkbd6detail18InlineKeyboardImpl12GetMaxHeightEv +000000000029e0ac g DF .text 0000000000000058 _ZN7android6Parcel7setDataEPKhm +0000000000347924 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb1EE16do_positive_signEv +000000000018a700 g DF .text 000000000000000c _ZN2nn5audio13GetSinkNodeIdEPKNS0_14DeviceSinkTypeE +00000000001bafc0 g DF .text 0000000000000008 _ZN2nn3mii6detail24NfpStoreDataExtentionRaw10SetDefaultEv +00000000000912c8 g DF .text 0000000000000018 nnosCreateThread +000000000019707c w DF .text 00000000000001f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi34ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSD_ILm8ELm8ELl8EEEEEELm0ELm16ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSL_24OutRawClientArgumentTypeILm4ELm4EEENSN_ILm8ELm8EEEj +000000000004a948 g DF .text 0000000000000010 _ZN2nn2fs11RomPathTool10PathParserC1Ev +00000000003e6e2c g DF .text 0000000000000028 __nnmusl_ClockNanoSleep +00000000001c78b4 g DF .text 0000000000000008 _ZNK2nn3mii12AppletOutput15GetAppletResultEv +00000000000a0a78 g DF .text 000000000000012c _ZN2nn2sm15RegisterServiceEPNS_3svc6HandleEPKcmib +0000000000052d34 g DF .text 00000000000000d4 _ZN2nn2fs6detail26EventNotifierObjectAdapter11DoBindEventEPNS_2os15SystemEventTypeENS3_14EventClearModeE +000000000013077c w DF .text 0000000000000194 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl68EEENSJ_ILm66ELm2ELl0EEEEEELm72ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESU_NS2_23InRawClientArgumentTypeILm4ELm4EvEENSV_ILm66ELm2EvEEj +0000000000954fa0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEEvEE +00000000001aa424 g DF .text 0000000000000004 _ZN2nn5audio3dsp4StopEv +0000000000091d9c g DF .text 000000000000005c _ZN2nn2os6detail13ThreadManager13SuspendThreadEPNS0_10ThreadTypeE +00000000001239f8 g DF .text 0000000000000008 _ZNK2nn7friends13FriendSetting15GetFavoriteFlagEv +00000000001c5734 g DF .text 0000000000000034 _ZNK2nn3mii8Database14IsFullDatabaseEv +000000000022a074 g DF .text 0000000000000030 _ZN2nn3hid15KeyCodeComposer21SetRomajiHiraganaModeEb +00000000003c5854 g DF .text 0000000000000050 __strxfrm_l +000000000005f898 g DF .text 0000000000000060 _ZN2nn2fs6detail24FileServiceObjectAdapter6DoReadEPmlPvmRKNS0_10ReadOptionE +00000000003e1e40 g DF .text 0000000000000090 strcasecmp +000000000022cc34 g DF .text 0000000000000054 _ZN2nn3hid28IsSixAxisSensorFusionEnabledERKNS0_19SixAxisSensorHandleE +0000000000222e80 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm6EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +00000000003290a8 w DF .text 0000000000000054 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEEC2ERKS3_ +00000000007cd0a0 w DO .rodata 00000000000000fe _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001a7654 g DF .text 0000000000000054 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImplC2EPS2_RNS_6applet20AppletResourceUserIdEj +000000000021f284 g DF .text 0000000000000034 _ZN2nn3hid6detail20SharedMemoryAccessorD0Ev +0000000000263430 g DF .text 0000000000000098 NvOsTimerEventCreate +000000000036cd9c g DF .text 0000000000000004 _ZNSt3__114error_categoryD2Ev +00000000001f8770 g DF .text 0000000000000060 fnt_SuperRound +0000000000949428 w DO .data 0000000000000070 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001da6ec g DF .text 000000000000006c FS_strdup +000000000036d48c g DF .text 0000000000000018 _ZNSt3__123__libcpp_condvar_signalEPNSt13__libcxx_shim19__libcxx_shim_ver_132__libcxx_shim_condition_variableE +00000000000bd2d4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_GetAccountIdENS0_3OutINS5_23NetworkServiceAccountIdEvEE +00000000007dabf0 w DO .rodata 0000000000000011 _ZTSN2nn2lm7ILoggerE +0000000000189a2c g DF .text 0000000000000070 _ZNK2nn5audio10MixManager10IsValidMixEPKNS0_10SubMixTypeE +0000000000361324 g DF .text 00000000000000b4 _ZNSt3__111timed_mutex4lockEv +00000000007c9ab0 w DO .rodata 00000000000000fe _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000007f0b60 w DO .rodata 0000000000000062 _ZTSN2nn2sf6detail18EmplacedImplHolderINS_5audio6server24AudioRendererManagerImpl15AudioDeviceImplEEE +000000000097a1f8 w DO .data 0000000000000070 _ZTVNSt3__110moneypunctIcLb1EEE +000000000008dcac g DF .text 0000000000000040 _ZN2nn2os13FinalizeFiberEPNS0_9FiberTypeE +00000000001259a8 w DF .text 0000000000000048 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E47_nn_sf_sync_AddFacedFriendRequestForApplicationERKNS_7account3UidERKNS5_33FacedFriendRequestRegistrationKeyERKNSL_8NicknameERKNS0_8InBufferERKNS5_15InAppScreenNameES10_m +00000000002731ec g DF .text 00000000000000f8 NvRmStreamPushGatherNonIncr +000000000002fc94 g DF .text 0000000000000014 _ZN2nn5image13ExifExtractor11SetExifDataEPKvm +0000000000045970 g DF .text 000000000000002c _ZN2nn4diag6detail16GetBacktraceImplEPmi +000000000016cdb4 g DF .text 0000000000000070 _ZN2nn8settings6detail15GetEciDeviceKeyEPNS0_7factory16EccB233DeviceKeyE +00000000002c7e6c g DF .text 0000000000000074 __android_log_write +00000000007e3ae0 w DO .rodata 000000000000012d _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000000c7bb4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_GetLibraryAppletExpectedMasterVolumeENS0_3OutIfvEE +00000000001bc7e4 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw8GetBuildEv +000000000039698c g DF .text 000000000000005c _ZNSt11range_errorD0Ev +00000000003a6b50 g DF .text 0000000000000074 __atomic_fetch_sub_16 +00000000000969a0 g DF .text 0000000000000008 _ZN2nn2os6detail38InternalConditionVariableImplByHorizon10InitializeEv +00000000001cd8b8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetDisplayResolutionENS0_3OutIlvEESH_m +00000000003341ac w DF .text 0000000000000004 _ZNSt3__17collateIcED1Ev +00000000000b2c84 g DF .text 0000000000000038 _ZN2nn7account6detail31TrySelectUserWithoutInteractionEPNS0_3UidEb +0000000000959cf0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003556cc g DF .text 0000000000000044 _ZNSt3__15ctypeIcED2Ev +000000000004d0f4 g DF .text 0000000000000008 _ZNK2nn2fs6detail12FileAccessor11GetOpenModeEv +00000000002204a0 g DF .text 0000000000000054 _ZN2nn3hid6detail18SharedMemoryHolderC2EOS2_ +00000000003ac098 g DF .text 0000000000000004 write +00000000007cc2c0 w DO .rodata 0000000000000149 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IOverlayFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000d08bc g DF .text 0000000000000094 _ZN2nn3apm22RequestPerformanceModeENS0_15PerformanceModeE +00000000003a5eec g DF .text 000000000000006c __atomic_exchange_16 +00000000003ce69c g DF .text 0000000000000028 significandf +00000000007effc0 w DO .rodata 000000000000003b _ZTSN2nn5audio6detail38IFinalOutputRecorderManagerForDebuggerE +00000000001a6820 g DF .text 0000000000000010 _ZN2nn5audio6server12VoiceContextC1Ev +00000000003c2864 w DF .text 0000000000000040 iswcntrl_l +000000000094d918 w DO .data 0000000000000098 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19ILibraryAppletProxyENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000013aadc g DF .text 0000000000000054 _ZN2nn3nfp6client21DestroyDebugInterfaceEv +00000000001d0314 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_CreateSharedBufferStaticStorageENS0_3OutINS_2vi7fbshare18SharedBufferHandleEvEEmRKNSI_22SharedMemoryPoolLayoutE +0000000000359ea4 g DF .text 0000000000000014 _ZNKSt3__115__codecvt_utf16IDiLb1EE13do_max_lengthEv +0000000000140524 g DF .text 0000000000000118 _ZN2nn3nfp5FlushERKNS0_12DeviceHandleE +0000000000198b14 g DF .text 00000000000000d0 _ZN2nn5audio28GetAudioOutPlayedSampleCountEPKNS0_8AudioOutE +0000000000328210 g DF .text 00000000000000fc _ZNSt3__121__request_thread_dataEv +00000000001dd804 g DF .text 0000000000000054 FSS_free_char +00000000003d348c g DF .text 0000000000000048 rand_r +00000000003208e4 w DF .text 0000000000000540 _ZNSt3__16__sortIRNS_6__lessIxxEEPxEEvT0_S5_T_ +00000000003c5b00 g DF .text 0000000000000004 __lctrans +000000000097af88 g DO .data 0000000000000060 _ZTVNSt3__116__narrow_to_utf8ILm32EEE +00000000000d86c8 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_GetDeliveryListENS0_3OutImvEERKNS0_9OutBufferENS_13ApplicationIdE +0000000000199658 g DF .text 0000000000000008 _ZN2nn5audio22GetAudioInChannelCountEPKNS0_7AudioInE +00000000008254d0 g DO .rodata 0000000000000005 _ZTSPKDh +0000000000177f30 g DF .text 00000000000000a4 _ZN2nn3ssl7Context19RegisterInternalPkiEPmNS1_11InternalPkiE +00000000007f0ed0 g DO .rodata 000000000000001d _ZTSN2nn5audio6server9DelayInfoE +0000000000269b4c g DF .text 000000000000003c NvRmSurfaceFree +0000000000825520 g DO .rodata 0000000000000005 _ZTSPKDi +0000000000156e6c g DF .text 0000000000000004 _ZN2nn4nifm17NetworkConnection13SubmitRequestEv +000000000017b4b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_GetVerifyOptionENS0_3OutINS6_12VerifyOptionEvEE +00000000002c6a7c g DF .text 000000000000006c _ZN7android21SurfaceComposerClient14setDisplaySizeERKNS_2spINS_7IBinderEEEjj +00000000000ab048 w DF .text 0000000000000170 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSJ_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESU_NS2_23InRawClientArgumentTypeILm4ELm4EvEESW_j +00000000002cb108 g DF .text 000000000000002c _ZNK7android4RectmiERKNS_5PointE +00000000003182a8 g DF .text 0000000000000094 _ZN2nn3pcv24GetPowerDomainStateTableEPNS0_16PowerDomainStateEPii +00000000001374d0 g DF .text 0000000000000024 _ZN2nn3nfc6client18GetSystemInterfaceEv +000000000017b7ac w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24OutRawClientArgumentTypeILm4ELm4EEEj +00000000001b6190 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor16GetFavoriteColorEv +000000000082540c g DO .rodata 0000000000000005 _ZTSPKDn +00000000000cc77c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_ReportVisibleErrorENS_3err9ErrorCodeE +000000000018d8dc g DF .text 0000000000000008 _ZNK2nn5audio6common16UpdateDataHeader12GetTotalSizeEv +00000000001b1794 g DF .text 000000000000000c _ZN2nn2ec6detail22GetShopPageReturnValueEv +00000000002bda2c g DF .text 000000000000000c _ZNK7android22ISurfaceComposerClient22getInterfaceDescriptorEv +00000000000cffe0 g DF .text 0000000000000020 _ZN2nn3apm18GetInternalManagerEv +0000000000956ce0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000019f050 g DF .text 00000000000000a0 _ZN2nn5audio6server10PerfAspectINS1_11EntryAspectENS1_16CommandGeneratorEEptEv +0000000000825510 g DO .rodata 0000000000000005 _ZTSPKDs +0000000000165e28 g DF .text 0000000000000068 _ZN2nn5prepo6detail17VerifyStringValueEPmPKc +0000000000220418 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_18SixAxisSensorStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +00000000002305dc g DF .text 0000000000000054 _ZN2nn3hid19GetXpadPlayerNumberERKNS0_11BasicXpadIdE +00000000003e0584 g DF .text 00000000000002dc qsort +0000000000003558 g DF .text 0000000000000054 _ZN2nn6crypto6detail26loc_p256_key_gen_primitiveEPNS1_15p256_ec_keypairEPKNS1_17p256_ec_parameterEPKji +0000000000803ad0 w DO .rodata 000000000000001f _ZTSN2nn3hid6detail12KeyboardLifoE +00000000001faab0 g DF .text 0000000000000124 comp_phantom_points +0000000000a80918 g DO .bss 00000000000000a0 _ZNSt3__14clogE +00000000007c2180 w DO .rodata 0000000000000170 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +0000000000951df8 g DO .data 0000000000000008 _ZN2nn2lm14LogServiceNameE +0000000000180090 g DF .text 000000000000018c _ZN2nn4time6detail7service21ServiceProviderClientC1Ev +000000000017f45c g DF .text 0000000000000004 _ZN2nn4time26StandardNetworkSystemClock11from_time_tEl +0000000000286768 g DF .text 000000000000000c NvRmGpuDeviceZbcAddColor +00000000009a8ba0 g DO .bss 0000000000000008 _ZN2nn2os6detail23g_UserExceptionStackTopE +00000000003aae9c g DF .text 0000000000000008 __stdout_seek +0000000000957360 w DO .data 0000000000000018 _ZTIN2nn5audio6detail8IAudioInE +000000000094dad8 w DO .data 0000000000000118 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service26ILibraryAppletSelfAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000017917c g DF .text 00000000000000e0 _ZN2nn3ssl10Connection5WriteEPKcj +000000000018230c w DF .text 0000000000000174 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm32ELm8ELl0EEEEEELm32ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm32ELm8EvEEj +0000000000156c98 g DF .text 0000000000000088 _ZN2nn4nifm17GetTelemetoryInfoEPNS0_13TelemetryInfoE +0000000000956d30 g DO .data 0000000000000008 _ZN2nn5audio6common11SupportTags41AudioRendererProcessingTimeLimit70PercentE +0000000000166150 g DF .text 0000000000000068 _ZN2nn5prepo6detail16HandleSaveResultENS_6ResultE +0000000000314f4c g DF .text 0000000000000074 _ZN2nn4gpio12CloseSessionEPNS0_14GpioPadSessionE +00000000007b8e10 w DO .rodata 0000000000000027 _ZTSN2nn2sf4cmif6server16CmifServerDomainE +0000000000152770 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +00000000000cea64 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_BeginBlockingHomeButtonEl +0000000000174608 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_SetForceMuteOnHeadphoneRemovedEb +00000000001c7bdc g DF .text 0000000000000080 _ZN2nn3mii18GetAppendMiiResultEPiNS_6applet13StorageHandleE +00000000002b3e50 g DF .text 00000000000000c0 _ZN7android12ConsumerBase15addReleaseFenceEiNS_2spINS_13GraphicBufferEEERKNS1_INS_5FenceEEE +00000000000b9aac w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE29_nn_sf_sync_GetLastOpenedUserENS0_3OutINS5_3UidEvEE +00000000000c6f38 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_SetHandlesRequestToDisplayEb +000000000016b154 g DF .text 0000000000000050 _ZN2nn8settings6system16UsesWebInspectorEv +00000000001b6244 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor14GetEyebrowTypeEv +000000000003d768 g DF .text 000000000000000c _ZN2nn4util10SdkVersionEv +00000000000a0948 g DF .text 0000000000000008 _ZN2nn2sm8FinalizeEv +00000000000a720c w DF .text 0000000000000220 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEENSE_ILm4ELm4ELl4EEENSG_ILi1ELi34ELm0EEENSB_ILm4ELm4ELl8EEEEEELm8ELm12ELb0EEESL_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESS_NSQ_23InRawClientArgumentTypeILm4ELm4EvEENSQ_24BufferClientArgumentTypeESU_SV_SS_j +00000000000c6234 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E50_nn_sf_sync_GetDefaultDisplayResolutionChangeEventENS0_3OutINS0_12NativeHandleEvEE +0000000000041298 g DF .text 0000000000000008 _ZN2nn4edid22GetAudioFormatBitDepthEPiPKNS0_15AudioFormatInfoE +00000000003e7630 g DF .text 0000000000000018 __nnmusl_BroadcastConditionVariable +0000000000318cc4 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_SetVoltageValueEii +00000000001b75a8 g DF .text 0000000000000018 _ZN2nn3mii6detail16GetEyeGreenColorENS0_9GammaTypeE +00000000002c5edc g DF .text 0000000000000024 _ZN7android21SurfaceComposerClient14destroyDisplayERKNS_2spINS_7IBinderEEE +0000000000947f10 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEEE +00000000002a7558 g DF .text 0000000000000008 _ZThn8_N7android23BnGraphicBufferConsumer10onTransactEjRKNS_6ParcelEPS1_j +0000000000a80c90 w DO .bss 0000000000000010 _ZNSt3__18time_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE2idE +0000000000151188 g DF .text 0000000000000048 _ZN2nn4nifm6detail17ScanRequestClientD1Ev +00000000000c8bdc w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000c7c24 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000231e58 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E28_nn_sf_sync_ActivateDebugPadENS_6applet20AppletResourceUserIdE +000000000018c22c g DF .text 0000000000000050 _ZN2nn5audio29SetVoiceBiquadFilterParameterEPNS0_9VoiceTypeEiRKNS0_21BiquadFilterParameterE +0000000000943570 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf11IFileSystemE +00000000000b4bac w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E48_nn_sf_sync_CheckNetworkServiceAvailabilityAsyncENS0_3OutINS0_13SharedPointerINSJ_13IAsyncContextEEEvEE +00000000009506b0 g DO .data 0000000000000018 _ZTIN2nn5codec22OpusMultiStreamDecoderE +000000000025e8f8 g DF .text 0000000000000118 NvUStrtoul +0000000000001730 w DF .text 0000000000000148 _ZN2nn6crypto6detail8HmacImplINS0_13Sha1GeneratorEE6GetMacEPvm +0000000000069c20 g DF .text 0000000000000158 _ZN2nn2fs25OpenSaveDataThumbnailFileEPNSt3__110unique_ptrINS0_3fsa5IFileENS1_14default_deleteIS4_EEEEmRNS0_6UserIdE +00000000007cfab0 w DO .rodata 0000000000000116 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000187974 g DF .text 000000000000001c _ZN2nn5audio19GetReverbColorationEPKNS0_10ReverbTypeE +0000000000805470 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi100EE4MaskE +000000000025a2f8 g DF .text 00000000000000cc nvdcValidateMode2 +000000000097a2d8 w DO .data 0000000000000070 _ZTVNSt3__110moneypunctIwLb1EEE +0000000000140fc0 g DF .text 0000000000000024 _ZN2nn3ngc15ProfanityFilterC2Ev +00000000007adab0 g DO .rodata 0000000000000004 _ZN2nn4util6detail19AngleIndexHalfRoundE +00000000000bc100 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE19_nn_sf_sync_SuspendENS0_3OutINSK_4UuidEvEE +00000000000ba560 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE17GetCmifBaseObjectEv +00000000000cc06c w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE35_nn_sf_sync_GetLibraryAppletCreatorENS0_3OutINS0_13SharedPointerINS6_21ILibraryAppletCreatorEEEvEE +0000000000173c28 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm4096EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000002977d0 g DF .text 00000000000001f4 _ZN7android7IMemory11asInterfaceERKNS_2spINS_7IBinderEEE +0000000000329454 w DF .text 0000000000000014 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED1Ev +00000000002265f8 g DF .text 0000000000000154 _ZN2nn3hid6detail36GetSixAxisSensorUserCalibrationStageEPNS0_6system33SixAxisSensorUserCalibrationStageENS2_25UniqueSixAxisSensorHandleE +00000000002389f0 g DF .text 0000000000000038 _ZN2nn8irsensor6detail13StatusManager25SetIrCameraInternalStatusERKNS0_14IrCameraHandleENS0_22IrCameraInternalStatusE +0000000000253bb4 g DF .text 000000000000008c _ZN2nn3web22ShowOfflineHtmlPageArg17SetBackgroundKindERKNS0_21OfflineBackgroundKindE +00000000003e1524 g DF .text 0000000000000010 bcopy +00000000000452c4 g DF .text 00000000000000e0 _ZN2nn4diag6detail9TranslateEPKhPKc +0000000000031ba4 g DF .text 000000000000004c nnutilZlib_deflatePending +0000000000084258 g DF .text 00000000000000f8 _ZN2nn7nlibsdk4heap14TlsHeapCentral7FreePhyEPvm +0000000000179094 g DF .text 00000000000000e8 _ZN2nn3ssl10Connection4ReadEPcPij +000000000019d32c g DF .text 0000000000000014 _ZNK2nn5audio6server13CommandBuffer8GetStateEv +00000000003a15ec g DF .text 0000000000000004 __gnu_h2f_ieee +00000000003e78b4 g DF .text 0000000000000008 __nnmusl_GetPID +000000000005fa4c g DF .text 0000000000000048 _ZN2nn2fs6detail29DirectoryServiceObjectAdapterD0Ev +000000000006f8c8 g DF .text 000000000000004c _ZN2nn4lmem13DumpFrameHeapEPNS0_6detail8HeapHeadE +00000000000c91b8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000182d74 g DF .text 000000000000004c _ZN2nn3ntc4shim31CorrectionNetworkClockAsyncTask18GetServerPosixTimeEv +00000000002cb8e4 g DF .text 0000000000000014 _ZNK7android6Region3endEv +0000000000059ba4 w DF .text 0000000000000200 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEENSI_ILm64ELm8ELl8EEEEEELm72ELm0ELb0EEESL_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEENST_ILm64ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000009a308 g DF .text 00000000000000d4 _ZN2nn2sf4cmif6server23CmifServerDomainManager6DomainD1Ev +0000000000804bf0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi32EE4MaskE +0000000000139f88 g DF .text 00000000000000d0 _ZN2nn3nfc11WriteMifareERKNS0_12DeviceHandleEPKNS0_25MifareWriteBlockParameterEm +00000000000c24a4 g DF .text 0000000000000014 _ZNK2nn7account13ProfileEditor11GetUserDataEPcm +00000000001c5d28 g DF .text 0000000000000194 _ZN2nn3mii6detail21ServiceProviderClientC1Ev +00000000001d5b58 g DF .text 000000000000000c _ZN2nn2vi6detail22ServiceReferenceHolder21SetIndirectLayerTableEPNS1_18IndirectLayerTableE +0000000000329218 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE4setgEPcS4_S4_ +0000000000155b50 g DF .text 0000000000000070 _ZN2nn4nifm19SetDefaultIpSettingERKNS0_13IpSettingDataE +00000000001a79d0 g DF .text 0000000000000030 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl28GetActiveAudioDeviceNameAutoERKNS_2sf9OutBufferE +000000000008fe10 g DF .text 000000000000004c _ZN2nn2os19InitializeSemaphoreEPNS0_13SemaphoreTypeEii +0000000000231000 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E31_nn_sf_sync_ConnectUsbPadsAsyncEv +0000000000954948 w DO .data 00000000000000a8 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5prepo6detail3ipc13IPrepoServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000173778 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_GetRegionCodeENS0_3OutIivEE +000000000017c95c w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSG_ILi1ELi5ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeESS_NS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000003dfaf4 w DF .text 0000000000000084 __isoc99_vswscanf +0000000000824021 g DO .rodata 0000000000000001 _ZSt7nothrow +00000000007b9140 w DO .rodata 0000000000000033 _ZTSN2nn2sf4hipc6server28HipcServerSessionManagerBaseE +00000000003cc130 g DF .text 0000000000000178 log +000000000014770c g DF .text 0000000000000060 _ZN2nn3ngc6detail3Bp_D2Ev +0000000000169450 g DF .text 0000000000000050 _ZN2nn8settings6system13GetLdnChannelEv +0000000000286e7c g DF .text 000000000000000c NvRmGpuRegOpsSessionGetGrContext +000000000014f504 g DF .text 0000000000000040 _ZN2nn3ngc6detail15CompressedArray16ReleaseAllocatorEv +0000000000160e40 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E45_nn_sf_sync_SetPlayTimerAlarmDisabledForDebugEb +0000000000118ee8 g DF .text 00000000000000d8 _ZN2nn5codec6detail18OpusEncoderControlEP11OpusEncoderiz +00000000002272d0 g DF .text 0000000000000078 _ZN2nn3hid6detail15PermitVibrationEb +00000000001c5644 g DF .text 0000000000000008 _ZN2nn3mii8DatabaseC2Ev +00000000000796dc g DF .text 0000000000000184 nnmem_nlib_mq_drop +00000000000ce01c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000017a188 g DF .text 0000000000000024 nnsslConnectionPoll +00000000002287cc g DF .text 0000000000000044 _ZN2nn3hid6system23InitializeCaptureButtonEv +0000000000294e64 g DF .text 0000000000000018 _ZN7android7IBinderC2Ev +00000000002c8d84 g DF .text 0000000000000020 _ZN7android5FenceD1Ev +00000000000018f0 w DF .text 000000000000014c _ZN2nn6crypto6detail8HmacImplINS0_15Sha256GeneratorEE10InitializeEPKvm +0000000000319e20 g DF .text 0000000000000078 _ZN2nn3pwm14InitializeWithENS_2sf13SharedPointerINS0_8IManagerEEE +0000000000355698 g DF .text 0000000000000034 _ZNSt3__15ctypeIcEC2EPKtbm +00000000008012b0 w DO .rodata 00000000000000c1 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002d2ae8 g DF .text 0000000000000018 _ZN7android10VectorImpl3popEv +000000000036676c w DF .text 00000000000001ec _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceEmmPKwm +0000000000161074 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E67_nn_sf_sync_FinishSynchronizeParentalControlSettingsWithLastUpdatedENS0_3OutINS_4time9PosixTimeEvEENS6_9AsyncDataE +00000000001c9100 g DF .text 0000000000000008 _ZN2nn5swkbd34GetRequiredTextCheckWorkBufferSizeEv +0000000000979140 g DO .data 0000000000000018 _ZTINSt12experimental15fundamentals_v112bad_any_castE +0000000000298c24 g DF .text 0000000000000048 _ZThn8_N7android12BnMemoryHeapD1Ev +000000000006b364 g DF .text 0000000000000094 _ZN2nn2fs16SaveDataImporter4PushEPKvm +00000000000af5a0 g DF .text 00000000000000b4 _ZN2nn6socket8resolver10serializer20AddrInfoSingleSizeOfEPK8addrinfo +00000000001d2bc4 g DF .text 00000000000001a0 _ZN2nn2vi11OpenDisplayEPPNS0_7DisplayEPKc +00000000001a289c g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase7GetTypeEv +000000000033c7f0 w DF .text 0000000000000204 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcb +0000000000091f84 g DF .text 00000000000000c4 _ZN2nn2os6detail13ThreadManagerC1Ev +000000000033d95c w DF .text 00000000000003e0 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcd +00000000000b81c0 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E42_nn_sf_sync_SetSystemProgramIdentificationERKNS5_27SystemProgramIdentificationEm +0000000000286d04 g DF .text 0000000000000024 NvRmGpuChannelSetInterleave +00000000008223c0 g DO .rodata 0000000000000004 _ZNSt3__18ios_base9uppercaseE +000000000033e4b4 w DF .text 00000000000003e0 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEce +00000000003e92c4 g DF .text 000000000000000c __get_tp +00000000000a1eac g DF .text 000000000000000c _ZN2nn6socket6detail17GetHeapGenerationEv +00000000001b66ec g DF .text 0000000000000004 _ZN2nn3mii15IsValidCoreDataERKNS0_8CoreDataE +00000000001f007c g DF .text 000000000000006c FS_read +00000000000a1ac0 g DF .text 0000000000000004 nnsocketRead +000000000016ab64 g DF .text 0000000000000050 _ZN2nn8settings6system24GetBatteryPercentageFlagEv +0000000000286d4c g DF .text 000000000000001c NvRmGpuChannelSetTimeout +000000000029b034 g DF .text 0000000000000008 _ZThn8_N7android16BnServiceManager10onTransactEjRKNS_6ParcelEPS1_j +00000000002cabf8 g DF .text 0000000000000010 _ZN7android19GraphicBufferMapperC2Ev +00000000003c271c g DF .text 0000000000000010 __isupper_l +00000000000c438c g DF .text 00000000000002b4 _ZN2nn2am31InitializeApplicationInterfacesEv +000000000033c9f4 w DF .text 0000000000000208 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcl +00000000003e3be0 g DF .text 000000000000000c asctime +000000000033d550 w DF .text 0000000000000208 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcm +000000000018d100 g DF .text 0000000000000008 _ZN2nn5audio6common13NodeIdManager12GetVariationEj +0000000000253200 g DF .text 00000000000000a4 _ZN2nn3web16ShowLobbyPageArg6SetUidERKNS_7account3UidE +000000000095bf28 w DO .data 0000000000000020 _ZTVN2nn3hid6detail27SixAxisSensorCountStateLifoE +00000000002cac08 g DF .text 000000000000003c _ZN7android19GraphicBufferMapper14registerBufferEPK13native_handle +0000000000313e70 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000009476b8 w DO .data 0000000000000080 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas18IGuestLoginRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000356c64 g DF .text 0000000000000010 _ZNKSt3__17codecvtIcc11__mbstate_tE9do_lengthERS1_PKcS5_m +000000000033d34c w DF .text 0000000000000204 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcx +000000000017f464 g DF .text 0000000000000064 _ZN2nn4time40SetStandardNetworkSystemClockCurrentTimeERKNS0_9PosixTimeE +00000000001a2a30 g DF .text 0000000000000100 _ZN2nn5audio6server9DelayInfo6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPKNS0_10EffectInfo11InParameterERNS1_10PoolMapperE +000000000033d758 w DF .text 0000000000000204 _ZNKSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_RNS_8ios_baseEcy +00000000001cb850 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl27SetFinishedKeyboardCallbackEPFvvE +0000000000255e34 g DF .text 0000000000000050 _ZNK2nn3web20SharePageReturnValue9GetPostIdEv +0000000000365738 w DF .text 0000000000000258 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7reserveEm +00000000001a1d1c g DF .text 0000000000000038 _ZN2nn5audio6server11InfoUpdater17CheckConsumedSizeEv +000000000006fc08 g DF .text 0000000000000008 _ZN2nn4lmem23GetRequiredUnitHeapSizeEmiib +00000000001bcda4 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw9SetMouthYEi +0000000000160eec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_RetrievePairingInfoAsyncENS0_3OutINS6_9AsyncDataEvEENSL_INS0_12NativeHandleEvEE +00000000007c57b0 w DO .rodata 00000000000000f6 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000015ce84 g DF .text 0000000000000054 _ZN2nn2oe18DisableCrashReportEv +000000000036bfa8 g DF .text 0000000000000024 _ZNSt3__110ostrstreamD0Ev +00000000001d0038 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_DestroyIndirectLayerEm +000000000008f224 g DF .text 0000000000000004 _ZN2nn2os23FinalizeMultiWaitHolderEPNS0_19MultiWaitHolderTypeE +00000000007c10d0 w DO .rodata 0000000000000165 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +0000000000803b40 w DO .rodata 0000000000000020 _ZTSN2nn3hid6detail13BasicXpadLifoE +00000000001cfb8c w DF .text 000000000000015c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutHandleClientArgumentTypeENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000000625d8 g DF .text 0000000000000180 _ZN2nn2fs19GetGameCardDeviceIdEPvm +0000000000330e84 w DF .text 00000000000000e4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5seekpExNS_8ios_base7seekdirE +00000000001b5bbc g DF .text 0000000000000028 _ZN2nn3mii16CharInfoAccessorC1ERKNS0_8CharInfoE +00000000001bf274 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetLocalonlyEv +0000000000185b20 g DF .text 00000000000000a4 _ZN2nn5audio21ProcessAuxI3dl2ReverbEPNS0_18AuxI3dl2ReverbTypeEPiPKij +0000000000286a00 g DF .text 0000000000000068 NvRmGpuMappingCreateFixed +0000000000131e1c w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEEEEELm0ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutHandleClientArgumentTypeEj +00000000000b2504 g DF .text 00000000000000d4 _ZN2nn7account6detail21TryPopPreselectedUserEv +000000000035bb94 g DF .text 0000000000000084 _ZNKSt3__120__time_get_c_storageIcE3__xEv +00000000007b5c70 w DO .rodata 000000000000002a _ZTSN2nn5fssrv2sf25IFileSystemProxyForLoaderE +000000000017c1cc w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000047448 g DF .text 0000000000000014 _ZN2nn2fs25SetCurrentThreadFsContextEPKNS0_9FsContextE +000000000017a1d0 g DF .text 0000000000000024 nnsslConnectionGetContextId +00000000001c9e2c g DF .text 0000000000000004 _ZN2nn5swkbd14InlineKeyboardD2Ev +0000000000142140 g DF .text 0000000000000574 _ZN2nn3ngc15ProfanityFilter30MaskProfanityWordsInTextCommonEPiPcj +00000000002021f4 g DF .text 0000000000000018 FsLtt_getSubfamilyName +00000000007c69e0 w DO .rodata 00000000000000f9 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000d38f0 g DF .text 00000000000000a4 _ZN2nn6applet30TryPopFromInteractiveInChannelEPNS0_13StorageHandleENS0_23LibraryAppletSelfHandleE +00000000001b62ac g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor14GetMouthAspectEv +00000000000c7f08 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_GetCallerAppletCaptureImageERKNS0_9OutBufferE +0000000000139a2c g DF .text 0000000000000114 _ZN2nn3nfc19AttachActivateEventEPNS_2os15SystemEventTypeERKNS0_12DeviceHandleE +000000000097d838 g DO .data 0000000000000028 _ZTVSt14overflow_error +0000000000180e0c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +0000000000264808 g DF .text 000000000000000c cuda_GetAllocator +00000000000fe37c g DF .text 00000000000003b8 silk_shell_encoder +0000000000156840 g DF .text 0000000000000018 _ZN2nn4nifm31SetRequestRequirementBySubmitIdENS0_13RequestHandleEj +00000000000824f4 w DF .text 0000000000000008 nnmem_nlib_malloc_size +000000000008e434 g DF .text 0000000000000008 _ZN2nn2os23TimedWaitInterruptEventEPNS0_18InterruptEventTypeENS_8TimeSpanE +0000000000092048 g DF .text 00000000000002a4 _ZNK2nn2os6detail10TlsManager25SearchUnusedTlsSlotUnsafeEb +0000000000359d88 g DF .text 000000000000000c _ZNKSt3__115__codecvt_utf16IDiLb1EE10do_unshiftER11__mbstate_tPcS4_RS4_ +0000000000948530 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000002cc07c g DF .text 0000000000000008 _ZNK7android6Region8subtractERKS0_ +000000000018cd4c g DF .text 000000000000015c _ZN2nn5audio16VoiceInfoManager28UpdateVoiceRelatedParametersEPvPmS3_ +0000000000174778 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_SetRegionCodeEi +0000000000107a64 g DF .text 00000000000003fc silk_prefilter_FIX +000000000011bad8 g DF .text 0000000000000018 _ZN2nn3err6detail19MakeErrorCodeStringEPcmNS0_9ErrorCodeE +000000000015d0d8 g DF .text 0000000000000088 _ZN2nn4pctl10GetPinCodeEPci +000000000016f7b0 g DF .text 0000000000000070 _ZN2nn8settings6detail42SetConsoleSixAxisSensorAngularVelocityGainERKNS0_6system39ConsoleSixAxisSensorAngularVelocityGainE +0000000000319978 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object7ReleaseEv +00000000003ccf04 g DF .text 000000000000000c lrintf +00000000007cb310 w DO .rodata 0000000000000112 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001b56f0 g DF .text 0000000000000034 _ZN2nn2la4auth25GetResultFromContextStackEPNS1_9ReturnArgENS_6applet13StorageHandleE +00000000003e6c9c g DF .text 000000000000000c __nnmusl_InitializeRecursiveLock +0000000000189fe4 g DF .text 0000000000000014 _ZN2nn5audio6detail32SetResourceExclusionCheckEnabledEb +0000000000313f9c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_InitializeENS0_3OutINS0_12NativeHandleEvEENS5_6ModuleEm +00000000001ce334 w DF .text 00000000000000b0 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_5visrv2sf21ISystemDisplayServiceEEEvi +0000000000823710 w DO .rodata 0000000000000044 _ZTSNSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000330d4c w DF .text 0000000000000054 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE5tellpEv +00000000003ccf10 g DF .text 0000000000000084 lrintl +00000000000b1f98 g DF .text 0000000000000028 _ZN2nn7account6detail18OAuthProcedureBaseC1ERKNS0_3UidEPNS0_4http15IOAuthProcedureE +00000000009792d0 g DO .data 0000000000000028 _ZTVNSt3__112future_errorE +0000000000823db0 w DO .rodata 0000000000000046 _ZTSNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000001671c4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_GetStorageUsageENS0_3OutIlvEESM_ +00000000001296ec w DF .text 0000000000000220 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl8EEENSG_ILm8ELm8ELl24EEENSG_ILm4ELm4ELl0EEENSG_ILm16ELm8ELl32EEENSC_18BufferArgumentInfoILi0ELi25ELm72EEENSL_ILi1ELi25ELm72EEEEEELm48ELm0ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSV_ILm8ELm8EvEENSV_ILm4ELm4EvEESW_NS2_24BufferClientArgumentTypeESZ_j +00000000002327b4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E37_nn_sf_sync_SendVibrationGcErmCommandENS_6applet20AppletResourceUserIdENS5_21VibrationDeviceHandleENS5_21VibrationGcErmCommandE +00000000000c99b8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE21_nn_sf_sync_TerminateEv +0000000000158460 g DF .text 0000000000000008 _ZNK2nn4nifm6detail12HttpPostData9GetLengthEv +0000000000274708 g DF .text 0000000000000004 NvRmChannelModuleMutexLock +00000000000476cc g DF .text 0000000000000068 _ZN2nn2fs24HierarchicalRomFileTableC2Ev +00000000000a2d1c g DF .text 00000000000004bc _ZN2nn6socket6detail8SendMMsgEiPK7mmsghdrmi +00000000000cc354 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_PushOutDataENS0_13SharedPointerINS6_8IStorageEEE +0000000000232684 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E35_nn_sf_sync_GetActualVibrationValueENS0_3OutINS5_14VibrationValueEvEENS_6applet20AppletResourceUserIdENS5_21VibrationDeviceHandleE +000000000026f6e8 g DF .text 00000000000000cc NvRmMemHandleDup +00000000003dd3e4 w DF .text 000000000000010c fread_unlocked +00000000000a1a80 g DF .text 0000000000000004 nnsocketRecv +00000000001ca198 g DF .text 000000000000000c _ZNK2nn5swkbd14InlineKeyboard13GetWindowSizeEPiS2_ +0000000000313d7c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8ISessionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000003b8368 w DF .text 0000000000000090 __strtod_l +0000000000228a90 g DF .text 0000000000000060 _ZN2nn3hid3tmp34GetConsoleSixAxisSensorCountStatesEPNS1_23SixAxisSensorCountStateEiRKNS0_26ConsoleSixAxisSensorHandleE +0000000000978000 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8IRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000f5a04 g DF .text 0000000000000ad0 silk_PLC +00000000002a42e0 g DF .text 0000000000000038 _ZN7android14IPCThreadState10selfOrNullEv +00000000000e8964 g DF .text 000000000000002c ec_decode_bin +000000000021306c g DF .text 00000000000000a4 TYPESET_destroy +000000000039ce58 g DF .text 00000000000000d4 __getf2 +00000000000d887c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E20_nn_sf_sync_GetEventENS0_3OutINS0_12NativeHandleEvEE +00000000000eca8c g DF .text 00000000000005f0 quant_coarse_energy +0000000000805770 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi145EE4MaskE +000000000095a2a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000c0964 g DF .text 0000000000000024 _ZN2nn7account34NetworkServiceAccountAdministrator27IsLinkedWithNintendoAccountEPb +00000000000c159c g DF .text 000000000000001c _ZN2nn7account42NintendoAccountAuthorizationRequestContext7HasDoneEPb +00000000001c79e4 g DF .text 0000000000000018 _ZNK2nn3mii13AppletManager19IsEnabledSpecialMiiEv +0000000000151ea8 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E26_nn_sf_sync_GetScanDataOldERKNS0_8OutArrayINS6_2sf18AccessPointDataOldEEENS0_3OutIivEE +000000000008a288 g DF .text 0000000000000078 _ZNK2nn3mem17StandardAllocator19WalkAllocatedBlocksEPFiPvmS2_ES2_ +00000000001cdc4c w DF .text 0000000000000048 _ZN2nn2sf4cmif6client6detail13CmifProxyImplIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_TransactParcelEijRKNS0_8InBufferERKNS0_9OutBufferEj +0000000000264ad0 g DF .text 0000000000000008 NvOsInterruptRegister +00000000002cdc08 g DF .text 000000000000005c _ZN7android12SharedBuffer5allocEm +0000000000365458 w DF .text 0000000000000014 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED1Ev +0000000000182480 w DF .text 00000000000001c8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm208EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEEj +000000000015694c g DF .text 000000000000001c _ZN2nn4nifm18SetRequestSharableENS0_13RequestHandleEb +00000000000d8874 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +00000000002a0024 g DF .text 0000000000000290 _ZN7android6Parcel5writeERKNS0_26FlattenableHelperInterfaceE +0000000000004e40 g D .text 00000000000000d4 nndetailCryptoBignumSubWords +00000000007e90d4 g DO .rodata 0000000000000004 _ZN2nn5audio15ReverbParameter24SupportedChannelCountMaxE +0000000000038830 g DF .text 0000000000000064 nnutilZlib_inflateMark +00000000003183d0 g DF .text 00000000000000f4 _ZN2nn3pcv22InitializeForImmediateEv +000000000015876c g DF .text 0000000000000020 _ZN2nn3nsd25DeleteSaveDataOfFsForTestEv +000000000095b970 w DO .data 0000000000000018 _ZTIN2nn3hid6detail12KeyboardLifoE +0000000000179f18 g DF .text 0000000000000024 nnsslConnectionSetHostName +00000000001d1430 w DF .text 000000000000017c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm8ELm8ELl16EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSB_ILm4ELm4ELl0EEEEEELm24ELm0ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESO_NSM_24BufferClientArgumentTypeENSN_ILm4ELm4EvEEj +000000000008d304 g DF .text 0000000000000008 _ZN2nn2os13FinalizeEventEPNS0_9EventTypeE +00000000001879f8 g DF .text 000000000000004c _ZN2nn5audio17SetReverbLateGainEPNS0_10ReverbTypeEf +0000000000217834 g DF .text 000000000000002c _ZN2nn3hid6detail21FinalizeInputDetectorEv +00000000000b5060 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm8ELl0EEEEEELm0ELm16ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm8EEEj +00000000000c616c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_GetCradleFwVersionENS0_3OutIjvEESL_SL_SL_ +00000000001110f8 g DF .text 0000000000000004 opus_encoder_destroy +0000000000122890 g DF .text 0000000000000054 _ZN2nn7friends17NotificationQueue5ClearEv +00000000001b61fc g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetHairColorEv +00000000002390c0 g DF .text 0000000000000008 _ZN2nn8irsensor6detail19StatusManagerHolderC2Ev +00000000002321e8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E38_nn_sf_sync_GetAccelerometerParametersENS0_3OutIfvEESL_NS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +000000000004de28 g DF .text 0000000000000140 _ZN2nn2fs6detail18FileSystemAccessor6CommitEv +00000000007f5560 g DO .rodata 0000000000000064 _ZN2nn3mii6detail33CommonColorOrderIndexToColorIndexE +0000000000804890 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi5EE4MaskE +00000000009484d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEEE +00000000002c8794 g DF .text 0000000000000004 sync_fence_info_free +000000000017068c g DF .text 0000000000000070 _ZN2nn8settings6detail19SetWebInspectorFlagEb +000000000097a6e8 w DO .data 0000000000000060 _ZTVNSt3__114codecvt_bynameIcc11__mbstate_tEE +0000000000079860 g DF .text 00000000000000dc nnmem_nlib_crc32 +00000000001aa430 g DF .text 0000000000000004 _ZN2nn5audio3dsp16UnmapUserPointerEjNS0_7CpuAddrEm +0000000000210420 g DF .text 000000000000010c ttf_read +0000000000160514 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc23IParentalControlServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +0000000000172f08 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_E12GetProxyInfoEv +00000000003966ac g DF .text 0000000000000054 _ZNSt12length_errorD2Ev +0000000000181bc8 w DF .text 0000000000000200 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm2ELl0EEENSG_ILm24ELm4ELl8EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi21ELm16384EEEEEELm8ELm32ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm2EEENSU_ILm24ELm4EEENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +000000000094dff8 w DO .data 0000000000000088 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service17IOverlayFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000024be38 g DF .text 0000000000000060 _ZN2nn3kpr15KeyCodeComposer7EnqueueEPKti +00000000003294b4 w DF .text 000000000000000c _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE10pubseekoffExNS_8ios_base7seekdirEj +00000000000cd00c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E31_nn_sf_sync_GetNotTrimmingEventENS0_3OutINS0_12NativeHandleEvEE +000000000004727c g DF .text 0000000000000068 _ZN2nn2fs6detail8IdString8ToStringINS0_14BisPartitionIdEEEPKcT_ +00000000009503a0 g DO .data 0000000000000068 _ZTVN2nn5codec19HardwareOpusDecoderE +0000000000187a60 g DF .text 000000000000004c _ZN2nn5audio16SetReverbOutGainEPNS0_10ReverbTypeEf +0000000000364bc4 w DF .text 0000000000000054 _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5rfindEcm +00000000001b8aa0 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw13GetFontRegionEv +000000000036108c g DF .text 0000000000000008 _ZNSt3__118get_pointer_safetyEv +0000000000226350 g DF .text 0000000000000060 _ZN2nn3hid6detail19DisconnectUniquePadENS0_6system11UniquePadIdE +000000000006f9a8 g DF .text 0000000000000050 _ZN2nn4lmem14CreateUnitHeapEPvmmiiPNS0_6detail8HeapHeadE +0000000000074be0 w DF .text 0000000000000060 nnmem_nlib_wcscpy +000000000009bd74 g DF .text 0000000000000050 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor11SetExchangeEimmj +000000000022b8d0 g DF .text 000000000000005c _ZN2nn3hid6system26IsUnsupportedButtonPressedERKjRKNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +00000000000abb2c w DF .text 0000000000000200 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm8ELm8ELl8EEENSJ_ILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEENSJ_ILm4ELm4ELl4EEEEEELm16ELm8ELb1EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESX_NS2_23InRawClientArgumentTypeILm8ELm8EvEENSY_ILm4ELm4EvEENS2_24BufferClientArgumentTypeES10_j +00000000007d4bf0 g DO .rodata 0000000000000006 silk_uniform6_iCDF +00000000002cafe8 g DF .text 0000000000000024 _ZN7android13bytesPerPixelEi +00000000002b8a70 g DF .text 0000000000000044 _ZTv0_n24_N7android16ISurfaceComposerD0Ev +00000000009504b0 w DO .data 0000000000000010 _ZTIN2nn5codec23IOpusMultiStreamDecoderE +00000000007cc170 w DO .rodata 0000000000000119 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEEE +00000000009426a0 w DO .data 0000000000000018 _ZTIN2nn2sf14IServiceObjectE +000000000022f9b4 g DF .text 0000000000000028 _ZN2nn3hid23VibrationNodeConnectionC2Ev +00000000000b1d6c g DF .text 0000000000000058 _ZN2nn7account61ShowUiToIntroduceExternalNetworkServiceAccountForRegistrationERKNS0_9SessionIdE +00000000001c93ec g DF .text 0000000000000164 _ZN2nn5swkbd10MakePresetEPNS0_14KeyboardConfigENS0_6PresetE +000000000009aa00 g DF .text 00000000000000d8 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain9GetObjectENS1_18CmifDomainObjectIdE +00000000007c2bd0 w DO .rodata 00000000000001ae _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas29IOAuthProcedureForExternalNsaENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +0000000000144c24 g DF .text 000000000000000c _ZN2nn3ngc6detail14ContentsReaderC1Ev +000000000016f900 g DF .text 0000000000000070 _ZN2nn8settings6detail19GetSpeakerParameterEPNS0_7factory16SpeakerParameterE +000000000023263c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E34_nn_sf_sync_GetVibrationDeviceInfoENS0_3OutINS5_25VibrationDeviceInfoForIpcEvEENS5_21VibrationDeviceHandleE +00000000001bedd0 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetAuthorTypeEv +000000000010ba04 g DF .text 0000000000000044 opus_packet_get_bandwidth +0000000000174578 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E19_nn_sf_sync_SetEdidERKNS5_6system4EdidE +000000000021dc20 g DF .text 0000000000000098 _ZN2nn3hid6detail33GetShiftGyroscopeCalibrationValueEPfS2_RKNS0_19SixAxisSensorHandleE +000000000095db90 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEEvEE +00000000001c7878 g DF .text 000000000000003c _ZNK2nn3mii12AppletOutput9GetResultEv +0000000000018384 g DF .text 00000000000000bc _ZN2nn5image6detail4jpeg18jpeg_finish_outputEPNS2_22jpeg_decompress_structE +0000000000124bcc g DF .text 00000000000001c0 _ZN2nn7friends6detail3ipc10InitializeEv +0000000000122cd8 g DF .text 000000000000000c _ZN2nn7friends14FriendPresenceC1Ev +00000000001507c8 g DF .text 0000000000000080 _ZN2nn4nifm6detail13RequestClient19UpdateInternalStateEv +0000000000191478 w DF .text 000000000000013c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_20InHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client26InHandleClientArgumentTypeENSL_23InRawClientArgumentTypeILm8ELm8EvEENSN_ILm4ELm4EvEEj +000000000094c0e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000b9bcc w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE39_nn_sf_sync_GetUserRegistrationNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +00000000002296a4 g DF .text 0000000000000064 _ZN2nn3hid21GetJoyXpadRightStatesEPNS0_12JoyXpadStateEiRKNS0_9JoyXpadIdE +000000000022d7ac g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm14EEEvPNS0_16TouchScreenStateIXT_EEE +000000000035a1b0 g DF .text 0000000000000068 _ZNKSt3__120__codecvt_utf8_utf16IwE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_ +00000000002391c4 g DF .text 000000000000003c _ZN2nn8irsensor6detail19StatusManagerHolder6AttachEjb +0000000000262c4c g DF .text 00000000000000b8 NvOsHeapAllocatorRealloc +00000000000a5764 g DF .text 000000000000000c _ZN2nn6socket6detail9InetHtonsEt +0000000000230c20 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E35_nn_sf_sync_UnsetXpadAutoPilotStateENS5_11BasicXpadIdE +00000000001512e8 g DF .text 000000000000018c _ZN2nn4nifm6detail21ServiceProviderClientC1Ev +0000000000361fd8 g DF .text 000000000000003c _ZNSt3__119__shared_mutex_baseC2Ev +00000000003c8df0 g DF .text 0000000000000170 erfcf +0000000000954a10 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000000c76d8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service17IWindowControllerEEEvi +00000000001b65cc g DF .text 0000000000000014 _ZN2nn3mii14GetCommonColorENS0_11CommonColorENS0_9GammaTypeE +0000000000978cd0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000000404f0 g DF .text 00000000000000a4 _ZN2nn4util30ConvertStringUtf16NativeToUtf8EPciPKt +0000000000348b64 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb1EE11do_groupingEv +00000000003c8f7c g DF .text 000000000000001c erfcl +00000000003e1b84 w DF .text 000000000000002c memrchr +000000000094e200 w DO .data 0000000000000018 _ZTIN2nn2am7service17IApplicationProxyE +00000000003dd7a4 g DF .text 0000000000000068 __ftello_unlocked +00000000002c36f8 g DF .text 00000000000000e0 _ZN7android14SurfaceControlD1Ev +00000000001662c0 g DF .text 0000000000000120 _ZN2nn5prepo6detail19PlayReportGenerator19CheckKeyDuplicationEPKhmPKc +000000000019f350 g DF .text 0000000000000150 _ZN2nn5audio6server16CommandGenerator30GenerateAdpcmDataSourceCommandERNS1_9VoiceInfoERNS0_10VoiceStateE +0000000000151bd4 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail15IGeneralServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +00000000001c659c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E24_nn_sf_sync_UpdateLatestENS0_3OutINS5_8CharInfoEvEERKSQ_i +000000000020f35c g DF .text 000000000000003c FsScratchSpace_delete +00000000003627a0 g DF .text 0000000000000060 _ZNSt13runtime_erroraSERKS_ +00000000000a1c08 g DF .text 0000000000000024 nnsocketGetNameInfo +00000000001a52a0 g DF .text 0000000000000014 _ZN2nn5audio6server23SplitterDestinationData19UpdateInternalStateEv +000000000024f2f8 g DF .text 000000000000005c _ZN2nn3hid28ShowControllerFirmwareUpdateERKNS0_27ControllerFirmwareUpdateArgE +00000000003e2418 g DF .text 000000000000005c strlen +000000000009148c g DF .text 0000000000000004 nnosPeekMessageQueue +000000000024c670 g DF .text 0000000000000008 _ZN2nn3kpr6detail34GetKeyCodeComposerDequeueableCountERKNS1_22KeyCodeComposerStorageE +00000000000aca28 g DF .text 0000000000000064 _ZN2nn6socket8resolver9SetOptionENS1_6Option4typeEm +0000000000195d94 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm52ELm4ELl0EEENSD_ILm8ELm8ELl56EEENS7_20InHandleArgumentInfoILi0ELi1EEENSD_ILm8ELm8ELl64EEENSD_ILm8ELm8ELl72EEEEEELm80ELm0ELb1EEESK_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSP_23InRawClientArgumentTypeILm52ELm4EvEENSR_ILm8ELm8EvEENSP_26InHandleClientArgumentTypeEST_ST_jPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000017b904 w DF .text 00000000000001e4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEEST_NS2_24BufferClientArgumentTypeEj +000000000006c478 g DF .text 00000000000000a8 _ZN2nn2fs36IsSignedSystemPartitionOnSdCardValidEv +0000000000164b4c g DF .text 00000000000000b0 _ZN2nn5prepo10InitializeEv +00000000000d8128 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +00000000007d4ce1 g DO .rodata 00000000000000b4 silk_pulses_per_block_iCDF +00000000003b32d4 g DF .text 0000000000000008 __nnmusl_force_divf +0000000000156f64 g DF .text 0000000000000004 _ZN2nn4nifm23TemporaryNetworkProfileD1Ev +000000000094e930 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000007e9098 g DO .rodata 0000000000000008 _ZN2nn5audio13AudioInBuffer15SizeGranularityE +0000000000172ec8 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_28IFirmwareDebugSettingsServerEEEEEE13ServiceObjectESI_E6Object12AddReferenceEv +00000000001d5758 g DF .text 0000000000000008 _ZN2nn2vi6detail18IndirectLayerEntry5ClearEv +00000000000c1ec0 g DF .text 0000000000000024 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedure4SwapERS1_ +0000000000823fe0 g DO .rodata 0000000000000019 _ZTSNSt3__114__shared_countE +000000000006ef38 g DF .text 0000000000000030 _ZN2nn4lmem14DestroyExpHeapEPNS0_6detail8HeapHeadE +0000000000173f98 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object7ReleaseEv +0000000000178978 g DF .text 00000000000000b8 _ZN2nn3ssl10Connection15GetVerifyOptionEPNS1_12VerifyOptionE +00000000007e92b8 g DO .rodata 0000000000000004 _ZN2nn5audio9VoiceType20BiquadFilterCountMaxE +000000000035a9e4 g DF .text 0000000000000024 _ZNKSt3__18numpunctIcE11do_truenameEv +000000000025b584 g DF .text 0000000000000070 hdcp_set_thread_priority +0000000000942468 g DO .data 0000000000000020 _ZTVN2nn5image11ExifBuilderE +0000000000957ed0 w DO .data 0000000000000018 _ZTIN2nn5audio6detail14IAudioRendererE +0000000000001234 g DF .text 00000000000001cc _ZN2nn6crypto16EncryptAes128CcmEPvmS1_mPKvmS3_mS3_mS3_mm +0000000000161528 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000018a7ac g DF .text 0000000000000018 _ZN2nn5audio8SinkInfo14StoreOutStatusERNS0_6common13SinkOutStatusE +0000000000295808 g DF .text 0000000000000064 _ZN7android9BpRefBaseD2Ev +000000000008fb30 g DF .text 00000000000000dc _ZN2nn2os24SdkConditionVariableType9TimedWaitERNS0_21SdkRecursiveMutexTypeENS_8TimeSpanE +00000000003c25dc w DF .text 0000000000000018 iscntrl_l +0000000000090fd0 g DF .text 0000000000000014 _ZN2nn2os40MemoryAllocatorForThreadLocalInitializedEv +00000000002aed38 g DF .text 0000000000000034 _ZNK7android15BufferQueueCore13stillTrackingEPKNS_10BufferItemE +0000000000360d4c g DF .text 0000000000000004 _ZNSt3__119__shared_weak_countD2Ev +00000000009508b0 w DO .data 0000000000000018 _ZTIN2nn5codec6detail20IHardwareOpusDecoderE +00000000000d9fd4 g DF .text 00000000000004a4 anti_collapse +00000000001ce76c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_SetDisplayModeEmRKNS_2vi15DisplayModeInfoE +0000000000236208 w DF .text 0000000000000128 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm24ELm2ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEEEEELm16ELm24ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm24ELm2EEENSL_23InRawClientArgumentTypeILm8ELm8EvEENSO_ILm4ELm4EvEEj +000000000036ce84 g DF .text 0000000000000074 _ZNSt3__111this_thread9sleep_forERKNS_6chrono8durationIxNS_5ratioILl1ELl1000000000EEEEE +000000000012e274 w DF .text 000000000000012c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl68EEENSB_ILm4ELm4ELl72EEENSB_ILm66ELm2ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm76ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_NSN_ILm66ELm2EEENSM_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000001b8f50 g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw15GetEyebrowColorEv +0000000000232c8c w DF .text 00000000000001e0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi10ELm0EEEEEELm0ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSK_24BufferClientArgumentTypeEj +00000000000490b0 g DF .text 00000000000003a8 _ZN2nn2fs24HierarchicalRomFileTable13DumpDirectoryEji +00000000000cb6d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_LoadAndApplyIdlePolicySettingsEv +00000000001249fc g DF .text 00000000000000d8 _ZN2nn7friends6detail20AsyncContextInternal9CallAsyncEPKcPFNS_6ResultEPNS1_3ipc14IFriendServiceEPvEPFvPKvS9_mESD_ +000000000016d7c0 g DF .text 000000000000006c _ZN2nn8settings6detail31GetApplicationOwnKeyboardLayoutEPbPNS0_14KeyboardLayoutE +00000000007add14 g DO .rodata 0000000000000004 _ZN2nn4util7Color4f13LinearDefaultE +0000000000158468 g DF .text 000000000000000c _ZN2nn4nifm6detail12HttpPostData5ClearEv +000000000016b448 g DF .text 0000000000000044 _ZN2nn8settings20GetXpadGenericPadMapEPNS0_22BasicXpadGenericPadMapEi +0000000000063b24 g DF .text 0000000000000164 _ZN2nn2fs19GetMmcPartitionSizeEPlNS0_12MmcPartitionE +000000000094cbe8 w DO .data 0000000000000090 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service25IProcessWindingControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000002708ec g DF .text 0000000000000028 NvRmSyncSignalSemaphore +0000000000186164 g DF .text 0000000000000048 _ZN2nn5audio17RemoveBufferMixerEPNS0_19AudioRendererConfigEPNS0_15BufferMixerTypeEPNS0_10SubMixTypeE +0000000000090f24 g DF .text 0000000000000014 _ZN2nn2os37EnableUserExceptionHandlerOnDebuggingEb +0000000000800700 w DO .rodata 0000000000000023 _ZTSN2nn3mii6detail16IDatabaseServiceE +0000000000a20740 g DO .bss 0000000000000008 _ZN2nn2la34g_GetInteractiveOutStorageCallbackE +0000000000805570 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi108EE4MaskE +0000000000134b68 w DF .text 0000000000000174 _ZN2nn4htcs6detail14virtual_socket9SetSocketENS_2sf13SharedPointerINS_3tma7ISocketEEERi +000000000019c10c g DF .text 000000000000001c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl4StopEv +00000000000d10ec w DF .text 00000000000000b0 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_3apm8ISessionEEEvi +0000000000977df0 w DO .data 0000000000000018 _ZTIN2nn3fgm2sf8ISessionE +00000000001cf90c w DF .text 0000000000000134 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl56EEENSB_ILm36ELm4ELl0EEENSB_ILm16ELm4ELl36EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm64ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSN_ILm36ELm4EEENSN_ILm16ELm4EEENSM_23InRawClientArgumentTypeILm8ELm8EvEEj +0000000000232230 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_SetAccelerometerPlayModeENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleEj +00000000003274e0 g DF .text 00000000000000b4 _ZNSt3__17promiseIvE24set_value_at_thread_exitEv +0000000000197cf0 g DF .text 00000000000000e0 _ZN2nn5audio21GetActiveChannelCountEv +00000000001c9d6c g DF .text 000000000000009c _ZN2nn5swkbd9InputText7SetUtf8EPKc +00000000002869e8 g DF .text 000000000000000c NvRmGpuAddressSpaceAllocationGetInfo +0000000000329f54 w DF .text 0000000000000030 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPFRNS_9basic_iosIcS2_EES6_E +00000000001a7b8c g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_19BiquadFilterCommandE +0000000000263edc g DF .text 00000000000000f8 NvOsFprintf +0000000000075fb8 g DF .text 000000000000006c nnmem_nlib_utf32len_ +00000000000ca4a8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service24ITransferStorageAccessorEEEvi +0000000000156e78 g DF .text 000000000000001c _ZN2nn4nifm17NetworkConnection15IsRequestOnHoldEv +00000000003a6bc4 g DF .text 0000000000000088 __atomic_fetch_and_1 +0000000000259740 g DF .text 00000000000002a4 nvdcFlip2 +00000000003a6c4c g DF .text 0000000000000088 __atomic_fetch_and_2 +00000000001b54c0 g DF .text 0000000000000090 _ZN2nn2la4auth26ShowParentalAuthenticationEb +00000000003a6cd4 g DF .text 0000000000000088 __atomic_fetch_and_4 +000000000021e29c g DF .text 0000000000000074 _ZN2nn3hid6detail26GetXcdHandleForNpadWithNfcEPmRj +0000000000315168 g DF .text 0000000000000058 _ZN2nn4gpio12GetDirectionEPNS0_14GpioPadSessionE +00000000003a6d5c g DF .text 0000000000000088 __atomic_fetch_and_8 +00000000009a2760 g DO .bss 0000000000000008 __env_map +0000000000184d28 g DF .text 000000000000012c _ZN2nn5audio29IsValidAudioRendererParameterERKNS0_22AudioRendererParameterE +000000000097b2c8 g DO .data 0000000000000060 _ZTVNSt3__115__codecvt_utf16IwLb0EEE +0000000000803f10 w DO .rodata 0000000000000024 _ZTSN2nn3hid6detail17NpadSystemExtLifoE +00000000001c67dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E41_nn_sf_sync_IsBrokenDatabaseWithClearFlagENS0_3OutIbvEE +00000000002cc350 g DF .text 00000000000000d0 _ZN7android6Region17boolean_operationEiRS0_RKS0_S3_ii +00000000000151cc g DF .text 00000000000002a0 _ZN2nn5image6detail4jpeg20jpeg_default_qtablesEPNS2_20jpeg_compress_structEb +0000000000357d2c g DF .text 000000000000001c _ZNKSt3__17codecvtIDsc11__mbstate_tE9do_lengthERS1_PKcS5_m +000000000012ad5c g DF .text 000000000000021c _ZN2nn2fs17MountAddOnContentEPKciPvm +000000000005e1c8 w DF .text 00000000000001ec _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm8ELl8EEENSG_ILm1ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm0ELm24ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm8EEENSS_ILm1ELm1EEENS2_24BufferClientArgumentTypeEj +00000000003e600c g DF .text 00000000000001b4 __nnmusl_PWrite +00000000000bd838 g DF .text 00000000000000a0 _ZN2nn7account12AsyncContextD2Ev +00000000000c95ec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_WindAndDoReservedEv +00000000001538c0 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm1ELm1EvEEj +000000000017b298 w DF .text 00000000000000c0 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEESH_E14AllocateObjectINS_3ssl2sf14ISslConnectionEEEvi +00000000001b9714 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw15SetFacelineTypeEi +000000000097c278 g DO .data 0000000000000028 _ZTVNSt3__112bad_weak_ptrE +000000000012e530 w DF .text 0000000000000190 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSE_ILm4ELm4ELl4EEEEEELm8ELm16ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSP_ILm8ELm8EEENSO_23InRawClientArgumentTypeILm4ELm4EvEENSO_24BufferClientArgumentTypeEST_j +00000000003e7d74 g DF .text 0000000000000004 pthread_setname_np +00000000003558cc g DF .text 0000000000000094 _ZNKSt3__15ctypeIcE10do_tolowerEc +00000000003cb900 g DF .text 000000000000002c __lgammal_r +00000000003d1b6c g DF .text 0000000000000088 basename +0000000000979db8 w DO .data 00000000000000a8 _ZTVNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000001c0798 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw8GetMoleXEv +000000000023ae78 g DF .text 0000000000000044 _ZN2nn8irsensor25RunImageTransferProcessorERKNS0_14IrCameraHandleERKNS0_30ImageTransferProcessorExConfigEPvm +000000000094d7b8 w DO .data 0000000000000070 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IApplicationCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000094ec70 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +0000000000274018 g DF .text 00000000000000cc NvRmChannelSyncPointIncr +000000000095d6b0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail15HidSystemServerEEEEEE13ServiceObjectESJ_E6ObjectE +0000000000286db4 g DF .text 000000000000000c NvRmGpuChannelControl +0000000000047144 g DF .text 0000000000000054 _ZN2nn2fs6detail8IdString8ToStringINS0_17GameCardPartitionEEEPKcT_ +00000000007b0fb0 g DO .rodata 000000000000001c _ZTSN2nn2fs17FileHandleStorageE +00000000000ffd30 g DF .text 0000000000000444 silk_stereo_find_predictor +00000000001fe140 g DF .text 000000000000013c fsg_SetUpElement +00000000007d6580 w DO .rodata 0000000000000025 _ZTSN2nn5codec23IOpusMultiStreamDecoderE +00000000001bc7e8 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw7GetTypeEv +00000000007c5e30 w DO .rodata 0000000000000022 _ZTSN2nn2am7service15ISelfControllerE +00000000007d4b30 g DO .rodata 0000000000000020 silk_TargetRate_table_MB +00000000002322c8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E37_nn_sf_sync_GetGyroscopeZeroDriftModeENS0_3OutIjvEENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +0000000000083a44 g DF .text 0000000000000088 _ZN2nn7nlibsdk4heap14TlsHeapCentral21AllocSpanFromSpanPageEPNS1_8SpanPageE +000000000017f4c8 g DF .text 0000000000000064 _ZN2nn4time36SetStandardNetworkSystemClockContextERKNS0_18SystemClockContextE +000000000028702c g DF .text 000000000000000c NvRmGpuSwizzlerConvertGpuToCDE +0000000000367be4 g DF .text 00000000000001dc _ZNSt3__14stolERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPmi +000000000009338c g DF .text 0000000000000050 _ZN2nn2os6detail23MultiWaitHolderOfThread15AddToObjectListEv +000000000036cf78 w DF .text 0000000000000004 _ZNSt3__121__thread_specific_ptrINS_15__thread_structEED2Ev +000000000004d128 g DF .text 0000000000000128 _ZN2nn2fs6detail18FileSystemAccessorC1EPKcONSt3__110unique_ptrINS0_3fsa11IFileSystemENS5_14default_deleteIS8_EEEEONS6_INS7_25ICommonMountNameGeneratorENS9_ISD_EEEE +00000000008005a0 w DO .rodata 0000000000000160 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +0000000000220444 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS1_18InputDetectorStateELi1ENS1_13AtomicStorageIS3_EEED2Ev +0000000000122224 g DF .text 0000000000000008 _ZNK2nn7friends15FriendCandidate31GetExternalApplicationCatalogIdEv +00000000001589fc g DF .text 0000000000000044 _ZN2nn3nsd6detail13IsInitializedEv +000000000016a5d0 g DF .text 0000000000000044 _ZN2nn8settings6system42SetConsoleSixAxisSensorAngularVelocityBiasERKNS1_39ConsoleSixAxisSensorAngularVelocityBiasE +000000000017ea98 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_7timesrv6detail7service16ITimeZoneServiceEE19FunctionForBoolTypeEv +00000000002c67b0 g DF .text 00000000000000bc _ZN7android21SurfaceComposerClient17setLayerStackMaskERKNS_2spINS_7IBinderEEEj +00000000001a3088 g DF .text 000000000000002c _ZNK2nn5audio6server14MemoryPoolInfo8ContainsENS0_7CpuAddrEm +0000000000223d84 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm10EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +00000000000914f8 g DF .text 0000000000000008 nnosSetTlsValue +00000000001a513c g DF .text 000000000000001c _ZNK2nn5audio6server23SplitterDestinationData16GetMixVolumePrevEi +000000000095bdb8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS1_17GestureDummyStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000032f220 w DF .text 0000000000000030 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEPFRNS_9basic_iosIcS2_EES6_E +0000000000396018 g DF .text 00000000000000ac __cxa_vec_ctor +0000000000333190 w DF .text 0000000000000030 _ZTv0_n24_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED0Ev +00000000000cc540 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_GetCallerAppletIdentityInfoENS0_3OutINS6_18AppletIdentityInfoEvEE +000000000008f54c g DF .text 0000000000000048 _ZN2nn2os26InitializeReaderWriterLockEPNS0_20ReaderWriterLockTypeE +00000000003e78f8 w DF .text 0000000000000004 __nnmusl_pthread_once_lock_init +000000000024e304 g DF .text 00000000000000a8 _ZN2nn6capsrv22FinalizeForApplicationEv +0000000000239d1c g DF .text 0000000000000130 _ZN2nn8irsensor6detail15IrSensorSession25RunImageTransferProcessorERKNS0_14IrCameraHandleERKNS0_34PackedImageTransferProcessorConfigEPvm +0000000000173298 w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSM_24BufferClientArgumentTypeENSM_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000001a39a0 g DF .text 0000000000000064 _ZN2nn5audio6server7MixInfo7CleanUpEv +00000000001a5158 g DF .text 0000000000000008 _ZNK2nn5audio6server23SplitterDestinationData16GetMixVolumePrevEv +0000000000804a90 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi21EE4MaskE +00000000002866f8 g DF .text 000000000000001c NvRmGpuDeviceGetInfo +00000000007d4b10 g DO .rodata 0000000000000020 silk_TargetRate_table_NB +0000000000125810 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_GetCompletionEventENS0_3OutINS0_12NativeHandleEvEE +0000000000135ef4 g DF .text 000000000000000c _ZNK2nn2lm6detail15LogPacketHeader6IsTailEv +0000000000256068 g DF .text 00000000000000bc _ZN2nn3web11ShowWebPageEPNS0_18WebPageReturnValueERKNS0_14ShowWebPageArgE +000000000004a9ac g DF .text 0000000000000008 _ZNK2nn2fs11RomPathTool10PathParser15IsParseFinishedEv +0000000000118180 g DF .text 0000000000000044 _ZN2nn5codec11OpusEncoderC1Ev +00000000002cb20c g DF .text 00000000000000b0 _ZNK7android4Rect6reduceERKS0_ +00000000000d5eac g DF .text 00000000000000a0 _ZN2nn4bcat25ClearDeliveryCacheStorageENS_13ApplicationIdE +000000000020f328 g DF .text 0000000000000034 FsScratchSpace_done +0000000000285f20 g DF .text 000000000000005c nvgr_get_clientdata +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__16locale5facetD2Ev +000000000009abb0 g DF .text 00000000000000b4 _ZN2nn2sf4cmif6server23CmifServerDomainManagerC2EPNSt3__115aligned_storageILm48ELm8EE4typeEi +0000000000182eb0 g DF .text 00000000000000d4 _ZN2nn3ntc6detail4shim29GetStaticServiceSharedPointerEPNS_2sf13SharedPointerINS1_7service14IStaticServiceEEE +00000000002c56a8 g DF .text 0000000000000100 _ZN7android21SurfaceComposerClient7disposeEv +00000000000406dc g DF .text 00000000000001ec _ZN2nn4util24ConvertStringUtf8ToUtf32EPjiPKc +00000000003dc8b0 g DF .text 0000000000000038 ferror +000000000019eec0 g DF .text 0000000000000050 _ZN2nn5audio6server11EntryAspectD0Ev +00000000001d4be4 g DF .text 0000000000000080 _ZN2nn2vi12SetLayerSizeEPNS0_5LayerEii +00000000000d6a74 g DF .text 0000000000000138 _ZN2nn4bcat17DeliveryCacheFile4ReadEPmlPvm +00000000007f1130 w DO .rodata 0000000000000071 _ZTSN2nn2sf22UnmanagedServiceObjectINS_5audio6detail21IAudioRendererManagerENS2_6server24AudioRendererManagerImplEEE +000000000008200c g DF .text 0000000000000008 nnmem_nlib_fd_flush +00000000000969a8 g DF .text 0000000000000008 _ZN2nn2os6detail38InternalConditionVariableImplByHorizon6SignalEv +0000000000111130 g DF .text 0000000000000008 opus_repacketizer_cat +0000000000189408 g DF .text 0000000000000040 _ZN2nn5audio17MemoryPoolManagerC1EPNS0_14MemoryPoolInfoEi +00000000001f9e30 g DF .text 00000000000000f0 fs_NewSfnt +000000000006f9f8 g DF .text 0000000000000030 _ZN2nn4lmem15DestroyUnitHeapEPNS0_6detail8HeapHeadE +000000000017f72c g DF .text 0000000000000094 _ZN2nn4time38GetStandardSteadyClockSetupResultValueEv +0000000000219588 g DF .text 00000000000000a4 _ZN2nn3hid6detail16FinalizeKeyboardEv +00000000001882a4 g DF .text 0000000000000094 _ZN2nn5audio33SetI3dl2ReverbReflectionDelayTimeEPNS0_15I3dl2ReverbTypeENS_8TimeSpanE +00000000001b67d0 g DF .text 000000000000000c _ZN2nn3mii6detail15BufferAllocatorC1EPvm +0000000000097058 g DF .text 000000000000006c _ZN2nn2os6detail20InitializeRandomImplEPNS_4util6TinyMtE +00000000002cbb58 g DF .text 00000000000000bc _ZN7android6Region13operationSelfERKNS_4RectEi +00000000003c54f4 g DF .text 000000000000002c strcoll +00000000001c5a70 g DF .text 000000000000003c _ZN2nn3mii15PrivateDatabase9IsUpdatedEi +00000000001c9a00 g DF .text 0000000000000080 _ZN2nn5swkbd12SetGuideTextEPNS0_14KeyboardConfigEPKDs +00000000001d242c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +0000000000124040 g DF .text 0000000000000034 _ZN2nn7friends6detail14GetCurrentUserEv +000000000094d310 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24ITransferStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000196668 g DF .text 00000000000000e4 _ZN2nn5audio47CreateFinalOutputRecorderManagerForAppletByHipcEv +00000000002332dc w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEEEEELm16ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEESN_j +00000000001bc7d4 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw13GetFontRegionEv +00000000007ce160 w DO .rodata 00000000000000fc _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +0000000000145148 g DF .text 0000000000000008 _ZN2nn3ngc6detail16WorkBufAllocator8AllocateEmi +0000000000195bc8 w DF .text 00000000000001cc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi34ELm0EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +00000000001a3520 g DF .text 0000000000000018 _ZN2nn5audio6server10PoolMapperC1EjPNS1_14MemoryPoolInfoEib +0000000000979568 w DO .data 0000000000000010 _ZTTNSt3__113basic_istreamIcNS_11char_traitsIcEEEE +00000000003c2e30 g DF .text 0000000000000024 isxdigit +0000000000030090 g DF .text 000000000000006c _ZNK2nn5image13ExifExtractor15ExtractSoftwareEPm +0000000000333350 g DF .text 000000000000003c _ZNSt3__18ios_base7failureC2EPKcRKNS_10error_codeE +000000000008fc54 g DF .text 0000000000000040 _ZN2nn2os12SdkMutexType7TryLockEv +000000000094b8a0 w DO .data 0000000000000018 _ZTIN2nn2am7service30IAllSystemAppletProxiesServiceE +00000000000c1958 g DF .text 0000000000000014 _ZN2nn7account8NotifierC2Ev +000000000017407c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_GetFirmwareVersion2ENS0_3OutINS5_6system15FirmwareVersionEvEE +0000000000180bdc w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E60_nn_sf_sync_CalculateStandardUserSystemClockDifferenceByUserENS0_3OutINS_12TimeSpanTypeEvEERKNSL_2sf13ClockSnapshotESZ_ +000000000023a29c g DF .text 00000000000003a4 _ZN2nn8irsensor6detail15IrSensorSession30GetMomentProcessorStateDefaultEPNS0_20MomentProcessorStateERKNS0_14IrCameraHandleE +000000000014d398 g DF .text 00000000000000e4 _ZNK2nn3ngc6detail3Set6ExportEPNS1_12BinaryWriterE +00000000002304b4 g DF .text 0000000000000044 _ZN2nn3hid6system25EndPermitVibrationSessionEv +0000000000295acc g DF .text 0000000000000020 _ZN7android9BpRefBase20onIncStrongAttemptedEjPKv +0000000000091bc0 g DF .text 000000000000001c _ZN2nn2os6detail13ThreadManager12CreateThreadEPNS0_10ThreadTypeEPFvPvES5_S5_mi +0000000000075cb8 g DF .text 0000000000000080 nnmem_nlib_swapendian_64_generic +0000000000953510 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +00000000007bdec0 w DO .rodata 00000000000001a4 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas18IGuestLoginRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000003c6a14 g DF .text 00000000000001a0 atan2 +000000000004b854 g DF .text 0000000000000040 _ZN2nn2fs15RomFsFileSystemC1Ev +000000000017a038 g DF .text 0000000000000024 nnsslConnectionGetIoMode +000000000080b444 g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No1E +0000000000318f80 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000008e880 g DF .text 00000000000000b0 _ZN2nn2os19TrySendMessageQueueEPNS0_16MessageQueueTypeEm +000000000014e990 g DF .text 0000000000000170 _ZN2nn3ngc6detail9SparseSet6ImportEPNS1_12BinaryReaderE +00000000000c6684 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E18_nn_sf_sync_UnlockEv +000000000028a900 g DF .text 0000000000000008 NvRmGpuNvgpuGetDbgFd +000000000021eac0 g DF .text 00000000000000a4 _ZN2nn3hid6detail29GetPlayReportControllerUsagesEPiPNS0_6system25PlayReportControllerUsageEi +000000000035a9cc g DF .text 000000000000000c _ZNKSt3__18numpunctIcE11do_groupingEv +000000000022e44c g DF .text 0000000000000018 _ZN2nn3hid6system28GetUniquePadControllerNumberEPiNS1_11UniquePadIdE +00000000001360c8 g DF .text 000000000000002c _ZN2nn2lm6detail20LogPacketTransmitter19PushUserSystemClockEl +0000000000131c2c w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm16ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENSU_ILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000015dd10 g DF .text 000000000000005c _ZN2nn4pctl40GetFreeCommunicationApplicationListCountEv +00000000003b9900 g DF .text 0000000000000004 cabsf +00000000001cdac4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000f7860 g DF .text 00000000000000f4 silk_decode_signs +000000000015d714 g DF .text 0000000000000038 _ZN2nn4pctl29ConfirmStereoVisionPermissionEv +00000000000bce3c w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_PrepareAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +00000000002c98b8 g DF .text 00000000000000bc _ZN7android13GraphicBufferD2Ev +000000000000aa30 g DF .text 000000000000000c _ZN2nn5image6detail4jpeg17jpeg_write_m_byteEPNS2_20jpeg_compress_structEi +00000000001c34e8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw9SetGlassYEi +00000000003b9904 g DF .text 0000000000000004 cabsl +00000000003e78f8 w DF .text 0000000000000004 __nnmusl_libc_lock_finalize +00000000002ce230 g DF .text 0000000000000070 _ZN7android8String16C2EPKDs +0000000000346f98 w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb1EE16do_positive_signEv +0000000000338adc w DF .text 00000000000004ac _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE15__do_get_signedIxEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000003e3508 g DF .text 0000000000000054 wcsspn +0000000000979000 w DO .data 0000000000000018 _ZTIN2nn3pwm15IChannelSessionE +00000000000ba194 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E44_nn_sf_sync_CompleteUserRegistrationForciblyERKNS5_3UidE +00000000001c5800 g DF .text 000000000000003c _ZN2nn3mii8Database3GetEPiPNS0_8CharInfoEii +00000000000c8f9c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE17GetCmifBaseObjectEv +0000000000317974 g DF .text 00000000000000b4 _ZN2nn3pcv21GetPossibleClockRatesEPNS0_18ClockRatesListTypeEPjPiNS0_6ModuleEi +00000000003247f4 g DF .text 0000000000000070 _ZNSt3__114__get_const_dbEv +00000000001de19c g DF .text 0000000000000074 FSS_get_bitmap +000000000016a0fc g DF .text 0000000000000050 _ZN2nn8settings5fwdbg18IsDebugModeEnabledEv +0000000000954cf0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000003e75a8 g DF .text 0000000000000018 __nnmusl_MutexLock +000000000033435c w DF .text 0000000000000024 _ZNSt3__17collateIwED0Ev +000000000080b448 g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No2E +000000000009cc60 g DF .text 0000000000000054 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase17AddUserWaitHolderEPNS_2os19MultiWaitHolderTypeE +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__15ctypeIwED1Ev +0000000000121fd8 g DF .text 0000000000000008 _ZNK2nn7friends11BlockedUser12GetRouteInfoEv +00000000003cc984 g DF .text 00000000000001a4 log2 +00000000001a506c g DF .text 000000000000000c _ZN2nn5audio6server11SinkContextC1Ev +00000000003a9198 g DF .text 00000000000000b0 random +0000000000946060 g DO .data 0000000000000028 _ZTIN2nn2sf4hipc6server24HipcServerSessionManagerE +00000000001fc304 g DF .text 0000000000000028 read_comp_parms +000000000002ec50 g DF .text 0000000000000024 _ZN2nn5image11JpegEncoderC2Ev +000000000026376c g DF .text 0000000000000058 NvOsSemaphoreCreate +00000000001984b4 g DF .text 0000000000000094 _ZN2nn5audio13StartAudioOutEPNS0_8AudioOutE +00000000001b324c g DF .text 0000000000000084 _ZNK2nn2ec6detail15ShowShopPageArg15PushToInChannelENS_6applet19LibraryAppletHandleE +00000000003294d8 w DF .text 0000000000000024 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE8in_availEv +00000000000cc75c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_GetIndirectLayerProducerHandleENS0_3OutImvEE +000000000035a828 g DF .text 0000000000000024 _ZNSt3__117__widen_from_utf8ILm32EED0Ev +00000000003c2634 g DF .text 0000000000000010 islower +000000000094ded0 w DO .data 0000000000000018 _ZTIN2nn2am7service19IOverlayAppletProxyE +00000000001747dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E55_nn_sf_sync_IsUserSystemClockAutomaticCorrectionEnabledENS0_3OutIbvEE +000000000095cc50 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEEvEE +000000000013ca94 g DF .text 0000000000000028 _ZN2nn3nfp6client24IsCreatedSystemInterfaceEv +00000000008058f8 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout13EnglishCanadaE +0000000000273ebc g DF .text 0000000000000064 NvRmChannelGetModuleWaitBase +0000000000050a34 g DF .text 0000000000000030 _ZN2nn2fs6detail4FindEPPNS1_18FileSystemAccessorEPKc +00000000002ceeac g DF .text 00000000000000a4 _ZN7android7String8C2EPKcm +00000000003c7060 g DF .text 000000000000019c atanf +00000000003c71fc g DF .text 0000000000000088 atanh +00000000001582ec g DF .text 0000000000000008 _ZN2nn4nifm6detail12HttpPostDataC1Ev +00000000000cb964 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E41_nn_sf_sync_PopLaunchRequestedApplicationENS0_3OutINS0_13SharedPointerINS6_20IApplicationAccessorEEEvEE +00000000003c7424 g DF .text 00000000000004b8 atanl +000000000017819c g DF .text 0000000000000138 _ZN2nn3ssl10Connection6CreateEPNS0_7ContextE +000000000032c2c0 w DF .text 0000000000000114 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE5seekgENS_4fposI11__mbstate_tEE +00000000001d05c0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_SetSharedLayerLayerStacksENS_2vi7fbshare17SharedLayerHandleEj +00000000007e90a8 g DO .rodata 0000000000000008 _ZN2nn5audio14AudioOutBuffer15SizeGranularityE +0000000000958d00 w DO .data 0000000000000018 _ZTIN2nn2sf4impl6detail16ImplTemplateBaseINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_EE +0000000000360014 w DF .text 0000000000000118 _ZNSt3__127__num_get_unsigned_integralIjEET_PKcS3_Rji +0000000000318b2c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_SetClockEnabledEib +00000000000ca0f8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000080b44c g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No3E +000000000004678c g DF .text 0000000000000088 _ZN2nn2fs6detail15OutputAccessLogENS_6ResultENS_2os4TickES4_PKcNS0_10FileHandleES6_z +0000000000014fd8 g DF .text 0000000000000028 _ZN2nn5image6detail4jpeg22jpeg_alloc_quant_tableEPNS2_18jpeg_common_structE +0000000000076230 g DF .text 00000000000000b0 nnmem_nlib_utf16cplen_ex_ +0000000000189988 g DF .text 00000000000000a4 _ZN2nn5audio10MixManager7ReleaseEPNS0_10SubMixTypeE +000000000012484c g DF .text 0000000000000080 _ZN2nn7friends6detail20AsyncContextInternalD1Ev +00000000001504a8 g DF .text 000000000000008c _ZN2nn4nifm6detail29TemporaryNetworkProfileClientC2ERKNS0_18NetworkProfileDataE +000000000016bd90 g DF .text 0000000000000070 _ZN2nn8settings6detail28GetInRepairProcessEnableFlagEPb +0000000000229220 g DF .text 0000000000000044 _ZN2nn3hid6system19GetInputSourceStateEPNS1_16InputSourceStateERKNS_4util10BitFlagSetILi32ENS1_13InputSourceIdEEE +000000000023206c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E38_nn_sf_sync_DeactivateJoySixAxisSensorENS5_9JoyXpadIdE +0000000000274ac8 g DF .text 0000000000000008 NvRmChannelSetModulePixelRate +00000000001b153c g DF .text 0000000000000014 _ZN2nn2ec11LaunchEShopERKNS_7account3UidENS0_8SourceIdE +0000000000285f04 g DF .text 000000000000001c nvgr_get_surfaces +00000000001c3308 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw10SetEyeTypeEi +0000000000071260 g DF .text 000000000000018c nnmem_nlib_once +000000000004ac74 g DF .text 0000000000000020 _ZN2nn2fs11FileStorageC1EPNS0_3fsa5IFileE +00000000001a9b5c g DF .text 00000000000000f4 _ZN2nn5audio19ResampleOutputFrameEPNS0_16DownSamplerStateEiiPKiPsii +000000000015210c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_WakeUpEv +000000000014b608 w DF .text 0000000000000004 _ZN2nn3ngc6detail12OutputStreamD0Ev +0000000000065b08 w DF .text 000000000000002c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEED2Ev +00000000009473b0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas22IManagerForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000002c4dac g DF .text 00000000000000d0 _ZN7android8Composer8setFlagsERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEjj +00000000003ccc9c g DF .text 0000000000000048 logb +000000000095bfb0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail22SixAxisSensorStateLifoE +00000000003e81e8 g DF .text 00000000000000f4 __nnmusl___tls_get_new +00000000000a1c74 g DF .text 0000000000000044 _ZN2nn6socket6detail5AllocEm +00000000003ccda4 g DF .text 0000000000000138 logf +0000000000172660 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_ResetSettingsEi +000000000003b888 g DF .text 0000000000000014 _ZN2nn4util17BinaryBlockHeader12SetNextBlockEPS1_ +00000000001d62b8 g DF .text 0000000000000044 _ZN2nn2vi6detail18SystemServiceProxy34InitializeSystemDisplayServiceImplEv +000000000022a0b0 g DF .text 0000000000000030 _ZN2nn3hid15KeyCodeComposer21SetRomajiKatakanaModeEb +0000000000955eb0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +000000000018645c w DF .text 0000000000000158 _ZN2nn5audio12AddDelayImplINS0_12FinalMixTypeEEENS_6ResultEPNS0_19AudioRendererConfigEPNS0_9DelayTypeEPvmPT_NS_8TimeSpanEi +00000000003ccedc g DF .text 000000000000001c logl +0000000000046c38 g DF .text 000000000000008c _ZN2nn2fs6detail30OutputAccessLogForPreconditionENS_6ResultENS_2os4TickES4_PKcNS0_15DirectoryHandleES6_z +00000000000af530 g DF .text 0000000000000070 _ZN2nn6socket8resolver10serializer20FreeAddrinfoContentsER8addrinfo +00000000002a406c g DF .text 00000000000000e0 _ZN7android14IPCThreadState4selfEv +00000000003246ac g DF .text 0000000000000050 _ZNSt3__124__libcpp_debug_exceptionD1Ev +00000000000d6f70 g DF .text 0000000000000030 _ZNK2nn4bcat21DeliveryCacheProgress9GetStatusEv +00000000002c9a1c g DF .text 000000000000004c _ZNK7android13GraphicBuffer15getNativeBufferEv +0000000000150e84 g DF .text 000000000000016c _ZN2nn4nifm6detail13RequestClient20PrepareLibraryAppletEPNS_6applet19LibraryAppletHandleE +000000000080b450 g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No4E +0000000000329a74 w DF .text 0000000000000008 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE8overflowEj +000000000094e9f8 w DO .data 0000000000000060 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +0000000000805030 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi66EE4MaskE +000000000080b520 g DO .rodata 0000000000000023 _ZTSN2nn3hid23VibrationNodeConnectionE +000000000000926c w DF .text 00000000000000d8 _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE6GetMacEPvm +00000000000a742c w DF .text 0000000000000204 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSE_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESQ_NSO_23InRawClientArgumentTypeILm4ELm4EvEENSO_24BufferClientArgumentTypeESS_j +000000000003dda4 g DF .text 0000000000000070 _ZN2nn4util6TinyMt17GenerateRandomU32Ev +0000000000121fd0 g DF .text 0000000000000008 _ZNK2nn7friends11BlockedUser14GetBlockReasonEv +00000000007eda10 w DO .rodata 000000000000002a _ZTSN2nn5audio6detail21IAudioRendererManagerE +000000000095bf98 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_18SixAxisSensorStateELi32ENS1_13AtomicStorageIS3_EEEE +000000000095bac8 w DO .data 0000000000000020 _ZTVN2nn3hid6detail15NpadJoyLeftLifoE +0000000000977ea0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8ISessionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003e458c w DF .text 00000000000002d8 wcsftime_l +00000000000c01e8 g DF .text 0000000000000058 _ZN2nn7account28NetworkServiceAccountManager37LoadNetworkServiceAccountIdTokenCacheEPmPcm +00000000001c7c5c g DF .text 0000000000000080 _ZN2nn3mii23GetAppendMiiImageResultEPiNS_6applet13StorageHandleE +00000000001c7d5c g DF .text 0000000000000170 _ZN2nn3mii6detail9StartImplEPNS0_12AppletOutputERKNS0_11AppletInputE +0000000000100174 g DF .text 0000000000000180 silk_stereo_quant_pred +0000000000150428 g DF .text 0000000000000080 _ZN2nn3ngc6detail12SwapEndian64EPmm +00000000001751d8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E29_nn_sf_sync_GetKeyboardLayoutENS0_3OutIivEE +00000000002ce230 g DF .text 0000000000000070 _ZN7android8String16C1EPKDs +00000000002647b8 g DF .text 0000000000000018 cuda_Alloc +00000000000c8560 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEEEEELm0ELm1ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_27OutHandleClientArgumentTypeEj +00000000001c35f8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetPadding9Ei +00000000003ad724 g DF .text 0000000000000e8c __floatscan +00000000000b11e0 w DF .text 00000000000001c0 _ZNSt3__124uniform_int_distributionIjEclINS_23mersenne_twister_engineIjLm32ELm624ELm397ELm31ELj2567483615ELm11ELj4294967295ELm7ELj2636928640ELm15ELj4022730752ELm18ELj1812433253EEEEEjRT_RKNS1_10param_typeE +0000000000232334 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E27_nn_sf_sync_ActivateGestureENS_6applet20AppletResourceUserIdEi +00000000003a9294 g DF .text 0000000000000004 pthread_getaffinity_np +0000000000163e20 g DF .text 00000000000000ec _ZN2nn5prepo6detail7msgpack18WriteArrayAutoSizeEPNS2_17OutputStreamParamEj +000000000023e874 g DF .text 0000000000000088 _ZN22nerd_gillette_internal5otete7jaimev114DecodeImageROKERA1200_tPKhmPmRKNS1_17IntensityInPacketE +00000000000bfb38 g DF .text 0000000000000180 _ZN2nn7account41CreateNintendoAccountAuthorizationRequestEPNS0_42NintendoAccountAuthorizationRequestContextERKNS0_10UserHandleERKNS0_45NintendoAccountAuthorizationRequestParametersEPvm +00000000000ad76c g DF .text 0000000000000004 _ZN2nn6socket8resolver13GetHostByAddrEPKvjjPKNS0_14ResolverOptionEm +0000000000326264 g DF .text 0000000000000034 _ZNSt16nested_exceptionC2Ev +0000000000298d4c g DF .text 0000000000000050 _ZTv0_n24_N7android12BnMemoryHeapD0Ev +00000000002a6318 g DF .text 0000000000000038 android_atomic_or +000000000004e61c g DF .text 0000000000000038 _ZN2nn2fs6detail16IsValidMountNameEPKc +000000000021e520 g DF .text 0000000000000074 _ZN2nn3hid6detail31GetXcdHandleForNpadWithIrSensorEPmRj +00000000001724ec w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object7ReleaseEv +0000000000040594 g DF .text 00000000000000a4 _ZN2nn4util43GetLengthOfConvertedStringUtf8ToUtf16NativeEPiPKci +00000000002aaec0 g DF .text 0000000000000008 _ZN7android18BufferItemConsumerD2Ev +000000000033cbfc g DF .text 000000000000007c _ZNSt3__114__num_put_base12__format_intEPcPKcbj +000000000080b454 g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No5E +0000000000230a68 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E37_nn_sf_sync_SetDebugPadAutoPilotStateERKNS5_5debug22DebugPadAutoPilotStateE +0000000000220424 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_6system15HomeButtonStateELi16ENS1_13AtomicStorageIS4_EEED2Ev +000000000018ec9c g DF .text 000000000000010c _ZN2nn5audio33ResampleOutputGetNextFrameSize2ChEPNS0_17ResamplerState2ChEiiPi +00000000000a0620 g DF .text 0000000000000044 _ZN2nn2sf4hipc29FinalizeHipcServiceResolutionEv +00000000003147e0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf9IDebuggerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_8DebuggerEEEEES7_E18_nn_sf_sync_CancelEv +0000000000170b9c g DF .text 00000000000000d4 _ZN2nn8settings6detail24GetDebugPadGenericPadMapEPNS0_21DebugPadGenericPadMapE +00000000007e6280 w DO .rodata 000000000000010d _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_EE +000000000016a1ac g DF .text 0000000000000070 _ZN2nn8settings5fwdbg20GetSettingsItemValueEPvmPKcS4_ +00000000001f863c g DF .text 0000000000000038 fnt_RoundToDoubleGrid +00000000000a5778 g DF .text 000000000000000c _ZN2nn6socket6detail9InetNtohsEt +00000000002c6e4c g DF .text 000000000000009c _ZN7android21SurfaceComposerClient7getEDIDERKNS_2spINS_7IBinderEEERNS_11DisplayEDIDE +000000000004dfe0 g DF .text 0000000000000084 _ZN2nn2fs6detail18FileSystemAccessor15NotifyCloseFileEPNS1_12FileAccessorE +0000000000164af8 g DF .text 0000000000000054 _ZN2nn5prepo6detail7msgpack12WriteFloat64EPNS2_17OutputStreamParamEd +000000000016579c g DF .text 0000000000000010 _ZN2nn5prepo16SystemPlayReportC1Ev +0000000000946370 w DO .data 0000000000000018 _ZTIN2nn2sf22UnmanagedServiceObjectINS0_4hipc6detail12IHipcManagerENS2_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEE +000000000014feb4 g DF .text 0000000000000150 _ZN2nn3ngc6detail11CalcSelect1EjjPKmPKjPKh +00000000000d6688 g DF .text 0000000000000008 _ZN2nn4bcat17DeliveryCacheFileC2Ev +000000000018ba4c g DF .text 0000000000000020 _ZN2nn5audio23SplitterDestinationData16SetDestinationIdEi +0000000000329640 w DF .text 0000000000000030 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE5sputcEw +0000000000947a38 w DO .data 0000000000000058 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail9INotifierENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000000be89c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E18_nn_sf_sync_CancelEv +0000000000155728 g DF .text 0000000000000070 _ZN2nn4nifm27SetBackgroundRequestEnabledEb +0000000000215660 g DF .text 00000000000000d0 _ZN2nn3hid6detail30InitializeConsoleSixAxisSensorEv +000000000022d548 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm5EEEvPNS0_16TouchScreenStateIXT_EEE +00000000000c2148 g DF .text 0000000000000044 _ZN2nn7account13ProfileEditorC2ERKNS0_3UidEPNS0_7profile14IProfileEditorE +0000000000945800 g DO .data 0000000000000018 _ZTIN2nn2os6detail22MultiWaitHolderOfEventE +00000000000cea44 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E52_nn_sf_sync_EndBlockingHomeButtonShortAndLongPressedEv +000000000011a508 g DF .text 0000000000000014 _ZN2nn3err36ErrorViewerStartupParamForSystemData12SetErrorCodeERKNS0_9ErrorCodeE +00000000001c534c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding6Ev +000000000009cda0 w DF .text 000000000000000c _ZN2nn2sf4hipc6server24HipcServerSessionManager29AllocatePointerTransferBufferEPmPNS2_17HipcServerSessionE +0000000000190bec g DF .text 0000000000000050 _ZN2nn5audio18CloseAudioRendererENS0_19AudioRendererHandleE +00000000003e355c g DF .text 0000000000000338 wcsstr +000000000022eaa0 g DF .text 0000000000000038 _ZN2nn3hid25GetVibrationDeviceHandlesEPNS0_21VibrationDeviceHandleEiRKjNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +0000000000093540 g DF .text 0000000000000040 _ZNK2nn2os6detail22MultiWaitHolderOfEvent10IsSignaledEv +000000000015d82c g DF .text 0000000000000058 _ZN2nn4pctl26SetStereoVisionRestrictionEb +0000000000184b80 g DF .text 000000000000000c _ZN2nn5audio26InitializeAudioInParameterEPNS0_16AudioInParameterE +00000000002320fc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E40_nn_sf_sync_IsSixAxisSensorFusionEnabledENS0_3OutIbvEENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +00000000003254dc g DF .text 0000000000000060 _ZNKSt3__111__libcpp_db6unlockEv +00000000000456b8 g DF .text 0000000000000004 _ZN2nn4diag14IsSystemSymbolEm +000000000080b458 g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No6E +0000000000090ca0 g DF .text 000000000000005c _ZN2nn2os19UnmapTransferMemoryEPNS0_18TransferMemoryTypeE +000000000018a3dc g DF .text 0000000000000030 _ZN2nn5audio16RemoveDeviceSinkEPNS0_19AudioRendererConfigEPNS0_14DeviceSinkTypeEPNS0_12FinalMixTypeE +00000000000c99f8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E53_nn_sf_sync_SetOutOfFocusApplicationSuspendingEnabledEb +000000000019d2fc g DF .text 0000000000000008 _ZNK2nn5audio6server13CommandBuffer9GetBufferEv +000000000016b9f0 g DF .text 0000000000000070 _ZN2nn8settings6detail30SetHeadphoneVolumeWarningCountEi +000000000095be58 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS1_15UniquePadConfigELi1ENS1_13AtomicStorageIS3_EEEE +0000000000329f50 w DF .text 0000000000000004 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsEPFRS3_S4_E +0000000000958f20 w DO .data 0000000000000018 _ZTIN2nn5audio6server10EffectInfoILNS0_10EffectTypeE4ENS0_15ReverbParameterEEE +0000000000822081 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_1E +00000000003e3ec0 g DF .text 0000000000000620 strptime +00000000001726f8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +00000000003aaa60 w DF .text 000000000000012c fdopen +00000000001a8f10 g DF .text 0000000000000228 _ZN2nn5audio15GetPcmInt16DataEPiPNS0_10VoiceStateEPKNS0_6common10WaveBufferEiiiiii +00000000001d0264 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_RemoveFromLayerStackEmj +000000000036d6b4 g DF .text 000000000000001c _ZNSt3__129__libcpp_recursive_mutex_initEPN2nn2os9MutexTypeE +0000000000135a98 g DF .text 0000000000000170 _ZN2nn4htcs6detail25virtual_socket_collection8ShutdownEiiRi +00000000003d26ac g DF .text 0000000000000028 mbrlen +0000000000945058 g DO .data 0000000000000020 nnmem_spinlock_mutex +00000000000ccfec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E19_nn_sf_sync_EndTrimENS0_3OutINS5_11GameMovieIdEvEE +0000000000232450 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E31_nn_sf_sync_GetPlayerLedPatternENS0_3OutImvEEj +000000000017b074 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_RemoveClientPkiEm +00000000001a0e1c g DF .text 0000000000000008 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_22DownMix6chTo2chCommandE +00000000002ad8d0 g DF .text 000000000000005c _ZN7android19BufferQueueConsumer28getFrameAvailableEventHandleERjRb +000000000094e5b0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001bd050 g DF .text 0000000000000020 _ZN2nn3mii6detail11UtilityImpl21SetRandomSeedForDebugEl +0000000000287044 g DF .text 000000000000000c NvRmGpuSwizzlerCommit +000000000080b45c g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No7E +00000000002647d0 g DF .text 0000000000000020 cuda_Realloc +00000000003c7e7c g DF .text 0000000000000014 copysignf +00000000000386b8 g DF .text 000000000000014c nnutilZlib_inflateCopy +000000000094dc10 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001703ec g DF .text 0000000000000070 _ZN2nn8settings6detail13SetTvSettingsERKNS0_6system10TvSettingsE +00000000000904d0 g DF .text 0000000000000018 _ZN2nn2os24GetThreadCurrentPriorityEPKNS0_10ThreadTypeE +0000000000214568 g DF .text 00000000000000c4 _ZN2nn3hid6detail32BindAudioControlStateChangeEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +000000000026cfbc g DF .text 00000000000005e8 NvRmSurfaceDumpJson +00000000002d0058 g DF .text 0000000000000024 _ZN7android7String87toUpperEv +00000000003c7e90 g DF .text 000000000000002c copysignl +0000000000151d04 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E25_nn_sf_sync_CreateRequestENS0_3OutINS0_13SharedPointerINS6_8IRequestEEEvEEi +00000000002ce2a0 g DF .text 000000000000007c _ZN7android8String16C1EPKDsm +000000000025b8dc g DF .text 000000000000032c NvMemoryProfilerConnect +000000000017c598 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm0ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeEj +00000000003d6e6c g DF .text 000000000000013c regfree +00000000000e8ddc g DF .text 000000000000009c ec_dec_bits +00000000001cb880 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl23SetDecidedEnterCallbackEPFvPKNS0_15DecidedEnterArgEE +00000000000c98b8 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22ILibraryAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +0000000000959d10 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000001cd4fc w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +0000000000a20750 g DO .bss 0000000000000188 _ZN2nn3mii6detail23g_ServiceProviderClientE +00000000001d709c g DF .text 0000000000000094 _ZN2nn2vi6buffer11BufferQueue21GetRequiredMemorySizeERKNS1_10BufferInfoE +000000000013a7f8 g DF .text 00000000000000d0 _ZN2nn3nfc10GetTagInfoEPNS0_7TagInfoERKNS0_12DeviceHandleE +0000000000802440 w DO .rodata 00000000000000be _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000822082 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_2E +00000000001a8ed0 g DF .text 0000000000000008 _ZNK2nn5audio3dsp20CommandListProcessor15GetCommandCountEv +00000000000c7a50 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001a3814 g DF .text 000000000000000c _ZN2nn5audio6server11AddressInfoD2Ev +0000000000259fe0 g DF .text 0000000000000010 nvdcFreeModeDB +00000000002b4ef0 g DF .text 0000000000000044 _ZTv0_n24_N7android19IGraphicBufferAllocD0Ev +00000000001c0504 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetGlassColorEv +00000000002802e4 g DF .text 0000000000001cf8 NvColorFormatFromString +000000000023f8fc g DF .text 0000000000000164 _ZN22nerd_gillette_internal5otete7jaimev223DecodeFullFrameShapeROKERNS0_7jaimev113ShapeInPacketEPNS0_11OteteFloat2ERmmRNS1_22FullFrameShapeInPacketEPKhmPmRKNS2_17IntensityInPacketE +00000000003ca41c g DF .text 0000000000000050 fmaxf +00000000002c9e40 g DF .text 0000000000000018 _ZNK7android13GraphicBuffer10getFdCountEv +0000000000803df0 w DO .rodata 0000000000000023 _ZTSN2nn3hid6detail16NpadJoyRightLifoE +00000000001ac508 g DF .text 0000000000000574 _ZN2nn5audio16ReverbProcess6chEPKNS0_15ReverbParameterEPNS0_11ReverbStateEjPPiS7_ +00000000001cd2a4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000017ee84 g DF .text 000000000000001c _ZNK2nn4time13ClockSnapshot31GetStandardSteadyClockTimePointEv +000000000018a1c8 g DF .text 0000000000000090 _ZN2nn5audio6detail46FindResourceExclusionCheckerFromInternalHandleEPv +00000000000b550c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_GetImageSizeENS0_3OutIjvEE +000000000036d544 g DF .text 0000000000000018 _ZNSt3__124__libcpp_condvar_destroyEPNSt13__libcxx_shim19__libcxx_shim_ver_132__libcxx_shim_condition_variableE +00000000003ca46c g DF .text 000000000000008c fmaxl +0000000000067838 g DF .text 0000000000000218 _ZN2nn2fs14CreateSaveDataENS_3ncm13ApplicationIdENS0_6UserIdEmllj +0000000000019668 g DF .text 00000000000000ac _ZN2nn5image6detail4jpeg12jpeg_mem_srcEPNS2_22jpeg_decompress_structEPhm +00000000001de134 g DF .text 0000000000000010 FS_set_stroke_pct +000000000095d2b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEEvEE +000000000019cf28 w DF .text 00000000000000fc _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImplD2Ev +00000000001ceedc w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm1ELm1ELl0EEEEEELm16ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_ILm1ELm1EvEEj +000000000080b460 g DO .rodata 0000000000000004 _ZN2nn3hid6NpadId3No8E +000000000002889c g DF .text 0000000000000324 _ZN2nn5image6detail4jpeg13jpeg_idct_6x3EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000820b80 w DO .rodata 00000000000000ad _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000125aa4 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_UpdateUserPresenceERKNS_7account3UidERKNS6_16UserPresenceImplEm +0000000000395b5c g DF .text 000000000000007c __cxa_guard_release +000000000016a768 g DF .text 0000000000000044 _ZN2nn8settings6system16SetSleepSettingsERKNS1_13SleepSettingsE +00000000002353bc w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl4EEENSB_ILm1ELm1ELl0EEENSB_ILm8ELm8ELl8EEEEEELm16ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSL_ILm1ELm1EvEENSL_ILm8ELm8EvEEj +00000000000030ec g DF .text 0000000000000084 _ZN2nn6crypto6detail21OctetStringFromDigitsEPvmPKjm +00000000000577a4 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm0ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeEj +00000000000bf7f8 g DF .text 00000000000000f0 _ZN2nn7account20MakePreselectionInfoERKNS0_3UidE +000000000097d668 g DO .data 0000000000000028 _ZTVSt11logic_error +0000000000195f94 w DF .text 000000000000019c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEEEEELm16ELm0ELb0EEESG_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSL_23InRawClientArgumentTypeILm8ELm8EvEENSN_ILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000174860 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_SetPrimaryAlbumStorageEi +00000000003dd310 w DF .text 00000000000000d4 fputws_unlocked +0000000000955800 w DO .data 0000000000000010 _ZTIN2nn3ssl6detail22ISslServiceFactoryBaseE +00000000001c78e0 g DF .text 0000000000000068 _ZN2nn3mii13AppletManager10InitializeENS_6applet13StorageHandleE +00000000007e4cf0 w DO .rodata 00000000000000d6 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +00000000007d4b50 g DO .rodata 0000000000000020 silk_TargetRate_table_WB +00000000007f6f40 g DO .rodata 0000000000000e58 _ZN2nn3mii6detail26RandomMiiFacelineTypeTableE +0000000000804b90 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi29EE4MaskE +00000000000817c8 g DF .text 0000000000000018 nnmem_nlib_semaphore_destroy +0000000000822083 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_3E +000000000008f324 g DF .text 0000000000000008 _ZN2nn2os26SetMultiWaitHolderUserDataEPNS0_19MultiWaitHolderTypeEm +00000000003b9e90 g DF .text 0000000000000030 catanhf +00000000009538f0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail12IScanRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000002167f4 g DF .text 0000000000000070 _ZN2nn3hid6system6detail19StartFirmwareUpdateEPNS1_26FirmwareUpdateDeviceHandleENS1_11UniquePadIdE +00000000001690bc g DF .text 0000000000000044 _ZN2nn8settings6system17SetKeyboardLayoutENS0_14KeyboardLayoutE +00000000000c8b04 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IDebugFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_OpenMainApplicationENS0_3OutINS0_13SharedPointerINS6_20IApplicationAccessorEEEvEE +000000000094bd70 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ICommonStateGetterENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000097b6b0 g DO .data 0000000000000018 _ZTINSt3__120__codecvt_utf8_utf16IDiEE +00000000003b9ec0 g DF .text 0000000000000050 catanhl +00000000002c0f88 g DF .text 00000000000002e4 _ZN7android7SurfaceC1ERKNS_2spINS_22IGraphicBufferProducerEEEb +00000000000c9804 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service22ILibraryAppletAccessorEEEvi +000000000023a87c g DF .text 0000000000000040 _ZN2nn8irsensor6detail14SessionManager15FinalizeSessionERKNS_6applet20AppletResourceUserIdE +00000000000a1b98 g DF .text 0000000000000004 nnsocketRecvMsg +0000000000313e88 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_3fgm2sf8IRequestEEEvi +000000000005c7c4 w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm8ELm8ELl8EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm16ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENSS_ILm8ELm8EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000023475c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E30_nn_sf_sync_ActivateHomeButtonENS_6applet20AppletResourceUserIdE +00000000008241f0 g DO .rodata 0000000000000017 _ZTSSt18bad_variant_access +00000000003e326c g DF .text 0000000000000044 wcsdup +0000000000050c68 w DF .text 00000000000000e8 _ZN2nn2fs13FspPathPrintfEPNS_5fssrv2sf7FspPathEPKcz +00000000000c28c4 g DF .text 000000000000004c _ZN2nn2am23GetLibraryAppletCreatorEv +00000000001b6088 g DF .text 0000000000000014 _ZN2nn3mii12GetSkinColorEiNS0_9GammaTypeE +000000000015f03c g DF .text 00000000000002fc _ZN2nn4pctl6detail22IsAcceptableNpnsResultENS_6ResultE +0000000000214b54 g DF .text 0000000000000108 _ZN2nn3hid6detail12GetXpadStateEPNS0_14BasicXpadStateERKNS0_11BasicXpadIdE +00000000000fd700 g DF .text 00000000000000a0 silk_resampler_down2 +00000000001bf400 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw10GetFaceTexEv +0000000000232310 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E33_nn_sf_sync_IsSixAxisSensorAtRestENS0_3OutIbvEENS_6applet20AppletResourceUserIdENS5_19SixAxisSensorHandleE +0000000000220944 g DF .text 00000000000001e0 _ZN2nn3hid6detail22GetSixAxisSensorStatesEPiPNS0_18SixAxisSensorStateEiRKNS0_19SixAxisSensorHandleE +00000000001d4680 g DF .text 000000000000016c _ZN2nn2vi12DestroyLayerEPNS0_5LayerE +0000000000a85390 g DO .bss 0000000000000300 __nnmusl_fullPathDirName1 +0000000000168338 g DF .text 0000000000000044 _ZN2nn8settings7factory23SetOverlayDispProgramIdERKNS_3ncm9ProgramIdE +0000000000822084 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_4E +000000000018b014 g DF .text 0000000000000030 _ZN2nn5audio19SplitterInfoManager23GetInParamterBufferSizeEiii +0000000000328e9c w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9pubsetbufEPcl +0000000000090778 g DF .text 0000000000000010 _ZN2nn2os20GetMemoryHeapAddressEv +00000000002203c8 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_10MouseStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +00000000000c2c14 g DF .text 0000000000000050 _ZN2nn2am28IsInitializedAsOverlayAppletEv +000000000025a608 g DF .text 000000000000018c nvdcOpen +00000000003de0b0 g DF .text 0000000000000004 getwc +00000000001815dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E37_nn_sf_sync_GetTotalLocationNameCountENS0_3OutIivEE +000000000022fe94 g DF .text 0000000000000008 _ZNK2nn3hid15VibrationPlayer6IsLoopEv +0000000000256c18 g DF .text 0000000000000090 _ZN2nn3web14ShowWebPageArg30SetMediaPlayerAutoCloseEnabledEb +0000000000823280 g DO .rodata 0000000000000021 _ZTSNSt3__115__codecvt_utf16IwLb1EEE +00000000009aec90 g DO .bss 0000000000000004 _ZN2nn6socket6detail14g_SocketHErrnoE +000000000025010c g DF .text 0000000000000034 _ZN2nn3ldn12CloseStationEv +00000000002172f8 g DF .text 00000000000001d0 _ZN2nn3hid6detail19GetHomeButtonStatesEPiPNS0_6system15HomeButtonStateEi +0000000000178184 g DF .text 0000000000000014 _ZN2nn3ssl10ConnectionC2Ev +000000000080b940 w DO .rodata 00000000000000f1 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_EE +00000000002d01d8 g DF .text 0000000000000028 _ZNK7android7String88getUtf32EPDi +000000000008f6d8 g DF .text 00000000000000c0 _ZN2nn2os15ReleaseReadLockEPNS0_20ReaderWriterLockTypeE +00000000001710bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_GetWirelessLanMacAddressENS0_3OutINS5_7factory10MacAddressEvEE +00000000007cf910 w DO .rodata 0000000000000034 _ZTSN2nn4bcat6detail3ipc28IDeliveryCacheStorageServiceE +00000000001b289c g DF .text 0000000000000084 _ZN2nn2ec6detail28GetShopResultFromStorageImplERKNS_6applet13StorageHandleE +00000000003d2dac g DF .text 0000000000000028 mbstowcs +0000000000191228 g DF .text 00000000000000e4 _ZN2nn5audio29CreateAudioDebugManagerByHipcEv +0000000000174710 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E41_nn_sf_sync_SetDeviceTimeZoneLocationNameERKNS_4time12LocationNameE +00000000001bf2f8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetFaceTypeEv +00000000000d7274 g DF .text 0000000000000034 _ZN2nn4bcat6detail17ShimLibraryGlobalC2Ev +000000000013839c w DF .text 00000000000001b4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +0000000000059a3c w DF .text 0000000000000168 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm1ELm1ELl0EEENSG_ILm8ELm8ELl8EEENSG_ILm8ELm8ELl16EEENSG_ILm8ELm8ELl24EEEEEELm32ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm1ELm1EvEENSS_ILm8ELm8EvEESU_SU_j +00000000001b16e0 g DF .text 000000000000001c _ZN2nn2ec36ShowShopMembershipServiceInformationERKNS_7account3UidENS0_8SourceIdE +00000000003e6c98 g DF .text 0000000000000004 __nnmusl_UnlockLock +000000000016e9c4 g DF .text 0000000000000070 _ZN2nn8settings6detail13SetRegionCodeEi +00000000001a2044 g DF .text 0000000000000008 _ZN2nn5audio6server18PerformanceManager13IsInitializedEv +0000000000978c00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000395d8c g DF .text 0000000000000024 _ZNSt9bad_allocD0Ev +00000000000cb2f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_UnlockForegroundEv +00000000007adcf0 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f15ConstantMagentaE +00000000001cbca0 g DF .text 0000000000000070 _ZN2nn2vi15SetDisplayGammaEPNS0_7DisplayEf +000000000022e51c g DF .text 0000000000000060 _ZN2nn3hid6system19DisconnectUniquePadENS1_11UniquePadIdE +0000000000232090 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E41_nn_sf_sync_GetJoySixAxisSensorLifoHandleENS0_3OutINS0_12NativeHandleEvEENS5_9JoyXpadIdE +0000000000329234 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE4setpEPcS4_ +00000000003ab278 g DF .text 0000000000000060 gettimeofday +00000000001528d0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E23_nn_sf_sync_SetPriorityEh +000000000015a11c w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm8EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +000000000029e104 g DF .text 00000000000000f8 _ZN7android6Parcel12restartWriteEm +0000000000822085 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_5E +000000000029649c g DF .text 0000000000000048 _ZN7android8BpBinder13unlinkToDeathERKNS_2wpINS_7IBinder14DeathRecipientEEEPvjPS4_ +00000000009472e0 w DO .data 0000000000000018 _ZTIN2nn7account4baas22IManagerForApplicationE +000000000016ca34 g DF .text 0000000000000070 _ZN2nn8settings6detail25SetBluetoothAfhEnableFlagEb +0000000000176318 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm32ELm4ELl0EEEEEELm32ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm32ELm4EvEEj +0000000000072e80 g DF .text 0000000000000160 nnmem_nlib_memrchr_generic +000000000025ddf4 g DF .text 0000000000000154 NvUHashInsert +0000000000361080 g DF .text 0000000000000004 _ZNSt3__117declare_reachableEPv +00000000001a2534 g DF .text 0000000000000008 _ZNK2nn5audio6server12BehaviorInfo18GetProcessRevisionEv +00000000000c8a80 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IDebugFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000008d30c g DF .text 00000000000000a0 _ZN2nn2os11SignalEventEPNS0_9EventTypeE +000000000009fb50 w DF .text 0000000000000154 _ZN2nn2sf4cmif6server6detail34CmifProcessFunctionTableGetterImplINS0_4hipc6detail12IHipcManagerEE26Process_CloneCurrentObjectEPPNS1_13CmifOutHeaderEPS7_PNS2_17CmifServerMessageEONS0_6detail14PointerAndSizeE +00000000009dc780 w DO .bss 0000000000000008 _ZGVZN2nn5prepo6detail17ShimLibraryGlobal11GetInstanceEvE8instance +00000000009561d8 w DO .data 00000000000000a0 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service16ITimeZoneServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +00000000000445d0 g DF .text 0000000000000020 _ZN2nn4diag6detail9AbortImplEPKcS3_S3_i +0000000000001ea4 g DF .text 0000000000000084 _ZN2nn6crypto6detail11bigint_copyEPjPKji +00000000000b0b90 g DF .text 00000000000000e8 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferI11sockaddr_inEElPhmRKT_ +00000000000d8720 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E34_nn_sf_sync_GetPushNotificationLogENS0_3OutIivEERKNS0_8OutArrayINS5_19PushNotificationLogEEE +00000000002a63d4 g DF .text 0000000000000008 property_set +0000000000346f78 w DF .text 0000000000000008 _ZNKSt3__110moneypunctIcLb1EE16do_thousands_sepEv +000000000009a054 g DF .text 0000000000000014 _ZN2nn2sf33ScopedCurrentMemoryResourceSetterD1Ev +000000000036b8c0 g DF .text 0000000000000140 _ZNSt3__112strstreambuf8overflowEi +00000000007ada98 g DO .rodata 0000000000000004 _ZN2nn4util6detail16Float3PiDivided2E +0000000000188e70 g DF .text 000000000000000c _ZN2nn5audio22GetFinalMixBufferCountEPKNS0_12FinalMixTypeE +00000000000fcbe4 g DF .text 000000000000004c silk_init_decoder +00000000002280cc g DF .text 0000000000000008 _ZN2nn3hid6detail15MakeXpadIdValueEi +0000000000358dd8 g DF .text 0000000000000008 _ZNKSt3__114__codecvt_utf8IDiE16do_always_noconvEv +000000000035a53c g DF .text 0000000000000020 _ZNKSt3__120__codecvt_utf8_utf16IwE9do_lengthER11__mbstate_tPKcS5_m +00000000000968b4 g DF .text 00000000000000e4 _ZN2nn2os6detail22SetMemoryAttributeImplEmmNS0_15MemoryAttributeE +00000000008013b0 w DO .rodata 0000000000000102 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +0000000000323fd8 g DF .text 000000000000000c _ZNKSt12experimental15fundamentals_v112bad_any_cast4whatEv +00000000007cd8a0 w DO .rodata 00000000000000b1 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000d8ee8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +000000000023ca9c w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl16EEENSB_ILm4ELm4ELl0EEENSB_ILm8ELm2ELl4EEEEEELm24ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm8ELm2EvEEj +00000000000a1be4 g DF .text 0000000000000004 nnsocketGetAddrInfoWithOptions +00000000000c9658 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_ReserveToStartAndWaitENS0_13SharedPointerINS6_22ILibraryAppletAccessorEEE +00000000000d8698 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E43_nn_sf_sync_EnumerateBackgroundDeliveryTaskENS0_3OutIivEERKNS0_8OutArrayINS5_8TaskInfoEEE +000000000095b820 g DO .data 0000000000000010 _ZTIN2nn3hid6detail20SharedMemoryAccessorE +00000000009482a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +000000000023adf0 g DF .text 0000000000000020 _ZN2nn8irsensor38GetImageTransferProcessorDefaultConfigEPNS0_28ImageTransferProcessorConfigE +0000000000822086 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_6E +00000000003a7078 g DF .text 0000000000000074 __atomic_fetch_or_16 +00000000001b9d30 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetNoseScaleEi +000000000024cfbc g DF .text 00000000000002bc _ZN2nn5album14SaveScreenshotEPKvmNS0_9ImageSizeENS0_16ImageOrientationENS0_17AlbumReportOptionE +000000000009a274 g DF .text 0000000000000068 _ZN2nn2sf4cmif6server23CmifServerDomainManager14EntryAllocatorD1Ev +0000000000122280 g DF .text 0000000000000048 _ZNK2nn7friends18FriendDetailedInfo14GetMiiImageUrlEPNS0_3UrlE +0000000000822dd2 g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5upperE +000000000018c1c4 g DF .text 0000000000000050 _ZN2nn5audio17SetVoiceMixVolumeEPNS0_9VoiceTypeEPNS0_10SubMixTypeEfii +00000000000d475c g DF .text 00000000000000b0 _ZN2nn6applet37TryPopFromApplicationParameterChannelEPNS0_13StorageHandleENS0_19LaunchParameterKindE +00000000001cb868 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl22SetMovedCursorCallbackEPFvPKNS0_14MovedCursorArgEE +00000000001bce90 g DF .text 0000000000000004 _ZN2nn3mii6detail11UtilityImplD2Ev +00000000003c5a88 g DF .text 0000000000000078 wcsxfrm +00000000000381cc g DF .text 0000000000000064 nnutilZlib_inflateEnd +00000000001bb344 g DF .text 00000000000000b4 _ZN2nn3mii6detail12IsValidCrc16EPKvi +0000000000232e6c w DF .text 0000000000000118 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEEEEELm16ELm1ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEENSL_23InRawClientArgumentTypeILm8ELm8EvEENSO_ILm4ELm4EvEEj +000000000011a714 g DF .text 000000000000005c _ZN2nn3err40ShowUnacceptableAddOnContentVersionErrorEv +000000000016a58c g DF .text 0000000000000044 _ZN2nn8settings6system42GetConsoleSixAxisSensorAngularVelocityBiasEPNS1_39ConsoleSixAxisSensorAngularVelocityBiasE +0000000000274ab0 g DF .text 0000000000000008 NvRmChannelBlockRegRd +0000000000081cc4 g DF .text 000000000000000c nnmem_nlib_thread_priority_default +0000000000943040 g DO .data 0000000000000038 _ZTIN2nn2fs6detail26EventNotifierObjectAdapterE +000000000009045c g DF .text 000000000000000c _ZN2nn2os16GetCurrentThreadEv +0000000000118af8 g DF .text 0000000000000038 _ZN2nn5codec17GetOpusPacketSizeEPKhm +00000000001a271c g DF .text 000000000000009c _ZN2nn5audio6server14EffectInfoBaseC1Ev +00000000002203f0 w DF .text 0000000000000004 _ZN2nn3hid6detail15NpadJoyDualLifoD0Ev +0000000000318d48 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_SetTemperatureEi +0000000000072a60 g DF .text 0000000000000260 nnmem_nlib_memcmp_generic +00000000007e05e0 w DO .rodata 0000000000000159 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +00000000001d86a4 g DF .text 000000000000029c _ZN2nn6fontll6detail41PickPaltXValuesFromSinglePositioningValueEPiPNS0_15OtfKerningTableEPKvtPPKh +00000000002638c8 g DF .text 000000000000000c NvOsWaitUS +000000000016050c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc23IParentalControlServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +00000000001b5d94 g DF .text 0000000000000068 _ZNK2nn3mii8Nickname7IsEmptyEv +00000000001c36f8 g DF .text 0000000000001290 _ZNK2nn3mii6detail16Ver3StoreDataRaw16BuildToStoreDataEPNS1_12StoreDataRawEPNS1_11UtilityImplE +000000000014b5fc w DF .text 0000000000000004 _ZN2nn3ngc6detail15NullInputStreamD0Ev +000000000035c040 g DF .text 000000000000012c _ZNSt3__110__time_getC2EPKc +00000000002968e8 g DF .text 0000000000000040 _ZTv0_n40_N7android8BpBinder15onLastStrongRefEPKv +0000000000822087 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_7E +000000000017a8a4 w DF .text 0000000000000114 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_3ssl2sf11ISslServiceENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +00000000000413f8 g DF .text 0000000000000028 _ZN2nn4edid27GetDisplayWeekOfManufactureEPiPKNS0_11DisplayInfoE +000000000019cca4 w DF .text 000000000000002c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E26_nn_sf_sync_GetSampleCountENS0_3OutIivEE +00000000001bcd90 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw8SetNoseYEi +00000000002542c0 g DF .text 00000000000004f4 _ZN2nn3web38ShowApplicationLegalInformationPageArgC2Ev +0000000000092c04 g DF .text 0000000000000014 _ZN2nn2os6detail12SaturatedAddENS_8TimeSpanES2_ +000000000097b530 g DO .data 0000000000000018 _ZTINSt3__115__codecvt_utf16IDiLb0EEE +00000000000b6a5c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E22_nn_sf_sync_GetIdTokenENS0_3OutIjvEERKNS0_9OutBufferE +0000000000220454 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS1_31AnalogStickCalibrationStateImplELi1ENS1_13AtomicStorageIS3_EEED2Ev +00000000001cc034 g DF .text 0000000000000790 _ZN2nn2vi10InitializeEv +000000000036cd00 g DF .text 000000000000009c _ZNSt3__120__throw_system_errorEiPKc +0000000000150308 g DF .text 00000000000000a0 _ZN2nn3ngc6detail12SwapEndian16EPtm +00000000003cc078 g DF .text 000000000000000c llrintf +00000000000c1d54 g DF .text 0000000000000054 _ZN2nn7account48NintendoAccountApplicationAuthorizationProcedureaSEOS1_ +00000000007c6300 w DO .rodata 0000000000000024 _ZTSN2nn2am7service17IWindowControllerE +00000000002235c0 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm14EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +000000000017d284 g DF .text 000000000000000c _ZN2nn4time25AdjustableUserSystemClock6AdjustEv +000000000022bbdc g DF .text 0000000000000044 _ZN2nn3hid6system21GetNpadSystemExtStyleEPNS1_22NpadSystemExtMainStyleEPNS1_21NpadSystemExtSubStyleERKj +0000000000958340 w DO .data 0000000000000018 _ZTIN2nn5audio6detail32IAudioRendererManagerForDebuggerE +000000000032678c g DF .text 000000000000017c _ZNSt3__117__assoc_sub_state24set_value_at_thread_exitEv +0000000000237358 g DF .text 0000000000000150 _ZN2nn8irsensor6detail28GetClusteringProcessorStatesEPNS0_24ClusteringProcessorStateEPiiRKNS0_14IrCameraHandleE +00000000003cc084 g DF .text 0000000000000084 llrintl +00000000007c6660 w DO .rodata 00000000000000f6 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001b9e4c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw13SetMouthScaleEi +000000000029be08 g DF .text 00000000000000b4 _ZN7android12MemoryDealerD1Ev +0000000000398ba4 g DF .text 00000000000001b8 __gxx_personality_v0 +00000000001279dc w DF .text 0000000000000218 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm64EEENSI_ILi1ELi25ELm72EEENSI_ILi2ELi25ELm72EEENSG_ILm8ELm8ELl16EEEEEELm24ELm0ELb1EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENS2_24BufferClientArgumentTypeESW_SW_NSU_ILm8ELm8EvEEj +000000000008e5ec g DF .text 000000000000003c _ZN2nn2os18TryWaitSystemEventEPNS0_15SystemEventTypeE +00000000002cdbe8 g DF .text 0000000000000004 _ZN7android7RefBase15onLastStrongRefEPKv +0000000000325b94 g DF .text 0000000000000144 _ZNKSt3__111__libcpp_db9__addableEPKvl +00000000001782d4 g DF .text 00000000000000d4 _ZN2nn3ssl10Connection7DestroyEv +0000000000822088 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_8E +0000000000160be0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E25_nn_sf_sync_StopPlayTimerEv +00000000001b5be4 g DF .text 0000000000000034 _ZNK2nn3mii16CharInfoAccessor7IsValidEv +000000000080be50 w DO .rodata 0000000000000016 _ZTSN2nn3hid10IHidServerE +0000000000227ce8 g DF .text 00000000000001a4 _ZN2nn3hid6detail18ParseVibrationFileEPNS0_17VibrationFileInfoEPNS1_30VibrationFileParserContextImplEPKvm +0000000000353b38 g DF .text 0000000000000014 _ZNSt3__16localeC1ERKS0_ +000000000009055c g DF .text 0000000000000028 _ZN2nn2os17SetThreadCoreMaskEPNS0_10ThreadTypeEim +00000000000a19cc g DF .text 0000000000000018 _ZN2nn6socket10InitializeERKNS0_6ConfigE +00000000001a32ec g DF .text 00000000000000ac _ZNK2nn5audio6server10PoolMapper11FillDspAddrEPNS1_11AddressInfoE +0000000000227a30 g DF .text 0000000000000034 _ZN2nn3hid6detail33GetVibrationDeviceIdxFromPositionENS0_23VibrationDevicePositionE +0000000000317500 g DF .text 0000000000000034 _ZN2nn3i2c20CommandListFormatterC1EPvm +000000000017e828 g DF .text 00000000000000a0 _ZN2nn4time20LoadLocationNameListEPiPNS0_12LocationNameEii +00000000002bdc6c g DF .text 0000000000000030 _ZN7android22ISurfaceComposerClientD1Ev +0000000000068d8c g DF .text 0000000000000128 _ZN2nn2fs16SetSaveDataFlagsEmNS0_15SaveDataSpaceIdEj +00000000001ca4a0 g DF .text 0000000000000160 _ZN2nn5swkbd6detail18InlineKeyboardImpl8FinalizeEv +0000000000804f70 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi60EE4MaskE +0000000000092e98 g DF .text 0000000000000044 _ZN2nn2os6detail13MultiWaitImpl24RemoveFromEachObjectListEv +0000000000160b10 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E34_nn_sf_sync_GetSettingsLastUpdatedENS0_3OutINS_4time9PosixTimeEvEE +000000000095d2d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail9HidServerEEEEEE13ServiceObjectE +00000000000ed538 g DF .text 00000000000001ac quant_energy_finalise +0000000000220458 w DF .text 0000000000000004 _ZN2nn3hid6detail35AnalogStickCalibrationStateImplLifoD0Ev +00000000002cbe18 g DF .text 0000000000000074 _ZN7android6Region9translateERS0_ii +00000000003dc6a8 g DF .text 0000000000000008 _flushlbf +0000000000226e4c g DF .text 0000000000000078 _ZN2nn3hid6detail21UpdateControllerColorERNS_4util8Unorm8x4ES4_RNS0_6system11UniquePadIdE +0000000000095024 g DF .text 0000000000000088 _ZN2nn2os6detail38ExamineWholeAddressSpaceHasNoAttributeEmm +000000000018d148 g DF .text 000000000000002c _ZNK2nn5audio6common10EdgeMatrix9ConnectedEii +00000000000fccbc g DF .text 0000000000000038 silk_interpolate +000000000019c0ac g DF .text 000000000000002c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl17GetMixBufferCountENS_2sf3OutIivEE +00000000001bc888 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetMoleTypeEv +000000000017aadc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_GetContextCountENS0_3OutIjvEE +00000000001a2004 g DF .text 0000000000000040 _ZN2nn5audio6server18PerformanceManager22GetHistoryFrameAddressEPNS1_25PerformanceFrameAddressesEi +0000000000156e04 g DF .text 0000000000000004 _ZN2nn4nifm7RequestD2Ev +00000000009721f0 g DO .data 0000000000000190 _ZTCN7android17BnSurfaceComposerE0_NS_16ISurfaceComposerE +00000000002cee00 g DF .text 00000000000000ac _ZN7android7String8C2EPKc +0000000000051640 w DF .text 0000000000000004 _ZN2nn2fs3fsa25ICommonMountNameGeneratorD2Ev +0000000000286104 g DF .text 0000000000000014 nvgr_set_video_metadata +0000000000396b04 g DF .text 0000000000000004 _ZNSt10bad_typeidD1Ev +0000000000805830 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi226EE4MaskE +0000000000823460 g DO .rodata 000000000000001c _ZTSNSt3__114collate_bynameIwEE +00000000000b60f4 w DF .text 00000000000000b8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas22IManagerForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E38_nn_sf_sync_CreateAuthorizationRequestENS0_3OutINS0_13SharedPointerINS5_3nas21IAuthorizationRequestEEEvEERKNS5_45NintendoAccountAuthorizationRequestParametersEONS0_12NativeHandleEj +000000000003d764 g DF .text 0000000000000004 _ZN2nn4util11ReferSymbolEPKv +000000000006d84c w DF .text 0000000000000180 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENSD_ILi1ELi5ELm0EEEEEELm0ELm4ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSL_24BufferClientArgumentTypeESO_j +0000000000160eac w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_AuthorizePairingAsyncENS0_3OutINS6_9AsyncDataEvEENSL_INS0_12NativeHandleEvEERKNS6_15PairingInfoBaseE +000000000006cb10 g DF .text 0000000000000094 _ZN2nn2fs15MountSystemDataEPKcNS_3ncm12SystemDataIdEPvm +00000000007bee10 w DO .rodata 0000000000000154 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000008f3a8 g DF .text 0000000000000008 _ZN2nn2os13FinalizeMutexEPNS0_9MutexTypeE +0000000000155798 g DF .text 0000000000000068 _ZN2nn4nifm38SetWirelessCommunicationEnabledForTestEb +0000000000955700 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +000000000035a9d8 g DF .text 000000000000000c _ZNKSt3__18numpunctIwE11do_groupingEv +00000000000744ec g DF .text 00000000000000b0 nnmem_nlib_memccpy +00000000000d34d8 g DF .text 0000000000000038 _ZN2nn6applet49TakeScreenShotOfOwnLayerIntoLastApplicationBufferEb +000000000011b484 g DF .text 0000000000000008 _ZN2nn3err19ApplicationErrorArg29SetApplicationErrorCodeNumberEj +00000000002c69dc g DF .text 00000000000000a0 _ZN7android21SurfaceComposerClient20setDisplayProjectionERKNS_2spINS_7IBinderEEEjRKNS_4RectES8_ +0000000000822089 g DO .rodata 0000000000000001 _ZNSt3__112placeholders2_9E +000000000035bd3c g DF .text 00000000000000a0 _ZNKSt3__120__time_get_c_storageIwE3__XEv +00000000000f74c4 g DF .text 0000000000000068 silk_bwexpander +00000000007e1210 w DO .rodata 0000000000000151 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +0000000000021f98 g DF .text 0000000000000220 _ZN2nn5image6detail4jpeg27jpeg_calc_output_dimensionsEPNS2_22jpeg_decompress_structE +0000000000118b4c g DF .text 0000000000000030 _ZN2nn5codec32GetOpusPacketSampleCountPerFrameEPiPKhmi +0000000000159ab8 g DF .text 0000000000000138 _ZN2nn3nsd6detail22GetServiceObjectByHipcEPNS_2sf13SharedPointerINS1_8IManagerEEENS0_11ServiceTypeE +0000000000174288 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E27_nn_sf_sync_GetEulaVersionsENS0_3OutIivEERKNS0_8OutArrayINS5_6system11EulaVersionEEE +0000000000170900 g DF .text 0000000000000070 _ZN2nn8settings6detail24GetWirelessLanMacAddressEPNS0_7factory10MacAddressE +000000000026381c g DF .text 0000000000000058 NvOsMutexCreate +00000000001254ac w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +00000000001711a8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E35_nn_sf_sync_GetEciDeviceCertificateENS0_3OutINS5_7factory24EccB233DeviceCertificateEvEE +0000000000180a48 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E42_nn_sf_sync_GetEphemeralNetworkSystemClockENS0_3OutINS0_13SharedPointerINS7_12ISystemClockEEEvEE +000000000019bfd0 g DF .text 0000000000000004 _ZN2nn5audio6server17AudioRenderSystem4DumpEv +000000000029d3bc g DF .text 0000000000000100 _ZN7android14flatten_binderERKNS_2spINS_12ProcessStateEEERKNS0_INS_7IBinderEEEPNS_6ParcelE +000000000021c49c g DF .text 0000000000000074 _ZN2nn3hid6detail18StartSixAxisSensorERKNS0_19SixAxisSensorHandleE +000000000039cc54 g DF .text 0000000000000004 __register_frame +00000000001786e8 g DF .text 0000000000000094 _ZN2nn3ssl10Connection19SetSessionCacheModeENS1_16SessionCacheModeE +00000000007adc44 g DO .rodata 0000000000000004 _ZN2nn4util10StringPool15PackedSignatureE +0000000000804ed0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi55EE4MaskE +000000000023891c g DF .text 0000000000000004 _ZN2nn8irsensor6detail13StatusManagerD1Ev +000000000011cc78 g DF .text 0000000000000214 _ZN2nn7friends6detail4util18VerifyLanguageCodeERKNS_8settings12LanguageCodeE +0000000000160ce0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E32_nn_sf_sync_CancelNetworkRequestEv +0000000000238558 g DF .text 0000000000000078 _ZN2nn8irsensor6detail28RegisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdEb +000000000004eb4c g DF .text 0000000000000004 _ZN2nn2fs3fsa10UnregisterEPKc +000000000009ae30 g DF .text 0000000000000054 _ZN2nn2sf4hipc6client22ConvertSessionToDomainEPNS0_4cmif18CmifDomainObjectIdENS_3svc6HandleE +000000000022e680 g DF .text 0000000000000048 _ZN2nn3hid6system34CancelSixAxisSensorUserCalibrationERKNS1_25UniqueSixAxisSensorHandleE +0000000000229838 g DF .text 0000000000000060 _ZN2nn3hid17GetKeyboardStatesEPNS0_13KeyboardStateEi +0000000000122dd8 g DF .text 0000000000000008 _ZNK2nn7friends7Profile12GetAccountIdEv +000000000017ff8c g DF .text 0000000000000080 _ZN2nn4time11ToPosixTimeEPiPNS0_9PosixTimeEiRKNS0_12CalendarTimeE +000000000018bac0 g DF .text 000000000000006c _ZN2nn5audio13AcquireSubMixEPNS0_19AudioRendererConfigEPNS0_10SubMixTypeEii +0000000000234928 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E30_nn_sf_sync_ActivateNpadSystemEj +0000000000295010 g DF .text 00000000000000b8 _ZN7android7BBinder8transactEjRKNS_6ParcelEPS1_j +0000000000802380 w DO .rodata 00000000000000b7 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000170ff4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E12GetProxyInfoEv +000000000017421c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_SetAccountSettingsENS5_6system15AccountSettingsE +000000000012cbfc g DF .text 0000000000000054 _ZN2nn2fs13MountSaveDataEPKcNS_13ApplicationIdERKNS_7account3UidE +000000000017a7cc g DF .text 000000000000005c _ZN2nn3ssl6detail18ISslServiceFactory8FinalizeEv +00000000002cd51c g DF .text 0000000000000048 _ZN7android12NativeHandleD2Ev +0000000000978e90 w DO .data 0000000000000018 _ZTIN2nn3pwm8IManagerE +00000000009480e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000d0854 g DF .text 0000000000000068 _ZN2nn3apm17FinalizeForSystemEv +00000000001bcc68 g DF .text 0000000000000078 _ZN2nn3mii6detail12StoreDataRaw17BuildWithCoreDataEPNS1_11UtilityImplERKNS1_11CoreDataRawE +000000000097a508 w DO .data 0000000000000038 _ZTVNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +000000000006fb68 g DF .text 0000000000000004 _ZN2nn4lmem19GetUnitHeapUnitSizeEPNS0_6detail8HeapHeadE +000000000008de0c g DF .text 0000000000000010 _ZN2nn2os15GetCurrentFiberEv +00000000001b66f4 g DF .text 0000000000000004 _ZN2nn3mii13DumpStoreDataERKNS0_9StoreDataE +00000000003db954 w DF .text 0000000000000054 hcreate_r +00000000000c6600 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service13ILockAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000014eeec g DF .text 0000000000000078 _ZN2nn3ngc6detail15CompressedArrayC1EOS2_ +0000000000174c00 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_GetShutdownRtcValueENS0_3OutIlvEE +0000000000313dd4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +000000000095d7f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail18HidTemporaryServerEEEEEE13ServiceObjectE +0000000000239630 g DF .text 00000000000000f4 _ZN2nn8irsensor6detail15IrSensorSessionC2ERKNS_6applet20AppletResourceUserIdE +0000000000001cac g DF .text 000000000000000c _ZN2nn6crypto6detail6BigNumC1Ev +0000000000230384 g DF .text 000000000000008c _ZN2nn3hid15VibrationTarget20OnNextSampleRequiredEPNS0_14VibrationValueEPNS_4util13IntrusiveListINS0_23VibrationNodeConnectionENS4_27IntrusiveListBaseNodeTraitsIS6_S6_EEEE +000000000034128c w DF .text 000000000000018c _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE16do_get_monthnameES4_S4_RNS_8ios_baseERjP2tm +00000000001b4890 g DF .text 00000000000000a0 _ZN2nn2la23CreateLibraryAppletEasyEPNS_6applet19LibraryAppletHandleENS1_8AppletIdENS1_17LibraryAppletModeEb +000000000021699c g DF .text 0000000000000088 _ZN2nn3hid6system6detail25IsFirmwareUpdateAvailableEPbNS1_11UniquePadIdE +000000000095c840 g DO .data 0000000000000028 _ZTIN2nn3hid13VibrationNodeE +00000000000cfdb4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000017107c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_GetGyroscopeOffsetENS0_3OutINS5_7factory15GyroscopeOffsetEvEE +000000000035a784 g DF .text 0000000000000020 _ZNKSt3__120__codecvt_utf8_utf16IDiE9do_lengthER11__mbstate_tPKcS5_m +0000000000183ab4 g DF .text 0000000000000040 _ZN2nn3aoc19PrepareAddOnContentEiNS_13ApplicationIdE +0000000000075b98 g DF .text 00000000000000a0 nnmem_nlib_swapendian_16_generic +000000000009f890 w DF .text 0000000000000150 _ZN2nn2sf4cmif6server6detail34CmifProcessFunctionTableGetterImplINS0_4hipc6detail12IHipcManagerEE36Process_ConvertCurrentObjectToDomainEPPNS1_13CmifOutHeaderEPS7_PNS2_17CmifServerMessageEONS0_6detail14PointerAndSizeE +00000000002b2bbc g DF .text 000000000000031c _ZN7android12ConsumerBaseC2ERKNS_2spINS_22IGraphicBufferConsumerEEEb +00000000003a4600 g DF .text 0000000000000054 __powisf2 +000000000031a7e4 w DF .text 0000000000000548 _ZNSt3__16__sortIRNS_6__lessIccEEPcEEvT0_S5_T_ +00000000000be378 w DF .text 0000000000000004 _ZN2nn2sf22UnitHeapMemoryResourceD0Ev +000000000019c704 g DF .text 0000000000000060 _ZN2nn5audio6server24AudioRendererManagerImpl16AcquireSessionIdEv +0000000000122a74 g DF .text 0000000000000034 _ZN2nn7friends12UserPresence15SetAppValueImplEPKcS3_ +00000000009533a0 g DO .data 0000000000000018 _ZTIN2nn3ngc6detail16NullOutputStreamE +000000000016a4c0 g DF .text 0000000000000044 _ZN2nn8settings5fwdbg22ResetSettingsItemValueEPKcS3_ +000000000014122c g DF .text 0000000000000084 _ZN2nn3ngc15ProfanityFilterD0Ev +00000000002b6790 g DF .text 0000000000000008 _ZThn8_N7android23BnGraphicBufferProducer10onTransactEjRKNS_6ParcelEPS1_j +00000000009516e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000022c054 g DF .text 0000000000000078 _ZN2nn3hid23MergeSingleJoyAsDualJoyERKjS2_ +000000000018861c g DF .text 000000000000000c _ZN2nn5audio33GetI3dl2ReverbLateReverbDiffusionEPKNS0_15I3dl2ReverbTypeE +000000000020d49c g DF .text 0000000000000008 get_embedded_bitmap +00000000000a0ba4 g DF .text 0000000000000140 _ZN2nn2sm17UnregisterServiceEPKcm +00000000000cfc90 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24IApplicationProxyServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000003a9270 g DF .text 0000000000000024 sched_getaffinity +000000000004b9cc g DF .text 0000000000000008 _ZN2nn2fs15RomFsFileSystem15GetRomFileTableEv +0000000000091c90 g DF .text 000000000000010c _ZN2nn2os6detail13ThreadManager13DestroyThreadEPNS0_10ThreadTypeE +00000000000ba8f0 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm56ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm128EEEEEELm56ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm56ELm8EvEENS2_24BufferClientArgumentTypeEj +0000000000294f0c g DF .text 0000000000000008 _ZNK7android7IBinder13checkSubclassEPKv +000000000023c458 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E45_nn_sf_sync_ActivateIrsensorWithFunctionLevelENS_6applet20AppletResourceUserIdENS5_19PackedFunctionLevelE +00000000000bfdf4 g DF .text 0000000000000008 _ZNK2nn7account28NetworkServiceAccountManager6GetPtrEv +000000000021ac40 g DF .text 00000000000000e0 _ZN2nn3hid6detail27BindNpadStyleSetUpdateEventERKjPNS_2os15SystemEventTypeENS4_14EventClearModeE +00000000003310e8 w DF .text 000000000000005c _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEE4swapERS3_ +0000000000954aa0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5prepo6detail3ipc13IPrepoServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000001bafa0 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw13GetMouthColorEv +00000000000595ac w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEEEEELm0ELm1ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEEj +0000000000125f14 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_GetExternalApplicationCatalogENS0_3OutINS5_26ExternalApplicationCatalogEvEERKNS5_28ExternalApplicationCatalogIdENS_8settings12LanguageCodeE +00000000001b5c88 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor12GetSkinColorEv +000000000023f8b4 g DF .text 0000000000000048 _ZN22nerd_gillette_internal5otete7jaimev226DecodeHasFullFrameShapeROKERbPKhmPm +0000000000949718 g DO .data 0000000000000010 _ZTIN2nn7account13ProfileEditorE +0000000000263fd4 g DF .text 0000000000000084 NvOsVfprintf +000000000034f310 w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIDic11__mbstate_tED2Ev +0000000000822dd6 g DO .rodata 0000000000000002 _ZNSt3__110ctype_base5alphaE +00000000003ab048 g DF .text 0000000000000048 pthread_attr_init +0000000000041edc g DF .text 0000000000000254 _ZN2nn4edid6detail22GetEstablishedTimingIIEPFbPKNS0_15DisplayModeInfoEPKNS0_17DisplayTimingInfoEPKNS0_13ImageSizeInfoEPvESB_h +000000000003955c g DF .text 000000000000081c nnutilZlib__tr_flush_block +000000000014d570 g DF .text 000000000000009c _ZN2nn3ngc6detail3SbvD1Ev +00000000001fc8bc g DF .text 000000000000038c apply_transMatrix +000000000008e568 g DF .text 0000000000000004 _ZN2nn2os33DetachReadableHandleOfSystemEventEPNS0_15SystemEventTypeE +00000000000ce89c w DF .text 0000000000000054 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E61_nn_sf_sync_CreateApplicationAndPushAndRequestToStartForQuestENS_3ncm13ApplicationIdENS0_13SharedPointerINS6_8IStorageEEEjj +00000000000d9978 g DF .text 0000000000000088 hysteresis_decision +0000000000324864 g DF .text 0000000000000038 _ZNSt3__18__i_nodeD2Ev +00000000000c90c8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_GetIntegratedAppletPointerENS0_3OutINSt3__110shared_ptrINS6_16IntegratedAppletEEEvEE +00000000000b9fd4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE40_nn_sf_sync_GetUserLastOpenedApplicationENS0_3OutINS_13ApplicationIdEvEENSQ_IjvEERKNS5_3UidE +000000000016f5f0 g DF .text 0000000000000070 _ZN2nn8settings6detail42SetConsoleSixAxisSensorAngularVelocityBiasERKNS0_6system39ConsoleSixAxisSensorAngularVelocityBiasE +000000000004c5fc g DF .text 0000000000000094 _ZN2nn2fs15RomFsFileSystem17GetFileBaseOffsetEPlPKc +00000000000be768 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_7account6detail13IAsyncContextEEEvi +00000000001b62ec g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor13GetGlassColorEv +00000000001153dc g DF .text 0000000000000010 opus_multistream_encoder_alloc_get_size +00000000002c3d54 g DF .text 0000000000000074 _ZN7android14SurfaceControl10getSurfaceENS_2spINS_22IGraphicBufferProducerEEE +00000000002867b0 g DF .text 000000000000000c NvRmGpuDeviceGetTpcExceptionEnMask +000000000005e504 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm1ELm1EvEEj +0000000000274ab8 g DF .text 0000000000000008 NvRmChannelBlockRegWr +00000000003d1a08 g DF .text 000000000000012c a64l +0000000000129068 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm2048EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +000000000015cad0 g DF .text 0000000000000058 _ZN2nn2oe17GetPseudoDeviceIdEPNS_4util4UuidE +00000000000b44b0 g DF .text 0000000000000018 _ZN2nn7account11DeclarationD1Ev +000000000097b9a0 w DO .data 0000000000000038 _ZTINSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000223b44 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm6EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +00000000000912b8 g DF .text 0000000000000010 _ZN2nn2os29IsVirtualAddressMemoryEnabledEv +00000000001555ac g DF .text 000000000000006c _ZN2nn4nifm11GetClientIdEv +000000000023ef48 g DF .text 0000000000000048 _ZN22nerd_gillette_internal5otete7jaimev220DecodeHasNextHandROKERbPKhmPm +000000000025b514 g DF .text 0000000000000070 hdcp_set_thread_name +000000000001570c g DF .text 0000000000000034 _ZN2nn5image6detail4jpeg20jpeg_quality_scalingEi +0000000000942810 g DO .data 0000000000000008 _ZN2nn4diag6detail21g_LogObserverListHeadE +00000000003c30a8 w DF .text 0000000000000008 towlower_l +000000000009137c g DF .text 0000000000000004 nnosClearTimerEvent +000000000094d9b0 w DO .data 0000000000000018 _ZTIN2nn2am7service19ILibraryAppletProxyE +0000000000294e9c g DF .text 0000000000000028 _ZN7android7IBinderD0Ev +000000000009baa8 g DF .text 00000000000000e0 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor11ParseHeaderEPNS2_21HipcMessageHeaderInfoEPvm +00000000007bf0c0 w DO .rodata 000000000000014c _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +0000000000286844 g DF .text 000000000000000c NvRmGpuChannelGetErrorInfo +0000000000354270 g DF .text 00000000000000bc _ZNKSt3__16locale9use_facetERNS0_2idE +000000000011aeb4 g DF .text 0000000000000018 _ZN2nn3err30GetErrorMessageDatabaseVersionEPNS0_27ErrorMessageDatabaseVersionE +000000000018d7d8 g DF .text 000000000000001c _ZN2nn5audio6common18CheckValidRevisionEj +00000000001b5c60 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor8GetBuildEv +000000000004a948 g DF .text 0000000000000010 _ZN2nn2fs11RomPathTool10PathParserC2Ev +00000000000bbf74 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE12GetProxyInfoEv +000000000011ae98 g DF .text 0000000000000018 _ZN2nn3err24ConvertResultToErrorCodeERKNS_6ResultE +0000000000067a50 g DF .text 00000000000001f0 _ZN2nn2fs18CreateBcatSaveDataENS_3ncm13ApplicationIdEl +000000000010370c g DF .text 00000000000003d0 silk_find_pitch_lags_FIX +000000000021e384 g DF .text 0000000000000074 _ZN2nn3hid6detail13DeactivateNfcERjNS_6applet20AppletResourceUserIdE +00000000003587f0 g DF .text 0000000000000068 _ZNKSt3__114__codecvt_utf8IwE5do_inER11__mbstate_tPKcS5_RS5_PwS7_RS7_ +0000000000805910 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout12FrenchCanadaE +00000000002c6ae8 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient17getDisplayConfigsERKNS_2spINS_7IBinderEEEPNS_6VectorINS_11DisplayInfoEEE +000000000006ef68 g DF .text 0000000000000058 _ZN2nn4lmem19AllocateFromExpHeapEPNS0_6detail8HeapHeadEm +000000000080c650 w DO .rodata 00000000000000f6 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_EE +000000000004f9e8 g DF .text 0000000000000148 _ZN2nn2fs25CleanDirectoryRecursivelyEPKc +000000000004ba64 g DF .text 0000000000000070 _ZN2nn2fs15RomFsFileSystem10InitializeEONSt3__110unique_ptrINS0_8IStorageENS2_14default_deleteIS4_EEEEPvmb +00000000001b62c4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor12GetBeardTypeEv +00000000003595a4 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDsLb0EE16do_always_noconvEv +00000000001b29e0 w DF .text 00000000000000e8 _ZN2nn3web6common9CommonApi18StartLibraryAppletEPvmRNS_6applet19LibraryAppletHandleE +0000000000154f5c w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi22ELm528EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +0000000000042aa8 g DF .text 0000000000000088 _ZN2nn4edid6cea86111GetBlockTagEt +0000000000081d80 g DF .text 000000000000002c nnmem_nlib_fd_open +000000000021f270 g DF .text 0000000000000014 _ZN2nn3hid6detail20SharedMemoryAccessorD1Ev +00000000001837d4 g DF .text 0000000000000064 _ZN2nn3aoc17CountAddOnContentENS_13ApplicationIdE +00000000001bcde4 g DF .text 000000000000004c _ZN2nn3mii6detail12StoreDataRaw15UpdateDeviceCrcEv +00000000000d9ca4 g DF .text 0000000000000178 normalise_bands +00000000007e92a0 g DO .rodata 0000000000000004 _ZN2nn5audio6common13NodeIdManager7TypeMaxE +0000000000211d10 g DF .text 00000000000001c0 unload_ttf +00000000002206f8 g DF .text 0000000000000074 _ZN2nn3hid6detail22GetSixAxisSensorHandleEPNS0_19SixAxisSensorHandleENS0_11BasicXpadIdE +00000000007dfb94 g DO .rodata 0000000000000100 _ZN2nn3ngc6detail11PopCntArrayE +00000000001895cc g DF .text 0000000000000088 _ZN2nn5audio17MemoryPoolManager15UpdateOutStatusEPv +000000000003b66c g DF .text 0000000000000010 _ZN2nn4util16BinaryFileHeader12SetRelocatedEb +00000000001b96cc g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw13SetRegionMoveEi +0000000000359344 g DF .text 0000000000000100 _ZNKSt3__115__codecvt_utf16IwLb1EE9do_lengthER11__mbstate_tPKcS5_m +00000000000d88d8 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm512EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +000000000011b6a0 g DF .text 0000000000000008 _ZNK2nn3err18ErrorResultVariantcvNS0_9ErrorCodeEEv +0000000000005e08 g DF .text 0000000000000088 _ZNK2nn6crypto6detail7AesImplILm16EE12EncryptBlockEPvmPKvm +00000000003a45ac g DF .text 0000000000000054 __powidf2 +00000000003e1cec w DF .text 0000000000000078 stpcpy +00000000000bd8d8 g DF .text 0000000000000010 _ZNK2nn7account12AsyncContextcvbEv +0000000000396764 g DF .text 0000000000000054 _ZNSt11range_errorD1Ev +00000000003341ac w DF .text 0000000000000004 _ZNSt3__17collateIcED2Ev +00000000000510a8 g DF .text 0000000000000090 _ZN2nn2fs15GetBisMountNameENS0_14BisPartitionIdE +00000000001b7558 g DF .text 0000000000000020 _ZN2nn3mii6detail18GetMouthGreenColorENS0_11CommonColorENS0_9GammaTypeE +00000000001d9dd0 g DF .text 00000000000000f4 _ZN2nn6fontll18ScalableFontEngine25InitializeOtfKerningTableEPFPvmmS2_ES2_b +000000000016b0cc g DF .text 0000000000000044 _ZN2nn8settings5fwdbg18SetAllowedSslHostsEPKNS0_6system14AllowedSslHostEm +00000000002288b4 g DF .text 0000000000000044 _ZN2nn3hid5debug30SetCaptureButtonAutoPilotStateERKNS1_27CaptureButtonAutoPilotStateE +00000000000743f0 g DF .text 00000000000000fc nnmem_nlib_strlen +000000000036caac g DF .text 0000000000000158 _ZNSt3__112system_errorC2EiRKNS_14error_categoryEPKc +000000000018d230 g DF .text 000000000000000c _ZN2nn5audio6common10NodeStates5StackC1Ev +0000000000160e8c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E32_nn_sf_sync_FinishRequestPairingENS0_3OutINS6_15PairingInfoBaseEvEENS6_9AsyncDataE +0000000000159278 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc17GetNasRequestFqdnEPNS0_4FqdnE +00000000001a6820 g DF .text 0000000000000010 _ZN2nn5audio6server12VoiceContextC2Ev +000000000015212c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E30_nn_sf_sync_GetSsidListVersionENS0_3OutINS5_15SsidListVersionEvEE +00000000001e4600 g DF .text 0000000000000070 get_bitmap +000000000009f1b4 w DF .text 00000000000000a4 _ZNK2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage12GetInObjectsEPNS2_20CmifServerObjectInfoE +000000000094ca40 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000760b0 g DF .text 00000000000000a8 nnmem_nlib_utf32cpy_ +00000000001262bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E29_nn_sf_sync_DeletePlayHistoryERKNS_7account3UidE +00000000000c21d4 g DF .text 000000000000002c _ZN2nn7account13ProfileEditorC1Ev +0000000000220408 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_6system15NpadSystemStateELi16ENS1_13AtomicStorageIS4_EEED2Ev +00000000002996cc g DF .text 00000000000001d8 _ZN7android9HeapCache8get_heapERKNS_2spINS_7IBinderEEE +00000000007d4bde g DO .rodata 0000000000000006 silk_LTPScales_table_Q14 +0000000000160448 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000000a19a0 g DF .text 0000000000000004 _ZN2nn6socket8RecvMMsgEiP7mmsghdrmiPNS_8TimeSpanE +00000000002cf774 g DF .text 00000000000000fc _ZN7android7String86appendERKS0_ +0000000000804a30 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi18EE4MaskE +000000000021d960 g DF .text 000000000000007c _ZN2nn3hid6detail28GetControlPadRestrictionTypeENS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEEPNS0_25ControlPadRestrictionTypeE +00000000000a0764 g DF .text 0000000000000020 _ZN2nn2sf4hipc23TryConnectToHipcServiceEPbPNS_3svc6HandleEPKc +0000000000165904 g DF .text 0000000000000010 _ZN2nn5prepo16SystemPlayReport16SetApplicationIdERKNS_13ApplicationIdE +00000000000d0418 g DF .text 00000000000000f4 _ZN2nn3apm20InitializePrivilegedEv +00000000001cd5b4 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetRelayServiceENS0_3OutINS0_13SharedPointerIN3nns9hosbinder16IHOSBinderDriverEEEvEE +000000000003b764 g DF .text 0000000000000018 _ZN2nn4util16BinaryFileHeader18SetRelocationTableEPNS0_15RelocationTableE +00000000009461d8 g DO .data 0000000000000098 _ZTVN2nn2sf4hipc6server34HipcServerSessionManagerWithDomainE +00000000000bf044 g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService10GetLoginIdEPm +000000000023ccc8 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm2ELl4EEEEEELm16ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm4ELm2EvEEj +0000000000979388 w DO .data 0000000000000038 _ZTVNSt3__120__shared_ptr_pointerIPNS_21__horizon_thread_dataEPFvS2_ENS_9allocatorIS1_EEEE +00000000000d7090 g DF .text 0000000000000038 _ZNK2nn4bcat21DeliveryCacheProgress18GetWholeDownloadedEv +000000000017d1ac g DF .text 0000000000000008 _ZN2nn4time28AdjustableNetworkSystemClock9to_time_tERKNSt3__16chrono10time_pointINS0_17SystemClockTraitsENS3_8durationIlNS2_5ratioILl1ELl1EEEEEEE +000000000029d4bc g DF .text 000000000000022c _ZN7android14flatten_binderERKNS_2spINS_12ProcessStateEEERKNS_2wpINS_7IBinderEEEPNS_6ParcelE +00000000007bec40 w DO .rodata 000000000000002f _ZTSN2nn7account31IAccountServiceForSystemServiceE +0000000000046544 g DF .text 00000000000000bc _ZN2nn2fs22SetGlobalAccessLogModeEj +00000000003a7fe4 g DF .text 000000000000007c __funcs_on_quick_exit +0000000000090b44 g DF .text 0000000000000008 _ZN2nn2os22GetSharedMemoryAddressEPKNS0_16SharedMemoryTypeE +00000000000a5754 g DF .text 0000000000000004 _ZN2nn6socket6detail8InetPtonEiPKcPv +0000000000361af8 w DF .text 0000000000000004 _ZnamSt11align_val_t +00000000003e2520 g DF .text 00000000000000ac __strncasecmp_l +0000000000145114 g DF .text 000000000000002c _ZN2nn3ngc6detail16WorkBufAllocator8FinalizeEv +000000000024bdd8 g DF .text 0000000000000060 _ZNK2nn3kpr15KeyCodeComposer14GetCompositionEPti +00000000003b9a28 g DF .text 0000000000000010 cargf +00000000001564f8 g DF .text 0000000000000098 _ZN2nn4nifm17GetNetworkProfileEPNS0_18NetworkProfileDataERKNS_4util4UuidE +00000000002b3ac0 g DF .text 000000000000006c _ZN7android12ConsumerBase7setNameERKNS_7String8E +00000000000d8c5c w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000017eec4 g DF .text 0000000000000070 _ZN2nn4time27EphemeralNetworkSystemClock14GetCurrentTimeEPNS0_9PosixTimeE +0000000000180090 g DF .text 000000000000018c _ZN2nn4time6detail7service21ServiceProviderClientC2Ev +00000000002280d4 g DF .text 0000000000000008 _ZN2nn3hid6detail26GetXpadIdValuePlayerNumberEi +00000000003b9a38 g DF .text 0000000000000010 cargl +0000000000328eb4 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE10pubseekposENS_4fposI11__mbstate_tEEj +0000000000a80d00 w DO .bss 0000000000000010 _ZNSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE2idE +00000000001a38e4 g DF .text 00000000000000bc _ZN2nn5audio6server7MixInfoC1EPiiRKNS1_12BehaviorInfoE +0000000000041204 g DF .text 0000000000000018 _ZN2nn4diag6detail16nnText_g3dviewerEPKc +000000000016edd4 g DF .text 0000000000000134 _ZN2nn8settings6detail20GetSettingsItemValueEPmPvmPKcS5_ +00000000001749d0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_GetInitialLaunchSettingsENS0_3OutINS5_6system21InitialLaunchSettingsEvEE +00000000003160a4 g DF .text 0000000000000008 nngpioSetInterruptEnable +00000000002245b4 w DF .text 000000000000019c _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm5EEEEEiPT_i +0000000000362470 g DF .text 0000000000000060 _ZNSt3__118shared_timed_mutex13unlock_sharedEv +00000000000ce68c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE17GetCmifBaseObjectEv +000000000032867c g DF .text 0000000000000058 _ZNSt3__18ios_base16__call_callbacksENS0_5eventE +00000000008223d0 g DO .rodata 0000000000000004 _ZNSt3__18ios_base6badbitE +0000000000318e80 w DF .text 0000000000000054 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E24_nn_sf_sync_GetDvfsTableERKNS0_8OutArrayIjEERKNSG_IiEENS0_3OutIivEEii +000000000016d4c4 g DF .text 0000000000000070 _ZN2nn8settings6detail24GetVibrationMasterVolumeEPf +0000000000258374 g DF .text 0000000000000084 nvcecSetThreadPriority +00000000000b4710 w DF .text 0000000000000114 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_7account29IAccountServiceForApplicationENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEEENS_6ResultEPNS0_13SharedPointerIT_EENS_3svc6HandleE +00000000003dcfd8 w DF .text 0000000000000030 fileno_unlocked +00000000001b5038 g DF .text 00000000000000e4 _ZN2nn2la17StopLibraryAppletEPvm +0000000000152a5c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E26_nn_sf_sync_GetRequirementENS0_3OutINS5_11RequirementEvEE +00000000002a4798 g DF .text 0000000000000008 _ZN7android14IPCThreadState22attemptIncStrongHandleEi +00000000000417e8 g DF .text 00000000000000fc _ZN2nn4edid8OpenEdidEPNS0_4EdidEPKvm +0000000000151188 g DF .text 0000000000000048 _ZN2nn4nifm6detail17ScanRequestClientD2Ev +000000000023b130 g DF .text 0000000000000044 _ZN2nn8irsensor6system23SetAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +000000000026c428 g DF .text 000000000000000c NvRmSyncCalculateSizeForInplaceSyncpoints +0000000000152180 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E31_nn_sf_sync_GetDefaultIpSettingENS0_3OutINS5_13IpSettingDataEvEE +00000000001153ec g DF .text 00000000000000ac opus_multistream_encoder_get_size +000000000012e3a0 w DF .text 0000000000000190 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEEEEELm8ELm16ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSP_ILm8ELm8EEENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm4ELm4EvEESU_j +00000000000c66c4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000a84d90 g DO .bss 0000000000000300 __nnmusl_cwd +0000000000184c2c g DF .text 0000000000000010 _ZN2nn5audio35SetAudioOutCountMaxForLibraryAppletEi +000000000017105c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E33_nn_sf_sync_GetAccelerometerScaleENS0_3OutINS5_7factory18AccelerometerScaleEvEE +00000000003cd7bc g DF .text 0000000000000020 remainder +00000000002a38bc g DF .text 0000000000000124 _ZN7android17HOSServiceManager15addServiceProxyERKNS_7String8EN2nn2sf13SharedPointerIN3nns9hosbinder16IHOSBinderDriverEEE +0000000000329454 w DF .text 0000000000000014 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEED2Ev +00000000007b0f24 g DO .rodata 0000000000000004 _ZN2nn2fs24HierarchicalRomFileTable12MaxKeyLengthE +00000000007c8c90 w DO .rodata 00000000000000f0 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000812d8 g DF .text 0000000000000020 nnmem_nlib_barrier_wait +00000000000c7f30 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_UpdateCallerAppletCaptureImageEv +0000000000977f50 w DO .data 0000000000000018 _ZTIN2nn3fgm2sf8IRequestE +0000000000177e4c g DF .text 00000000000000e4 _ZN2nn3ssl7Context9RemovePkiEm +00000000000a18c0 g DF .text 0000000000000004 _ZN2nn6socket5WriteEiPKvm +00000000002b3c3c g DF .text 0000000000000068 _ZNK7android12ConsumerBase4dumpERNS_7String8E +000000000005fa24 g DF .text 0000000000000028 _ZN2nn2fs6detail29DirectoryServiceObjectAdapterD1Ev +000000000036d66c g DF .text 0000000000000004 _ZNSt3__121__libcpp_thread_yieldEv +000000000004599c g DF .text 0000000000000020 _ZN2nn4diag12GetBacktraceEPmimmm +0000000000184a1c g DF .text 0000000000000028 _ZN2nn5audio36ConvertAdpcmNibbleCountToSampleCountEi +0000000000286e10 g DF .text 000000000000000c NvRmGpuRegOpsSessionSetPowergateMode +0000000000321c04 w DF .text 0000000000000544 _ZNSt3__16__sortIRNS_6__lessIffEEPfEEvT0_S5_T_ +00000000001ca178 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard24SetDecidedCancelCallbackEPFvvE +000000000095bc90 w DO .data 0000000000000018 _ZTIN2nn3hid6detail23NfcXcdDeviceHandleStateE +000000000035964c g DF .text 0000000000000014 _ZNKSt3__115__codecvt_utf16IDsLb0EE13do_max_lengthEv +0000000000064528 g DF .text 0000000000000098 _ZN2nn2fs17UnregisterProgramEm +000000000009a308 g DF .text 00000000000000d4 _ZN2nn2sf4cmif6server23CmifServerDomainManager6DomainD2Ev +00000000000c9f5c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000023c678 w DF .text 0000000000000124 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm40ELm8ELl16EEEEEELm56ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm40ELm8EvEEj +00000000001cd4f4 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +00000000002142ac g DF .text 0000000000000078 _ZN2nn3hid6detail30EnableAppletToGetSixAxisSensorERKNS_6applet20AppletResourceUserIdEb +0000000000319a58 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000336308 w DF .text 0000000000000480 _ZNKSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__do_get_unsignedIyEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000003e0ffc g DF .text 00000000000000c4 wcstoull +000000000009a514 g DF .text 000000000000004c _ZN2nn2sf4cmif6server23CmifServerDomainManager14EntryAllocator13AllocateEntryEv +00000000003e26b0 g DF .text 0000000000000030 strrchr +000000000016018c w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +00000000001751b8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E54_nn_sf_sync_SetConsoleSixAxisSensorAngularVelocityGainERKNS5_6system39ConsoleSixAxisSensorAngularVelocityGainE +00000000001c5d28 g DF .text 0000000000000194 _ZN2nn3mii6detail21ServiceProviderClientC2Ev +000000000022c154 g DF .text 000000000000004c _ZN2nn3hid18GetNpadJoyHoldTypeEv +00000000000e85d8 g DF .text 00000000000001f8 decode_pulses +0000000000131fd4 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl68EEENSC_21OutObjectArgumentInfoILi0ELi0EEENSG_ILm66ELm2ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm72ELb0EEESN_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_27OutObjectClientArgumentTypeENSU_ILm66ELm2EEENS2_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001300e4 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm16ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSM_ILm8ELm8EEENSL_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000015dfdc g DF .text 000000000000005c _ZN2nn4pctl30IsRestrictionTemporaryUnlockedEv +000000000016cd44 g DF .text 0000000000000070 _ZN2nn8settings6detail27GetEticketDeviceCertificateEPNS0_7factory24Rsa2048DeviceCertificateE +000000000034aa48 g DF .text 00000000000000f4 _ZNSt3__116__check_groupingERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjS8_Rj +000000000027ad68 g DF .text 0000000000000134 NvBlit +0000000000356c28 g DF .text 0000000000000010 _ZNKSt3__17codecvtIcc11__mbstate_tE6do_outERS1_PKcS5_RS5_PcS7_RS7_ +00000000001543d4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E22_nn_sf_sync_PersistOldENS0_3OutINS_4util4UuidEvEERKSR_ +00000000001cb044 g DF .text 0000000000000260 _ZN2nn5swkbd6detail18InlineKeyboardImpl18CalcFromReplyType_ENS0_9ReplyTypeENS_6applet13StorageHandleEm +0000000000049088 g DF .text 0000000000000028 _ZN2nn2fs24HierarchicalRomFileTable8DumpTreeEv +00000000001b16a0 g DF .text 000000000000002c _ZN2nn2ec37ShowShopApplicationInformationForMenuENS0_5NsUidERKNS_7account3UidEbNS0_8SourceIdE +00000000000b1fc0 g DF .text 0000000000000034 _ZN2nn7account6detail18OAuthProcedureBaseC1EOS2_ +00000000000a18a0 g DF .text 0000000000000004 _ZN2nn6socket6ListenEii +00000000000a1c3c g DF .text 0000000000000004 nnsocketRequestCancelHandle +00000000003db754 g DF .text 0000000000000038 __tre_mem_new_impl +00000000003dc878 w DF .text 0000000000000038 feof_unlocked +000000000094bce0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000186fd8 g DF .text 0000000000000064 _ZN2nn5audio14IsAuxRemovableEPKNS0_7AuxTypeE +00000000002c8d84 g DF .text 0000000000000020 _ZN7android5FenceD2Ev +000000000005fdc8 g DF .text 00000000000000b4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter17DoDeleteDirectoryEPKc +000000000094c4e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service16IAudioControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000097c100 w DO .data 0000000000000018 _ZTINSt3__114codecvt_bynameIwc11__mbstate_tEE +0000000000359d9c g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDiLb1EE16do_always_noconvEv +000000000018a718 g DF .text 0000000000000008 _ZN2nn5audio8SinkInfoC1Ev +000000000012a828 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +00000000007e90dc g DO .rodata 0000000000000004 _ZN2nn5audio20I3dl2ReverbParameter24SupportedChannelCountMaxE +0000000000045270 g DF .text 0000000000000004 _ZN2nn4diag12OnResultMissENS_6ResultERKNS0_10SourceInfoE +00000000000af11c w DF .text 00000000000001b8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi5ELm0EEENSE_ILi1ELi6ELm0EEENSE_ILi2ELi6ELm0EEENSB_ILm4ELm4ELl4EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSJ_ILm4ELm4ELl4EEEEEELm16ELm8ELb1EEESM_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSS_ILm8ELm8EvEENSR_24BufferClientArgumentTypeESV_SV_ST_NSR_24OutRawClientArgumentTypeILm4ELm4EEESX_j +000000000014f65c g DF .text 00000000000001b8 _ZN2nn3ngc6detail15CompressedArray6ImportEPNS1_12BinaryReaderE +00000000000c8d08 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE38_nn_sf_sync_GetIntegratedAppletPointerENS0_3OutINSt3__110shared_ptrINS6_16IntegratedAppletEEEvEE +00000000001b6880 g DF .text 000000000000001c _ZN2nn3mii6detail25CalculateSizeAndAlignment20AddSizeWithAlignmentEmmi +0000000000361a28 w DF .text 000000000000000c _ZdlPv +0000000000091f84 g DF .text 00000000000000c4 _ZN2nn2os6detail13ThreadManagerC2Ev +000000000018b94c g DF .text 0000000000000008 _ZNK2nn5audio12SplitterInfo15GetChannelCountEv +000000000026fec0 g DF .text 0000000000000008 NvRmMemPin +00000000003ab0ec g DF .text 0000000000000004 pthread_mutex_destroy +000000000019d0cc w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E38_nn_sf_sync_GetAudioDeviceOutputVolumeERKNS0_8InBufferENS0_3OutIfvEE +000000000019cac0 g DF .text 0000000000000048 _ZN2nn5audio6server24AudioRendererManagerImpl17GetWorkBufferSizeENS_2sf3OutIlvEERKNS0_6detail30AudioRendererParameterInternalE +00000000002574bc g DF .text 0000000000000090 _ZN2nn3web15ShowNewsPageArg17SetPointerEnabledEb +00000000003e1f60 g DF .text 0000000000000060 strcasestr +00000000001c586c g DF .text 000000000000001c _ZN2nn3mii8Database11BuildRandomEPNS0_8CharInfoERKNS0_10RandomDescE +000000000095b768 g DO .data 0000000000000078 _ZTVN2nn3hid6detail7SessionE +00000000001c59dc g DF .text 0000000000000054 _ZN2nn3mii15PrivateDatabase10InitializeEv +000000000031a0cc g DF .text 0000000000000050 _ZN2nn3pwm7SetDutyEPNS0_14ChannelSessionEi +00000000000be874 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +000000000022fb08 g DF .text 0000000000000034 _ZN2nn3hid23VibrationNodeConnectionD0Ev +00000000002c5b50 g DF .text 0000000000000020 _ZN7android21SurfaceComposerClient19getVsyncEventHandleERjRb +00000000001d6b90 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerIN3nns9hosbinder16IHOSBinderDriverEE19FunctionForBoolTypeEv +000000000008ffe4 g DF .text 000000000000006c _ZN2nn2os16ReleaseSemaphoreEPNS0_13SemaphoreTypeE +0000000000157bd8 g DF .text 0000000000000134 _ZN2nn4nifm6detail16SsidListAccessor4LoadEv +0000000000096998 g DF .text 0000000000000008 _ZN2nn2os6detail38InternalConditionVariableImplByHorizonC1Ev +0000000000172f10 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings24ISettingsItemKeyIteratorENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_28IFirmwareDebugSettingsServerEEEEES6_E18_nn_sf_sync_GoNextEv +0000000000328f70 w DF .text 0000000000000028 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6sbumpcEv +00000000000487ac g DF .text 0000000000000064 _ZN2nn2fs24HierarchicalRomFileTable8OpenFileEPNS0_11RomFileInfoERKNS1_8EntryKeyE +0000000000823050 g DO .rodata 0000000000000022 _ZTSNSt3__17codecvtIcc11__mbstate_tEE +0000000000329270 w DF .text 00000000000000c0 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE6xsgetnEPcl +0000000000041a80 g DF .text 000000000000003c _ZN2nn4edid6detail15GetColorSupportENS0_14VideoInterfaceEh +0000000000049070 g DF .text 0000000000000018 _ZN2nn2fs24HierarchicalRomFileTable22QueryRomFileSystemSizeEPlS2_ +00000000003a5bf0 g DF .text 0000000000000058 __atomic_load_16 +000000000034a5d8 w DF .text 0000000000000470 _ZNSt3__111__money_getIcE13__gather_infoEbRKNS_6localeERNS_10money_base7patternERcS8_RNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEESF_SF_SF_Ri +000000000094fa60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000035c16c g DF .text 0000000000000084 _ZNSt3__110__time_getC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +0000000000088220 g DF .text 00000000000001f4 _ZN2nn7nlibsdk4heap14TlsHeapCentral18WalkAllocatedPtrs_EPFiPvmS3_ES3_ +00000000000cbb44 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IApplicationCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000118b30 g DF .text 000000000000001c _ZN2nn5codec32GetOpusPacketSampleCountPerFrameEPKhmi +000000000036bee0 g DF .text 00000000000000b8 _ZNSt3__110ostrstreamD1Ev +00000000000c2200 g DF .text 0000000000000078 _ZN2nn7account13ProfileEditorC2EOS1_ +000000000034f2ec w DF .text 0000000000000024 _ZNSt3__114codecvt_bynameIDsc11__mbstate_tED0Ev +00000000001c3348 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw12SetEyeRotateEi +00000000002561d8 g DF .text 0000000000000094 _ZN2nn3web32GetWebPageReutrnValueFromStorageEPNS0_18WebPageReturnValueERKNS_6applet13StorageHandleE +00000000001c9758 g DF .text 0000000000000064 _ZN2nn5swkbd29SetRightOptionalSymbolKeyUtf8EPNS0_14KeyboardConfigEPKc +0000000000216668 g DF .text 00000000000000ac _ZN2nn3hid5debug6detail22GetFirmwareUpdateStageEPNS1_19FirmwareUpdateStageEPh +000000000033eb10 w DF .text 0000000000000210 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwb +0000000000125ce8 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E34_nn_sf_sync_GetFriendCandidateListENS0_3OutIivEERKNS0_8OutArrayINS6_19FriendCandidateImplEEERKNS_7account3UidEi +000000000033fa90 w DF .text 00000000000003e0 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwd +0000000000340444 w DF .text 00000000000003e0 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwe +0000000000228a4c g DF .text 0000000000000044 _ZN2nn3hid5debug28FinalizeConsoleSixAxisSensorEv +00000000002c0920 g DF .text 00000000000004b0 _ZN7android14StreamSplitter16onFrameAvailableERKNS_10BufferItemE +0000000000947b40 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail9INotifierENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +00000000000412b0 g DF .text 0000000000000148 _ZN2nn4edid14GetDisplayInfoEPNS0_11DisplayInfoEPKNS0_4EdidE +0000000000957d30 w DO .data 0000000000000018 _ZTIN2nn5audio6detail21IAudioRendererManagerE +000000000009ac64 g DF .text 0000000000000054 _ZN2nn2sf4cmif6server23CmifServerDomainManager12CreateDomainEv +0000000000150c48 g DF .text 0000000000000024 _ZN2nn4nifm6detail13RequestClient24SetRequirementBySubmitIdEj +00000000001d9c50 g DF .text 000000000000001c _ZN2nn6fontll18ScalableFontEngineC1Ev +000000000026985c g DF .text 0000000000000104 NvRmChipGetCapabilityU32 +000000000033ed20 w DF .text 0000000000000208 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwl +000000000009146c g DF .text 0000000000000004 nnosTrySendMessageQueue +000000000033f684 w DF .text 0000000000000208 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwm +0000000000113a64 g DF .text 0000000000000058 get_left_channel +0000000000361244 g DF .text 0000000000000020 _ZNSt3__115recursive_mutex8try_lockEv +00000000000afa94 g DF .text 0000000000000324 _ZN2nn6socket8resolver10serializer13DNSSerializer18FromBufferInternalI8addrinfoEElRT_PKhm +00000000000bd314 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas29IOAuthProcedureForExternalNsaENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E23_nn_sf_sync_GetNicknameERKNS0_8OutArrayIcEE +00000000009558c0 w DO .data 0000000000000018 _ZTIN2nn3ssl2sf11ISslServiceE +0000000000098900 g DF .text 00000000000000f8 _ZN2nn2ro6detail8RoModule8BindLazyEj +0000000000174390 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E47_nn_sf_sync_SetAutomaticApplicationDownloadFlagEb +00000000001d5224 g DF .text 0000000000000010 _ZN2nn2vi13ObjectManager23GetValidLayerHolderListEv +0000000000214b1c g DF .text 0000000000000038 _ZN2nn3hid6detail12FinalizeXpadERKNS0_11BasicXpadIdE +000000000009e63c w DF .text 000000000000012c _ZN2nn2sf4hipc6server18Hipc2ServerMessage10SetBuffersEPNS0_6detail14PointerAndSizeE +0000000000958c78 w DO .data 0000000000000010 _ZTIN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImplE +00000000000c9458 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_OpenCallingLibraryAppletENS0_3OutINS0_13SharedPointerINS6_22ILibraryAppletAccessorEEEvEE +0000000000199404 g DF .text 00000000000000ac _ZN2nn5audio12StartAudioInEPNS0_7AudioInE +000000000094d0a8 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IStorageAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000033f480 w DF .text 0000000000000204 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwx +000000000017ea9c g DF .text 0000000000000018 _ZN2nn4time30EnsureNetworkClockAvailabilityEv +000000000033f88c w DF .text 0000000000000204 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwy +00000000000950fc g DF .text 0000000000000078 _ZN2nn2os6detail20DispatchFiberContextEPPNS1_22FiberContextForHorizonES4_ +00000000000d76f0 g DF .text 0000000000000030 _ZN2nn4bcat6detail17ShimLibraryGlobal31IncrementDeliveryCacheFileCountEv +00000000001de170 g DF .text 0000000000000024 FS_set_outline_opacity +00000000001744c8 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E32_nn_sf_sync_GetSettingsItemValueENS0_3OutImvEERKNS0_9OutBufferERKNS5_12SettingsNameERKNS5_15SettingsItemKeyE +00000000002cdd98 g DF .text 0000000000000114 _ZNK7android12SharedBuffer10editResizeEm +0000000000822db0 g DO .rodata 0000000000000004 _ZNSt3__16locale7collateE +00000000003aaff4 g DF .text 0000000000000010 pthread_attr_getschedparam +00000000000be814 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000007e08a0 w DO .rodata 0000000000000023 _ZTSN2nn4nifm6detail15IGeneralServiceE +00000000003a7380 g DF .text 00000000000003c0 __gcc_personality_v0 +0000000000092600 g DF .text 000000000000006c _ZN2nn2os6detail17MemoryHeapManager39ConcatenatePreviousFreeMemoryNodeUnsafeENS_4util13IntrusiveListINS1_14FreeMemoryNodeENS3_29IntrusiveListMemberNodeTraitsIS5_XadL_ZNS5_6m_nodeEEES5_EEE8iteratorE +000000000008ce4c g DF .text 0000000000000010 _ZN2nn2os11GetHostArgcEv +00000000002324b4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E51_nn_sf_sync_SetNpadJoyAssignmentModeSingleByDefaultENS_6applet20AppletResourceUserIdEj +0000000000160ba0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E35_nn_sf_sync_GetSynchronizationEventENS0_3OutINS0_12NativeHandleEvEE +00000000000812d0 g DF .text 0000000000000008 nnmem_nlib_munlock +00000000009479a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_EE +0000000000946400 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessageE +0000000000052e7c g DF .text 0000000000000534 _ZN2nn2fs6detail31GetFileSystemProxyServiceObjectEv +00000000001bcd9c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw13SetMouthScaleEi +00000000002c6948 g DF .text 000000000000002c _ZN7android21SurfaceComposerClient17setDisplaySurfaceERKNS_2spINS_7IBinderEEERKNS1_INS_22IGraphicBufferProducerEEE +000000000019c170 g DF .text 0000000000000034 _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl21RequestUpdateInternalERKNS_2sf9OutBufferES7_RKNS4_8InBufferE +00000000001c5c48 g DF .text 0000000000000024 _ZN2nn3mii15PrivateDatabase6DeleteERKNS0_8CreateIdE +00000000007d406e g DO .rodata 0000000000000060 silk_resampler_frac_FIR_12 +0000000000224e74 w DF .text 00000000000001f4 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm10EEEEEiPT_i +000000000004e664 g DF .text 00000000000000a8 _ZN2nn2fs6detail10GetSubPathEPKc +00000000007cea00 w DO .rodata 0000000000000027 _ZTSN2nn4bcat6detail3ipc15IServiceCreatorE +00000000001ce830 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_SetDisplayRgbRangeEmj +0000000000225d70 g DF .text 00000000000000ac _ZN2nn3hid6detail28BindUniquePadConnectionEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000232f84 w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl4EEENSB_ILm1ELm1ELl0EEEEEELm16ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm1ELm1EvEEj +00000000007e0290 w DO .rodata 0000000000000022 _ZTSN2nn4nifm6detail14IStaticServiceE +000000000095d8a8 w DO .data 0000000000000010 _ZTINSt3__110__function6__baseIFbRKN2nn8irsensor24TeraPluginProcessorStateEEEE +00000000000bd7dc g DF .text 000000000000001c _ZN2nn7account12AsyncContextC2EPNS0_6detail13IAsyncContextE +0000000000160ac8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E22_nn_sf_sync_GetPinCodeENS0_3OutIivEERKNS0_8OutArrayIcEE +00000000003c2ea8 g DF .text 0000000000000018 toupper +00000000000a0450 g DF .text 00000000000000d0 _ZN2nn2sf4hipc7ReceiveEPNS1_13ReceiveResultENS_3svc6HandleEPvm +00000000003cfb5c g DF .text 00000000000001a8 __invtrigl_R +00000000007dc558 g DO .rodata 0000000000000004 _ZN2nn3nfc6client27RequiredMcuVersionDataCountE +00000000000aa030 w DF .text 0000000000000220 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSJ_ILi1ELi34ELm0EEENSG_ILm4ELm4ELl8EEENSJ_ILi2ELi33ELm0EEEEEELm0ELm12ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESW_NS2_24BufferClientArgumentTypeESX_SW_SX_j +000000000004f4c8 g DF .text 0000000000000148 _ZN2nn2fs10DeleteFileEPKc +0000000000122b84 g DF .text 000000000000000c _ZN2nn7friends12UserPresence28DeclareOpenOnlinePlaySessionEv +0000000000022ed0 g DF .text 00000000000000b4 _ZN2nn5image6detail4jpeg23jinit_d_post_controllerEPNS2_22jpeg_decompress_structEb +0000000000069d78 g DF .text 0000000000000240 _ZN2nn2fs25ReadSaveDataThumbnailFileEmNS0_6UserIdEPvmS2_m +000000000015cd38 g DF .text 0000000000000050 _ZN2nn2oe30RequestToSaveRecordingForDebugEv +000000000017528c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +00000000000454f0 g DF .text 000000000000000c _ZN2nn4diag32InitializeSdkAbortObserverHolderEPNS0_22SdkAbortObserverHolderEPFvRKNS0_12SdkAbortInfoEE +00000000003dcfd8 g DF .text 0000000000000030 fileno +00000000001a509c g DF .text 0000000000000028 _ZN2nn5audio6server23SplitterDestinationDataC1Ei +00000000000222a0 g DF .text 00000000000000a8 _ZN2nn5image6detail4jpeg17jpeg_new_colormapEPNS2_22jpeg_decompress_structE +0000000000958f38 w DO .data 0000000000000028 _ZTVN2nn5audio6server10EffectInfoILNS0_10EffectTypeE5ENS0_20I3dl2ReverbParameterEEE +00000000000fa1d4 g DF .text 00000000000000e0 silk_decode_pitch +000000000027ae9c g DF .text 00000000000000fc NvBlitFlush +000000000015c878 g DF .text 0000000000000080 _ZN2nn2oe31LeaveExitRequestHandlingSectionEv +000000000015ced8 g DF .text 0000000000000080 _ZN2nn4pctl32CheckFreeCommunicationPermissionEb +000000000013ed70 g DF .text 0000000000000100 _ZN2nn3nfp8GetStateEv +0000000000091df8 g DF .text 0000000000000064 _ZN2nn2os6detail13ThreadManager12ResumeThreadEPNS0_10ThreadTypeE +00000000000d2b64 g DF .text 000000000000013c _ZN2nn6applet17JumpLibraryAppletENS0_19LibraryAppletHandleE +00000000001bf58c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetHairColorEv +000000000035a5dc g DF .text 0000000000000068 _ZNKSt3__120__codecvt_utf8_utf16IDsE5do_inER11__mbstate_tPKcS5_RS5_PDsS7_RS7_ +000000000008c16c g DF .text 0000000000000064 _ZN2nn3mem19NumberLineAllocator4FreeEi +00000000001892fc g DF .text 000000000000001c _ZNK2nn5audio14MemoryPoolInfo14IsInTransitionEv +00000000001b4b10 g DF .text 000000000000000c _ZN2nn2la22GetLibraryAppletHandleEv +00000000001d6a3c g DF .text 0000000000000070 _ZN2nn2vi6detail18SystemServiceProxy29FinalizeSystemServiceRootImplEv +0000000000347550 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb0EE13do_neg_formatEv +0000000000160aa8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E34_nn_sf_sync_GetPinCodeChangedEventENS0_3OutINS0_12NativeHandleEvEE +0000000000a1d638 g DO .bss 0000000000000040 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue20g_MessageQueueBufferE +0000000000365458 w DF .text 0000000000000014 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEED2Ev +00000000000a1b8c g DF .text 0000000000000004 nnsocketInetNtohl +0000000000121e40 g DF .text 0000000000000038 _ZN2nn7friends12AsyncContext11SetInternalEPNS0_6detail20AsyncContextInternalE +00000000001711cc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E39_nn_sf_sync_GetEticketDeviceCertificateENS0_3OutINS5_7factory24Rsa2048DeviceCertificateEvEE +000000000003de14 g DF .text 00000000000001a0 _ZN2nn4util6TinyMt19GenerateRandomBytesEPvm +0000000000183680 g DF .text 0000000000000060 _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImplD1Ev +0000000000170890 g DF .text 0000000000000070 _ZN2nn8settings6detail19SetHostFsMountPointERKNS0_6system16HostFsMountPointE +00000000000a1b88 g DF .text 0000000000000004 nnsocketInetNtohs +000000000018d8f0 g DF .text 000000000000000c _ZN2nn5audio6common19WorkBufferAllocatorC1EPvm +000000000095be08 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS1_18InputDetectorStateELi1ENS1_13AtomicStorageIS3_EEEE +0000000000025948 g DF .text 0000000000000484 _ZN2nn5image6detail4jpeg15jpeg_idct_11x11EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000183ff8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_GetAddOnContentBaseIdENS0_3OutImvEEm +00000000001c9f1c g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard12SetCursorPosEi +0000000000050a04 w DF .text 0000000000000008 _ZN2nn2fs6detail10MountTableD2Ev +0000000000121ff0 g DF .text 0000000000000018 _ZN2nn7friends16DaemonSuspensionD1Ev +0000000000072914 g DF .text 0000000000000004 nnmem_nlib_wide_to_utf8 +000000000011fae8 g DF .text 000000000000010c _ZN2nn7friends18GetBlockedUserListEPiPNS0_11BlockedUserERKNS_7account3UidEii +000000000011b2e4 g DF .text 00000000000001a0 _ZN2nn3err19ApplicationErrorArgC2EjPKcS3_RKNS_8settings12LanguageCodeE +0000000000213110 g DF .text 00000000000000bc delete_lfnt +00000000007c08e0 w DO .rodata 000000000000015a _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000018c214 g DF .text 0000000000000018 _ZN2nn5audio17GetVoiceMixVolumeEPKNS0_9VoiceTypeEPKNS0_10SubMixTypeEii +000000000094d8e0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IApplicationCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000022dbd8 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm10EEEiPNS0_16TouchScreenStateIXT_EEEi +000000000011f490 g DF .text 0000000000000108 _ZN2nn7friends33GetFacedFriendRequestProfileImageEPmRKNS_7account3UidENS2_23NetworkServiceAccountIdEPvm +000000000022fa04 g DF .text 00000000000000f0 _ZN2nn3hid23VibrationNodeConnection7ConnectEPNS0_13VibrationNodeES3_ +000000000016ce94 g DF .text 0000000000000070 _ZN2nn8settings6detail23GetAutoUpdateEnableFlagEPb +00000000001d5004 g DF .text 0000000000000014 _ZN2nn2vi17FreeDisplayHolderEPv +000000000018ff50 g DF .text 0000000000000064 _ZN2nn5audio22RequestResumeAudioOutsENS_6applet20AppletResourceUserIdENS_8TimeSpanE +00000000000b6a14 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas21IAuthorizationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_IsAuthorizedENS0_3OutIbvEE +000000000012743c w DF .text 00000000000001e8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm224EEENSG_ILm8ELm8ELl16EEEEEELm24ELm0ELb1EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENS2_24BufferClientArgumentTypeENSS_ILm8ELm8EvEEj +00000000007d4bc5 g DO .rodata 0000000000000002 silk_lsb_iCDF +000000000032da04 w DF .text 000000000000011c _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsERPv +00000000001b8d2c g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw12GetHairColorEv +00000000001c9b88 g DF .text 00000000000000bc _ZN2nn5swkbd18SetInitialTextUtf8EPNS0_15ShowKeyboardArgEPKc +0000000000317a28 g DF .text 000000000000007c _ZN2nn3pcv15SetClockEnabledENS0_6ModuleEb +0000000000259560 g DF .text 00000000000001e0 nvdcFlip +000000000036d764 g DF .text 000000000000001c _ZNSt3__122__libcpp_mutex_trylockEPN2nn2os9MutexTypeE +000000000008c1d0 w DF .text 00000000000002e8 _ZN2nn3mem22NumberLineAllocatorPrv4FreeEj +000000000025600c g DF .text 000000000000005c _ZN2nn3web6detail23SharePageReturnValue2_010SetLastUrlEPKc +0000000000a85690 g DO .bss 0000000000000001 __nnmusl_chdirIsSet +00000000000ce99c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetDisplayVersionENS0_3OutINS_2oe14DisplayVersionEvEE +0000000000198880 g DF .text 00000000000000d8 _ZN2nn5audio22ContainsAudioOutBufferEPKNS0_8AudioOutEPKNS0_14AudioOutBufferE +00000000007f06d0 w DO .rodata 00000000000000ab _ZTSN2nn2sf4impl6detail16ImplTemplateBaseINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_EE +000000000013a128 g DF .text 000000000000010c _ZN2nn3nfc24SendCommandByPassThroughEPvPmRKNS0_12DeviceHandleEPKvmmNS_8TimeSpanE +00000000000969b0 g DF .text 0000000000000008 _ZN2nn2os6detail38InternalConditionVariableImplByHorizon9BroadcastEv +000000000017b53c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E16_nn_sf_sync_ReadENS0_3OutIjvEERKNS0_9OutBufferE +00000000001b59f8 g DF .text 00000000000000d4 _ZN2nn2la32NifmToWifiWebAuthArgumentsWriterC1EPKcS3_RKNS_4util4UuidEj +00000000009459c8 g DO .data 0000000000000038 _ZTVN2nn2os6detail29MultiWaitHolderOfNativeHandleE +000000000032a1d0 g DF .text 0000000000000024 _ZNSt3__18ios_base33__set_badbit_and_consider_rethrowEv +00000000009ef7b8 g DO .bss 0000000000000008 _ZN2nn4time18g_pTimeZoneServiceE +00000000003b32f4 g DF .text 0000000000000008 __nnmusl_force_addf +0000000000174d04 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_GetBatteryPercentageFlagENS0_3OutIbvEE +000000000003af80 g DF .text 0000000000000018 nnutilZlib_zError +0000000000942be0 g DO .data 0000000000000038 _ZTIN2nn2fs17FileHandleStorageE +00000000001a81e4 g DF .text 0000000000000004 _ZN2nn5audio3dsp14FlushDataCacheEPKvmb +0000000000347954 g DF .text 00000000000007ec _ZNSt3__117moneypunct_bynameIwLb0EE4initEPKc +000000000018c40c g DF .text 0000000000000044 _ZN2nn5audio18GetWaveBufferCountEPKNS0_9VoiceTypeE +0000000000188d58 g DF .text 0000000000000078 _ZN2nn5audio13EffectManager21UpdateEffectOutStatusEPNS0_10EffectInfo9OutStatusE +0000000000803a60 w DO .rodata 000000000000001b _ZTSN2nn3hid6detail9MouseLifoE +000000000005faf4 g DF .text 0000000000000030 _ZN2nn2fs6detail30FileSystemServiceObjectAdapterC1EONS_2sf13SharedPointerINS_5fssrv2sf11IFileSystemEEE +00000000003d3540 g DF .text 0000000000000050 __rand48_step +000000000003088c g DF .text 00000000000000c8 nnutilZlib_adler32_combine +00000000000d88c0 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +0000000000179344 g DF .text 00000000000000a0 _ZN2nn3ssl10Connection7PendingEv +00000000003294fc w DF .text 0000000000000084 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE6snextcEv +000000000094bae0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_18ISystemAppletProxyEEE +000000000005a148 w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl8EEENSG_ILm1ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENSS_ILm1ELm1EvEENS2_24BufferClientArgumentTypeEj +0000000000041b54 g DF .text 0000000000000028 _ZN2nn4edid6detail21ExtensionBlockVisitorEPKhmPv +0000000000948810 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000e95fc g DF .text 0000000000000040 ec_enc_shrink +000000000015352c w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm380EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +00000000003146c8 g DF .text 000000000000000c _ZN2nn3fgm8DebuggerC1Ev +0000000000069248 g DF .text 000000000000014c _ZN2nn2fs24GetSaveDataAvailableSizeEPlNS0_15SaveDataSpaceIdEm +000000000036c5f0 g DF .text 0000000000000018 _ZNKSt3__115error_condition7messageEv +000000000009143c g DF .text 0000000000000004 nnosClearEvent +0000000000952d30 w DO .data 0000000000000018 _ZTIN2nn3nfp6detail7ISystemE +000000000006ae08 g DF .text 0000000000000048 _ZN2nn2fs30SaveDataTransferSizeCalculator3AddERKNS0_12SaveDataInfoE +0000000000121cbc g DF .text 000000000000002c _ZN2nn7friends12AsyncContextC1Ev +00000000002b3848 g DF .text 0000000000000200 _ZN7android12ConsumerBase17onBuffersReleasedEv +000000000006c900 g DF .text 0000000000000024 _ZN2nn2fs6detail27StorageServiceObjectAdapter7GetSizeEPl +00000000007cc620 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002b89fc g DF .text 000000000000003c _ZTv0_n24_N7android16ISurfaceComposerD1Ev +00000000009b82c0 w DO .bss 0000000000000008 _ZZN2nn2lm6detail17ShimLibraryGlobal11GetInstanceEvE10s_Instance +00000000001560f8 g DF .text 0000000000000038 _ZN2nn4nifm18IsNetworkAvailableEv +00000000001caedc g DF .text 000000000000011c _ZN2nn5swkbd6detail18InlineKeyboardImpl4CalcEv +00000000000c6d08 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_LeaveFatalSectionEv +0000000000144c24 g DF .text 000000000000000c _ZN2nn3ngc6detail14ContentsReaderC2Ev +00000000001eaa74 g DF .text 00000000000007d8 inverse_map_char +000000000004c5c0 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem12DoRenameFileEPKcS3_ +00000000001aa438 g DF .text 0000000000000008 _ZN2nn5audio3dsp14MapUserPointerEjNS0_7CpuAddrEm +000000000021404c g DF .text 0000000000000018 nnfontllSetFsFunctions +0000000000823ba0 w DO .rodata 0000000000000023 _ZTSNSt3__117moneypunct_bynameIcLb0EEE +0000000000072cc0 g DF .text 00000000000001c0 nnmem_nlib_memchr_generic +00000000000a1b9c g DF .text 0000000000000004 nnsocketSendMsg +000000000011f038 g DF .text 0000000000000148 _ZN2nn7friends19RejectFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS0_9RequestIdE +0000000000823e20 w DO .rodata 0000000000000015 _ZTSNSt3__18messagesIcEE +000000000016d000 g DF .text 0000000000000080 _ZN2nn8settings6detail15SetEulaVersionsEPKNS0_6system11EulaVersionEi +000000000095e140 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail16IStateGetServiceE +00000000003e7400 g DF .text 0000000000000018 __nnmusl_FreeTlsSlot +00000000003dd194 w DF .text 0000000000000128 putwc_unlocked +00000000001a5538 g DF .text 0000000000000004 _ZN2nn5audio6server15SplitterContextC1Ev +000000000009e768 w DF .text 000000000000005c _ZN2nn2sf4hipc6server18Hipc2ServerMessage13SetOutObjectsEPNS0_4cmif6server20CmifServerObjectInfoE +0000000000122cd8 g DF .text 000000000000000c _ZN2nn7friends14FriendPresenceC2Ev +00000000001520ec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E22_nn_sf_sync_PutToSleepEv +00000000001874c4 g DF .text 0000000000000048 _ZN2nn5audio12RemoveReverbEPNS0_19AudioRendererConfigEPNS0_10ReverbTypeEPNS0_12FinalMixTypeE +00000000007c43d0 w DO .rodata 0000000000000040 _ZTSN2nn7account48NintendoAccountApplicationAuthorizationProcedureE +00000000001b5b7c g DF .text 0000000000000040 _ZNK2nn2la32NifmToWifiWebAuthArgumentsWriter6ExportEPcm +00000000002b517c g DF .text 0000000000000008 _ZThn8_N7android20BnGraphicBufferAlloc10onTransactEjRKNS_6ParcelEPS1_j +0000000000081b2c w DF .text 0000000000000100 _Z19nnmem_nlib_snprintfILm32EEiPmRAT__cPKcz +00000000003c2864 g DF .text 0000000000000040 __iswcntrl_l +00000000000b3c74 g DF .text 00000000000000ac _ZN2nn7account31GetNetworkServiceAccountManagerEPNS0_28NetworkServiceAccountManagerERKNS0_3UidE +00000000000c5ee4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_GetPerformanceModeENS0_3OutIjvEE +000000000024ee7c w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_6capsrv2sf29IMovieReadStreamServiceObjectEE19FunctionForBoolTypeEv +000000000008d09c g DF .text 00000000000000e0 _ZN2nn2os26TimedWaitConditionVariableEPNS0_21ConditionVariableTypeEPNS0_9MutexTypeENS_8TimeSpanE +00000000000cc560 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E51_nn_sf_sync_GetMainAppletApplicationControlPropertyENS0_3OutINS_2ns26ApplicationControlPropertyEvEE +000000000018d94c g DF .text 000000000000002c _ZN2nn5audio30DelayLineCalculateDelaySamplesEii +00000000001512e8 g DF .text 000000000000018c _ZN2nn4nifm6detail21ServiceProviderClientC2Ev +000000000017a080 g DF .text 0000000000000024 nnsslConnectionDoHandshakeWithCertBuffer +00000000001981a0 g DF .text 0000000000000100 _ZN2nn5audio19OpenDefaultAudioOutEPNS0_8AudioOutEPNS_2os11SystemEventERKNS0_17AudioOutParameterE +000000000095bbf0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail17NpadSystemExtLifoE +0000000000800bd0 w DO .rodata 0000000000000024 _ZTSN2nn2pl6detail18ISharedFontManagerE +0000000000315498 g DF .text 0000000000000058 _ZN2nn4gpio18GetDebounceEnabledEPNS0_14GpioPadSessionE +00000000001749ac w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_SetWirelessLanEnableFlagEb +00000000002c6d14 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient15setActiveConfigERKNS_2spINS_7IBinderEEEi +00000000001cb75c g DF .text 00000000000000b8 _ZN2nn5swkbd6detail18InlineKeyboardImpl26IsUsedTouchPointByKeyboardEii +00000000001d4f64 g DF .text 0000000000000004 _ZN2nn2vi10DumpMemoryEv +000000000025d184 g DF .text 0000000000000004 NvOsFflush +00000000007f2830 g DO .rodata 0000000000000004 _ZN2nn5audio3dsp25MailBoxImplByMessageQueue19InvalidMailBoxIndexE +00000000001c58dc g DF .text 0000000000000030 _ZNK2nn3mii8Database6ExportEPvm +0000000000361784 g DF .text 00000000000000c0 _ZNSt3__121recursive_timed_mutex6unlockEv +00000000000b3d20 g DF .text 00000000000000ac _ZN2nn7account36CheckNetworkServiceAvailabilityAsyncEPNS0_12AsyncContextERKNS0_27SystemProgramIdentificationE +000000000094c970 w DO .data 0000000000000018 _ZTIN2nn2am7service15IAppletAccessorE +0000000000955970 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +00000000001f0710 g DF .text 000000000000008c varmul_64 +00000000002c36f8 g DF .text 00000000000000e0 _ZN7android14SurfaceControlD2Ev +000000000009e518 w DF .text 0000000000000124 _ZN2nn2sf4hipc6server18Hipc2ServerMessage22BeginPreparingForReplyEPNS0_6detail14PointerAndSizeE +00000000000948e8 g DF .text 00000000000001ec _ZN2nn2os6detail11VammManager15FreeMemoryPagesEmm +0000000000366348 w DF .text 00000000000000fc _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertENS_11__wrap_iterIPKwEEw +00000000001da6d8 g DF .text 0000000000000014 IMOD +000000000095b8b8 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEEE +00000000001bcd38 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw16SetFacelineColorEi +0000000000222d98 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm5EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +0000000000029224 g DF .text 00000000000003dc _ZN2nn5image6detail4jpeg14jpeg_idct_7x14EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000001ba2c8 g DF .text 0000000000000a10 _ZNK2nn3mii6detail11CoreDataRaweqERKS2_ +0000000000975f08 g DO .data 0000000000000058 _ZTVN7android16SortedVectorImplE +000000000014d96c g DF .text 0000000000000234 _ZN2nn3ngc6detail3Sbv5BuildEv +00000000003611a0 g DF .text 0000000000000040 _ZNSt3__115recursive_mutexD1Ev +0000000000986e7c g DO .data 0000000000000004 opterr +000000000005073c g DF .text 00000000000000e8 _ZN2nn2fs16GetFreeSpaceSizeEPlPKc +0000000000156f64 g DF .text 0000000000000004 _ZN2nn4nifm23TemporaryNetworkProfileD2Ev +000000000005f7f8 g DF .text 0000000000000030 _ZN2nn2fs6detail24FileServiceObjectAdapterC1EONS_2sf13SharedPointerINS_5fssrv2sf5IFileEEE +000000000022d3b0 g DF .text 0000000000000044 _ZN2nn3hid5debug30UnsetSleepButtonAutoPilotStateEv +00000000000c6eb4 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_SetDesirableKeyboardLayoutEj +000000000019ede4 g DF .text 00000000000000a0 _ZN2nn5audio6server11EntryAspectC1EPNS1_16CommandGeneratorENS0_20PerformanceEntryTypeEj +00000000000c19b4 g DF .text 0000000000000044 _ZN2nn7account8NotifierD0Ev +00000000009596d0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail16IDatabaseServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000804970 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi12EE4MaskE +000000000021f8f4 g DF .text 000000000000094c _ZN2nn3hid6detail28InitializeSharedMemoryFormatEPNS1_18SharedMemoryFormatE +0000000000065ba0 w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE17DoDeleteDirectoryEPKc +0000000000a834ac w DO .bss 0000000000000004 optreset +0000000000066838 g DF .text 0000000000000118 _ZN2nn2fs17MountCacheStorageEPKc +00000000003ccef8 g DF .text 000000000000000c lrint +0000000000257b8c g DF .text 0000000000000084 _ZNK2nn3web6detail20ShowWebPageArgWriter15PushToInChannelENS_6applet19LibraryAppletHandleE +0000000000298b0c g DF .text 00000000000000a4 _ZN7android12BnMemoryHeapC2Ev +0000000000318dac w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E20_nn_sf_sync_FinalizeEv +00000000008053b0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi94EE4MaskE +00000000003c7e68 g DF .text 0000000000000014 copysign +000000000000080c w DF .text 000000000000013c _ZN2nn6crypto6detail11CtrModeImplINS0_12AesEncryptorILm16EEEE16IncrementCounterEv +000000000012204c g DF .text 0000000000000008 _ZNK2nn7friends6Friend11GetNicknameEv +0000000000164aa4 g DF .text 0000000000000054 _ZN2nn5prepo6detail7msgpack12WriteFloat32EPNS2_17OutputStreamParamEf +000000000018dd84 g DF .text 0000000000000048 _ZN2nn5audio14Axfx2DelayTickEPNS0_14Axfx2DelayLineEf +0000000000234db4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E53_nn_sf_sync_AcquireJoyDetachOnBluetoothOffEventHandleENS0_3OutINS0_12NativeHandleEvEENS_6applet20AppletResourceUserIdE +000000000031a11c g DF .text 0000000000000058 _ZN2nn3pwm7GetDutyEPNS0_14ChannelSessionE +00000000003e936c g DF .text 0000000000000030 __musl_bytewise_memcmp +00000000000823d0 g DF .text 00000000000000fc nnmem_nlib_vsnwprintf +00000000007c3930 w DO .rodata 0000000000000025 _ZTSN2nn7account6detail14ISessionObjectE +00000000000b804c w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas24IManagerForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +000000000003b660 g DF .text 000000000000000c _ZNK2nn4util16BinaryFileHeader11IsRelocatedEv +00000000000d2fb4 g DF .text 00000000000000dc _ZN2nn6applet15PushToInChannelENS0_19LibraryAppletHandleENS0_13StorageHandleE +00000000000be81c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail13IAsyncContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000000cdcdc w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IStackableAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE35_nn_sf_sync_GetLibraryAppletCreatorENS0_3OutINS0_13SharedPointerINS6_21ILibraryAppletCreatorEEEvEE +00000000003dc6f8 g DF .text 0000000000000010 __freadable +00000000001b5c78 g DF .text 0000000000000008 _ZNK2nn3mii16CharInfoAccessor11GetHairTypeEv +0000000000091318 g DF .text 0000000000000004 nnosGetThreadCurrentPriority +000000000019c128 g DF .text 000000000000001c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl21SetRenderingTimeLimitEi +000000000005f9f4 g DF .text 0000000000000030 _ZN2nn2fs6detail29DirectoryServiceObjectAdapterC2EONS_2sf13SharedPointerINS_5fssrv2sf10IDirectoryEEE +00000000001236d4 g DF .text 0000000000000144 _ZN2nn7friends11UserSetting12ClearPlayLogEPNS0_12AsyncContextE +00000000000ce5e8 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IApplicationProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetApplicationFunctionsENS0_3OutINS0_13SharedPointerINS6_21IApplicationFunctionsEEEvEE +00000000001bcd30 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw13SetRegionMoveEi +00000000000d4d00 g DF .text 0000000000000058 _ZN2nn6applet23SetWirelessPriorityModeENS0_20WirelessPriorityModeE +00000000001c3378 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw14SetEyebrowTypeEi +00000000009596b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +00000000000b793c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE46_nn_sf_sync_IsUserRegistrationRequestPermittedENS0_3OutIbvEEm +0000000000823c00 w DO .rodata 0000000000000023 _ZTSNSt3__117moneypunct_bynameIwLb0EEE +0000000000071db8 g DF .text 0000000000000034 nnmem_nlib_condrwlock_init +00000000001f9f78 g DF .text 000000000000012c fsg_WorkSpaceSetOffsets +00000000002a6390 g DF .text 0000000000000030 native_handle_delete +00000000003a7740 g DF .text 0000000000000000 fegetround +00000000001cb2a4 g DF .text 000000000000000c _ZN2nn5swkbd6detail18InlineKeyboardImpl22CalcUnsetCustomizeDic_ENS_6applet13StorageHandleEm +00000000002c8e0c g DF .text 0000000000000098 _ZN7android5Fence5mergeERKNS_7String8ERKNS_2spIS0_EES7_ +00000000003261e8 g DF .text 0000000000000018 _ZSt19uncaught_exceptionsv +0000000000045d38 w DF .text 000000000000004c _ZN2nn4diag6detail15ObserverManagerINS0_22SdkAbortObserverHolderERKNS0_12SdkAbortInfoEED2Ev +0000000000263608 g DF .text 0000000000000064 NvOsEventDestroy +00000000003e3c80 g DF .text 0000000000000014 ctime +00000000002d26ac g DF .text 0000000000000090 _ZN7android10VectorImpl11appendArrayEPKvm +000000000018da8c g DF .text 0000000000000008 _ZN2nn5audio14AllPassSetCoefEPNS0_11FXDelayLineEi +00000000001a3cf4 g DF .text 0000000000000034 _ZN2nn5audio6server10MixContextC1Ev +000000000019bde0 g DF .text 000000000000015c _ZN2nn5audio6server17AudioRenderSystem16SendCommandToDspEv +00000000002a65b4 g DF .text 0000000000000008 _ZNK7android22IGraphicBufferConsumer10BufferItem10getPodSizeEv +000000000002ec78 g DF .text 0000000000000004 _ZN2nn5image11JpegEncoderD0Ev +000000000010c070 g DF .text 0000000000000004 opus_decoder_destroy +000000000012593c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_GetFriendProfileImageENS0_3OutIivEERKNS_7account3UidENSN_23NetworkServiceAccountIdERKNS0_9OutBufferE +000000000015ccd8 g DF .text 0000000000000058 _ZN2nn2oe28IsGamePlayRecordingSupportedEv +0000000000234fbc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E33_nn_sf_sync_ActivateInputDetectorENS_6applet20AppletResourceUserIdE +00000000003b9908 g DF .text 0000000000000024 cacos +0000000000170cd0 g DF .text 00000000000000a8 _ZN2nn8settings6detail26ResetDebugPadGenericPadMapEv +000000000006fdfc g DF .text 000000000000019c _ZN2nn4lmem6detail16AllocFromExpHeapEPNS1_8HeapHeadEmi +00000000001017f4 g DF .text 0000000000000520 silk_corrMatrix_FIX +0000000000172560 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_ResetSettingsItemValueERKNS5_12SettingsNameERKNS5_15SettingsItemKeyE +000000000022fd28 g DF .text 0000000000000040 _ZN2nn3hid15VibrationPlayer4PlayEv +0000000000095264 g DF .text 0000000000000048 _ZN2nn2os6detail25SharedMemoryImplByHorizon5CloseEj +0000000000136010 g DF .text 000000000000002c _ZN2nn2lm6detail20LogPacketTransmitter14PushLineNumberEj +0000000000156828 g DF .text 0000000000000018 _ZN2nn4nifm27SetRequestRequirementPresetENS0_13RequestHandleENS0_17RequirementPresetE +00000000001eb24c g DF .text 00000000000002a0 engrave_graymap +000000000029e4fc g DF .text 000000000000006c _ZNK7android6Parcel18hasFileDescriptorsEv +000000000080b480 g DO .rodata 000000000000001a _ZTSN2nn3hid14VibrationMixerE +000000000029d6e8 g DF .text 00000000000001dc _ZN7android16unflatten_binderERKNS_2spINS_12ProcessStateEEERKNS_6ParcelEPNS0_INS_7IBinderEEE +000000000013e31c g DF .text 00000000000000e4 _ZN2nn3nfp15InitializeDebugEv +00000000007e4090 w DO .rodata 0000000000000133 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000007e8080 w DO .rodata 000000000000002f _ZTSN2nn7timesrv6detail7service16ITimeZoneServiceE +000000000035a698 g DF .text 0000000000000068 _ZNKSt3__120__codecvt_utf8_utf16IDiE6do_outER11__mbstate_tPKDiS5_RS5_PcS7_RS7_ +000000000006cdbc w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3tma11IHtcManagerEED2Ev +00000000001bc83c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetEyebrowXEv +00000000001c081c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw8GetMoleYEv +0000000000089e08 g DF .text 0000000000000058 _ZN2nn3mem17StandardAllocator8FinalizeEv +000000000011a4d4 g DF .text 0000000000000010 _ZNK2nn3err9ErrorCode7IsValidEv +000000000006202c g DF .text 0000000000000138 _ZN2nn2fs17ReadParamDirectlyEPvm +00000000001b5ad0 g DF .text 00000000000000a4 _ZNK2nn2la32NifmToWifiWebAuthArgumentsWriter15PushToInChannelENS_6applet19LibraryAppletHandleE +000000000004af8c g DF .text 0000000000000024 _ZN2nn2fs11FileStorage5FlushEv +000000000009130c g DF .text 0000000000000004 nnosSleepThread +0000000000165cc8 g DF .text 000000000000006c _ZN2nn5prepo6detail13VerifyEventIdEPmPKc +00000000007ce8f0 w DO .rodata 0000000000000104 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000001a7bb4 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_17DeviceSinkCommandE +0000000000189544 g DF .text 0000000000000088 _ZN2nn5audio17MemoryPoolManager17UpdateInParameterEPv +00000000000a1a08 g DF .text 0000000000000004 _ZN2nn6socket11GetAddrInfoEPKcS2_PK8addrinfoPPS3_PKNS0_14ResolverOptionEm +0000000000160734 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_ConfirmStereoVisionPermissionEv +00000000000c38f0 g DF .text 000000000000000c _ZN2nn2am24SetLibraryAppletResolverEPFvvE +00000000000c8220 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000000cb2a8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +000000000003c510 g DF .text 0000000000000030 _ZN2nn4util12CompressZlibEPmPvmPKvmS2_mii +000000000011f180 g DF .text 0000000000000148 _ZN2nn7friends17ReadFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS0_9RequestIdE +00000000000b8044 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas24IManagerForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +000000000023c39c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E32_nn_sf_sync_CheckFirmwareVersionENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleENS5_16PackedMcuVersionE +000000000023d350 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_8irsensor21IIrSensorSystemServerEED2Ev +00000000002950c8 g DF .text 000000000000000c _ZN7android7BBinder15getNativeHandleEjRjRb +000000000011e4b8 g DF .text 00000000000000f8 _ZN2nn7friends29GetReceivedFriendRequestCountEPiS1_RKNS_7account3UidE +0000000000264ae8 g DF .text 0000000000000010 NvOsGetProcessInfo +00000000003c9b70 g DF .text 0000000000000014 finitef +000000000011aa2c g DF .text 0000000000000060 _ZN2nn3err20ShowErrorWithoutJumpENS0_9ErrorCodeE +0000000000199940 g DF .text 00000000000000c8 _ZN2nn5audio24GetReleasedAudioInBufferEPNS0_7AudioInE +00000000001c33c8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetEyebrowXEi +000000000033312c w DF .text 0000000000000014 _ZTv0_n24_NSt3__114basic_iostreamIcNS_11char_traitsIcEEED1Ev +00000000001859b8 g DF .text 0000000000000088 _ZN2nn5audio28GetAuxI3dl2ReverbInputOutputEPaS1_PiPKNS0_18AuxI3dl2ReverbTypeEi +000000000036b898 g DF .text 0000000000000018 _ZNSt3__112strstreambuf3strEv +00000000002329ec w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E17GetCmifBaseObjectEv +00000000002ce40c g DF .text 000000000000002c _ZN7android8String16C2EPKcm +0000000000171188 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_GetBatteryLotENS0_3OutINS5_7factory10BatteryLotEvEE +00000000008255c0 g DO .rodata 0000000000000026 _ZTSN10__cxxabiv121__vmi_class_type_infoE +00000000007c7dc0 w DO .rodata 00000000000000f8 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000228c64 g DF .text 0000000000000044 _ZN2nn3hid5debug25SetDebugPadAutoPilotStateERKNS1_22DebugPadAutoPilotStateE +0000000000118180 g DF .text 0000000000000044 _ZN2nn5codec11OpusEncoderC2Ev +0000000000131a3c w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi34ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm16ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENSU_ILm8ELm8EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000000c38fc g DF .text 0000000000000144 _ZN2nn2am35InvokeWithSelfLibraryCreatorEnabledEPFvvE +00000000002aac74 g DF .text 0000000000000024 _ZN7android10BufferItem15scalingModeNameEj +000000000006c808 g DF .text 0000000000000048 _ZN2nn2fs6detail27StorageServiceObjectAdapterD0Ev +00000000001d1854 w DF .text 0000000000000148 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm16ELm4ELl4EEENSB_ILm4ELm4ELl20EEENSB_ILm4ELm4ELl24EEENSB_ILm4ELm4ELl28EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSH_ILm8ELm8ELl8EEEEEELm16ELm32ELb0EEESK_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSQ_ILm16ELm4EEESR_SR_SR_NSP_23InRawClientArgumentTypeILm8ELm8EvEESU_j +0000000000081e7c g DF .text 000000000000005c nnmem_nlib_fd_seek +00000000000f9f98 g DF .text 000000000000023c silk_decode_parameters +00000000007e90d8 g DO .rodata 0000000000000004 _ZN2nn5audio20I3dl2ReverbParameter15ChannelCountMaxE +000000000018bc34 g DF .text 0000000000000038 _ZN2nn5audio15SetSubMixVolumeEPNS0_10SubMixTypeEf +000000000019ee8c g DF .text 0000000000000034 _ZN2nn5audio6server11EntryAspectD1Ev +0000000000359328 g DF .text 000000000000000c _ZNKSt3__115__codecvt_utf16IwLb1EE10do_unshiftER11__mbstate_tPcS4_RS4_ +0000000000126348 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E27_nn_sf_sync_IssueFriendCodeERKNS_7account3UidE +00000000001c9e08 g DF .text 000000000000001c _ZN2nn5swkbd12UserWordInfo25GetRequiredWorkBufferSizeEi +00000000001c91c4 g DF .text 0000000000000048 _ZN2nn5swkbd22CopyUserDictionaryInfoEPNS0_15ShowKeyboardArgEi +0000000000396700 g DF .text 000000000000005c _ZNSt11logic_errorD0Ev +0000000000093494 g DF .text 0000000000000050 _ZN2nn2os6detail26MultiWaitHolderOfSemaphore15AddToObjectListEv +00000000000c6f18 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E38_nn_sf_sync_GetSystemSharedLayerHandleENS0_3OutINS_2vi7fbshare18SharedBufferHandleEvEENSK_INSM_17SharedLayerHandleEvEE +0000000000060f58 g DF .text 00000000000001c8 _ZN2nn2fs22MountGameCardPartitionEPKcjNS0_17GameCardPartitionE +00000000002342b4 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm1ELm1ELl0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm1ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm1ELm1EEENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000001736e0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E12GetProxyInfoEv +00000000001ca070 g DF .text 0000000000000018 _ZN2nn5swkbd14InlineKeyboard15SetTouchEnabledEb +0000000000942e08 w DO .data 0000000000000010 _ZTIN2nn2fs3fsa5IFileE +00000000008220c0 g DO .rodata 0000000000000012 _ZTSNSt3__18__c_nodeE +00000000002abc58 g DF .text 0000000000000340 _ZN7android11BufferQueue23createBufferQueueForAppEPNS_2spINS_22IGraphicBufferProducerEEEPNS1_INS_22IGraphicBufferConsumerEEERKNS1_INS_19IGraphicBufferAllocEEEi +00000000003262d8 g DF .text 0000000000000038 _ZNSt16nested_exceptionD0Ev +0000000000323998 w DF .text 0000000000000444 _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIeeEEPeEEbT0_S5_T_ +0000000000234fdc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E31_nn_sf_sync_NotifyInputDetectorENS_4util10BitFlagSetILi32ENS5_6system13InputSourceIdEEE +000000000094ec50 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003b8544 g DF .text 00000000000000b4 wcstod +000000000011bac4 g DF .text 000000000000000c _ZN2nn3err14SystemErrorArg18DetachErrorContextEv +00000000001b4a00 g DF .text 0000000000000110 _ZN2nn2la22StartLibraryAppletEasyENS_6applet8AppletIdERKNS0_21CommonArgumentsWriterEPKvmPvmPmb +000000000016fdd0 g DF .text 0000000000000070 _ZN2nn8settings6detail17GetDeviceNickNameEPNS0_6system14DeviceNickNameE +00000000001c8f80 g DF .text 000000000000003c _ZN2nn5swkbd22MakePresetDownloadCodeEPNS0_14KeyboardConfigE +00000000002ce088 g DF .text 0000000000000060 _ZN7android8String16C1ERKS0_mm +00000000003b8488 g DF .text 00000000000000bc wcstof +00000000008021a0 w DO .rodata 0000000000000106 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000000a02f0 g DF .text 0000000000000004 _ZN2nn2sf4hipc25AttachWaitHolderForAcceptEPNS_2os19MultiWaitHolderTypeENS_3svc6HandleE +0000000000125a64 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E40_nn_sf_sync_DeclareOpenOnlinePlaySessionERKNS_7account3UidE +00000000001a1fe8 g DF .text 000000000000001c _ZN2nn5audio6server18PerformanceManager22GetCurrentFrameAddressEPNS1_25PerformanceFrameAddressesE +0000000000228bc0 g DF .text 0000000000000060 _ZN2nn3hid17GetDebugPadStatesEPNS0_13DebugPadStateEi +00000000003e3894 g DF .text 0000000000000084 wcstok +000000000003b8ac g DF .text 0000000000000008 _ZNK2nn4util15RelocationTable7Section6GetPtrEv +00000000000c7e30 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IDisplayControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object12AddReferenceEv +00000000002be788 g DF .text 0000000000000050 _ZThn8_N7android23BnSurfaceComposerClient17onGetNativeHandleEjRjRb +00000000003e1248 g DF .text 00000000000000c4 wcstol +00000000001b5770 g DF .text 000000000000000c _ZN2nn2la21CommonArgumentsWriter19SetPlayStartupSoundEb +000000000011cf68 g DF .text 0000000000000150 _ZN2nn7friends13GetFriendListEPiPNS_7account23NetworkServiceAccountIdERKNS2_3UidEiiRKNS0_12FriendFilterE +00000000001a26a4 g DF .text 0000000000000018 _ZNK2nn5audio6server12BehaviorInfo26IsAdpcmLoopContextBugFixedEv +000000000097ba90 w DO .data 0000000000000038 _ZTINSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +0000000000804f10 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi57EE4MaskE +00000000007b85a8 g DO .rodata 0000000000000008 _ZN2nn7nlibsdk4heap11CentralHeap9kPageSizeE +00000000000526a0 g DF .text 00000000000000b4 _ZN2nn2fs21DeleteAllPaddingFilesEv +00000000001c3448 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw14SetMouthAspectEi +0000000000399a1c g DF .text 0000000000000060 unw_get_fpreg +00000000001b682c g DF .text 0000000000000018 _ZNK2nn3mii6detail15BufferAllocator11GetRestSizeEv +000000000016841c g DF .text 0000000000000050 _ZN2nn8settings6system17IsInRepairProcessEv +000000000017ce2c g DF .text 0000000000000008 _ZN2nn3ssl6detail15BuiltinDataInfo9GetStatusEv +00000000003160b8 g DF .text 0000000000000004 nngpioGetValue +0000000000317534 g DF .text 0000000000000018 _ZNK2nn3i2c20CommandListFormatter13IsEnqueueAbleEm +000000000032dd04 w DF .text 00000000000001c8 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getEPwlw +000000000004b854 g DF .text 0000000000000040 _ZN2nn2fs15RomFsFileSystemC2Ev +0000000000231020 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E34_nn_sf_sync_DisconnectUsbPadsAsyncEv +0000000000168e10 g DF .text 0000000000000060 _ZN2nn8settings6system15GetEulaVersionsEPNS1_11EulaVersionEi +0000000000197ab0 g DF .text 0000000000000120 _ZN2nn5audio38AcquireAudioDeviceNotificationForInputEPNS_2os11SystemEventE +0000000000078bc0 g DF .text 0000000000000134 nnmem_nlib_mq_getattr +000000000025d174 g DF .text 0000000000000004 NvOsOpendir +00000000001610ac w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi9ELm0EEENSG_ILm1ELm1ELl0EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeENSS_ILm1ELm1EvEEj +000000000018c27c g DF .text 000000000000003c _ZN2nn5audio29SetVoiceBiquadFilterParameterEPNS0_9VoiceTypeERKNS0_21BiquadFilterParameterE +000000000019ccd0 w DF .text 000000000000002c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E29_nn_sf_sync_GetMixBufferCountENS0_3OutIivEE +0000000000355220 g DF .text 000000000000002c _ZNKSt3__15ctypeIwE5do_isEtw +000000000006fc74 g DF .text 0000000000000018 _ZN2nn4lmem6detail14SetHeapFillValEij +000000000094be80 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000156e54 g DF .text 0000000000000014 _ZN2nn4nifm17NetworkConnectionC2ENS_2os14EventClearModeE +000000000009bdc4 g DF .text 000000000000003c _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor11GetExchangeEi +00000000000cb690 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_StartShutdownSequenceEv +0000000000272844 g DF .text 0000000000000094 NvRmStreamPushCpuIncr +00000000001aa470 g DF .text 0000000000000004 _ZN2nn5audio3dsp5SleepEv +0000000000803cd0 w DO .rodata 0000000000000022 _ZTSN2nn3hid6detail15NpadJoyDualLifoE +00000000001ce9d8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E30_nn_sf_sync_ConnectSharedLayerENS_2vi7fbshare17SharedLayerHandleE +0000000000091448 g DF .text 0000000000000004 nnosFinalizeInterruptEvent +00000000003e054c g DF .text 000000000000000c labs +00000000009475d0 w DO .data 0000000000000018 _ZTIN2nn7account3nas21IAuthorizationRequestE +00000000001b4490 g DF .text 000000000000006c _ZN2nn7friends33ShowMethodsOfSendingFriendRequestERKNS_7account3UidE +00000000009538b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEvEE +000000000015603c g DF .text 000000000000002c _ZN2nn4nifm20SubmitNetworkRequestEv +00000000001645fc g DF .text 0000000000000050 _ZN2nn5prepo6detail7msgpack20WriteSignedInteger64EPNS2_17OutputStreamParamEl +00000000002203f8 w DF .text 0000000000000004 _ZN2nn3hid6detail15NpadJoyLeftLifoD0Ev +0000000000951700 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000094e538 w DO .data 0000000000000058 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service24IApplicationProxyServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000016e230 g DF .text 0000000000000070 _ZN2nn8settings6detail35SetAutomaticApplicationDownloadFlagEb +000000000097d9e0 g DO .data 0000000000000018 _ZTIN10__cxxabiv117__pbase_type_infoE +00000000002208e4 g DF .text 0000000000000060 _ZN2nn3hid6detail21GetSixAxisSensorStateEPNS0_18SixAxisSensorStateERKNS0_19SixAxisSensorHandleE +0000000000822388 g DO .rodata 0000000000000004 _ZNSt3__18ios_base9boolalphaE +000000000021d6a0 g DF .text 00000000000000c8 _ZN2nn3hid6detail26IsUnsupportedButtonPressedEPbRKjRKNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +0000000000344020 w DF .text 0000000000000048 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE11__get_year4ERiRS4_S4_RjRKNS_5ctypeIwEE +00000000007d7660 w DO .rodata 0000000000000100 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000026398c g DF .text 0000000000000008 NvOsPhysicalMemMap +00000000000b7a10 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E38_nn_sf_sync_GetUserStateChangeNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +0000000000334358 w DF .text 0000000000000004 _ZNSt3__17collateIwED1Ev +00000000007c61f0 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__15ctypeIwED2Ev +000000000017b358 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf14ISslConnectionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6Object12AddReferenceEv +00000000001c97bc g DF .text 0000000000000080 _ZN2nn5swkbd13SetHeaderTextEPNS0_14KeyboardConfigEPKDs +000000000025d6ac g DF .text 0000000000000058 NvOsGetSysConfigString +00000000001a506c g DF .text 000000000000000c _ZN2nn5audio6server11SinkContextC2Ev +00000000002ce40c g DF .text 000000000000002c _ZN7android8String16C1EPKcm +00000000009594e0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3mii6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6ObjectE +000000000023c22c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E41_nn_sf_sync_GetIrsensorSharedMemoryHandleENS0_3OutINS0_12NativeHandleEvEENS_6applet20AppletResourceUserIdE +0000000000090b5c g DF .text 000000000000005c _ZN2nn2os20CreateTransferMemoryEPNS0_18TransferMemoryTypeEPvmNS0_16MemoryPermissionE +00000000000c9538 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_PopContextENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEE +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__117__widen_from_utf8ILm32EED1Ev +00000000001bc81c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetEyeRotateEv +00000000001ce4e4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_GetDisplayLogicalResolutionENS0_3OutIivEESH_m +0000000000978aa0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000b0d48 g DF .text 0000000000000118 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferI12sockaddr_in6EElPhmRKT_ +00000000001b8b78 g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw8GetBuildEv +000000000009266c g DF .text 0000000000000050 _ZN2nn2os6detail17MemoryHeapManager19FindFreeSpaceUnsafeEm +00000000001582ec g DF .text 0000000000000008 _ZN2nn4nifm6detail12HttpPostDataC2Ev +000000000016ce24 g DF .text 0000000000000070 _ZN2nn8settings6detail19GetEticketDeviceKeyEPNS0_7factory16Rsa2048DeviceKeyE +0000000000174f3c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E40_nn_sf_sync_SetInRepairProcessEnableFlagEb +00000000001d6a1c g DF .text 0000000000000020 _ZN2nn2vi6detail18SystemServiceProxy37FinalizeApplicationDisplayServiceImplEv +000000000018d118 g DF .text 0000000000000020 _ZN2nn5audio6common10EdgeMatrix17GetWorkBufferSizeEi +00000000001cb910 g DF .text 000000000000012c _ZN2nn5swkbd6detail18InlineKeyboardImpl8GetImageEPvm +00000000007cb650 w DO .rodata 000000000000002d _ZTSN2nn2am7service26ILibraryAppletSelfAccessorE +000000000018b954 g DF .text 0000000000000038 _ZNK2nn5audio12SplitterInfo19GetDestinationCountEv +00000000002c83a8 g DF .text 00000000000003e4 sync_merge +000000000018a0f8 g DF .text 00000000000000d0 _ZN2nn5audio6detail46FindResourceExclusionCheckerFromRegionInConfigEPv +0000000000978ae0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +00000000003e39e4 g DF .text 000000000000012c wmemmove +0000000000298868 g DF .text 0000000000000178 _ZN7android11IMemoryHeap11asInterfaceERKNS_2spINS_7IBinderEEE +0000000000081fb8 g DF .text 0000000000000054 nnmem_nlib_fd_getsize +00000000000c7254 w DF .text 000000000000015c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSG_ILm8ELm8ELl8EEEEEELm0ELm16ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEESR_j +00000000001d0604 w DF .text 0000000000000040 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_FillDetachedSharedFrameBufferColorENS_2vi7fbshare18SharedBufferHandleEliiiij +0000000000286d84 g DF .text 0000000000000018 NvRmGpuChannelCycleStatsAttachSnapshot +0000000000212fec g DF .text 0000000000000080 TYPESET_clear +00000000003d106c g DF .text 00000000000001d8 __sinl +0000000000155c44 g DF .text 00000000000000ac _ZN2nn4nifm34FinishHandlingNetworkRequestResultERKNS_6applet19LibraryAppletHandleE +0000000000395bd8 g DF .text 0000000000000074 __cxa_guard_abort +00000000003ab0f4 g DF .text 0000000000000004 __pthread_mutex_lock +000000000019d190 w DF .text 000000000000001c _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail12IAudioDeviceES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl15AudioDeviceImplEEESC_S6_E40_nn_sf_sync_GetActiveAudioDeviceNameAutoERKNS0_9OutBufferE +000000000081edd0 w DO .rodata 000000000000013b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3fgm2sf8ISessionENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001854e8 g DF .text 000000000000019c _ZN2nn5audio13ReadAuxBufferEPNS0_13AuxBufferInfoEPijS3_j +00000000003dfaf4 g DF .text 0000000000000084 vswscanf +00000000007ca630 w DO .rodata 000000000000014b _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IApplicationCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +000000000012484c g DF .text 0000000000000080 _ZN2nn7friends6detail20AsyncContextInternalD2Ev +0000000000272950 g DF .text 000000000000005c NvRmStreamPushReloc +0000000000027178 g DF .text 0000000000000628 _ZN2nn5image6detail4jpeg15jpeg_idct_16x16EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +000000000002c6bc g DF .text 0000000000000020 _ZN2nn5image6detail8CheckSoiEPKhm +00000000000ac94c g DF .text 0000000000000070 nnResolverSetspecificPrivate +000000000009bbc4 g DF .text 000000000000000c _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor13GetCopyHandleEi +00000000000bd0ac w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas29IOAuthProcedureForExternalNsaENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +00000000001d02ac w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_SetContentVisibilityEb +00000000002cbf88 g DF .text 0000000000000008 _ZNK7android6Region5mergeERKS0_ +00000000009aff98 w DO .bss 0000000000000040 _ZZN2nn4bcat6detail17ShimLibraryGlobal11GetInstanceEvE10s_Instance +00000000000bc00c w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas40IOAuthProcedureForNintendoAccountLinkageEE22_nn_sf_sync_GetRequestENS0_3OutINS5_10RequestUrlEvEENSS_INS5_11CallbackUriEvEE +00000000001aa434 g DF .text 0000000000000004 _ZN2nn5audio3dsp14ProcessCleanupEj +000000000036d994 g DF .text 00000000000002d0 _ZNSt3__16gslice6__initEm +00000000007b1550 w DO .rodata 0000000000000019 _ZTSN2nn2fs14IEventNotifierE +00000000008231e0 g DO .rodata 0000000000000022 _ZTSNSt3__17codecvtIwc11__mbstate_tEE +00000000003a80f8 g DF .text 000000000000000c _Exit +00000000000419d8 g DF .text 000000000000001c _ZN2nn4edid6detail14GetSignalLevelEh +00000000003e391c g DF .text 0000000000000024 wmemchr +00000000001a28bc g DF .text 0000000000000008 _ZN2nn5audio6server14EffectInfoBase14GetStateBufferEv +00000000001c9f4c g DF .text 0000000000000014 _ZN2nn5swkbd14InlineKeyboard11SetUtf8ModeEb +000000000006aff4 g DF .text 000000000000008c _ZN2nn2fs16SaveDataExporterC1EONS_2sf13SharedPointerINS_5fssrv2sf17ISaveDataExporterEEE +000000000018a464 g DF .text 0000000000000044 _ZN2nn5audio19GetDownMixParameterEPNS0_14DeviceSinkType16DownMixParameterEPKS1_ +00000000000ffc78 g DF .text 00000000000000a4 silk_stereo_encode_pred +00000000003671ec w DF .text 000000000000011c _ZNKSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7compareEmmRKS5_mm +0000000000156a54 g DF .text 0000000000000104 _ZN2nn4nifm11GetScanDataEPNS0_15AccessPointDataEPii +00000000001a8f00 g DF .text 0000000000000010 _ZNK2nn5audio3dsp20CommandListProcessor21GetRemainCommandCountEv +00000000001705ac g DF .text 0000000000000070 _ZN2nn8settings6detail18SetUsb30EnableFlagEb +000000000019a828 g DF .text 00000000000000c8 _ZN2nn5audio33ContainsFinalOutputRecorderBufferEPKNS0_19FinalOutputRecorderEPKNS0_25FinalOutputRecorderBufferE +0000000000216aac g DF .text 0000000000000070 _ZN2nn3hid6system6detail22GetFirmwareUpdateStateEPNS1_19FirmwareUpdateStateERKNS1_26FirmwareUpdateDeviceHandleE +00000000003c3854 g DF .text 0000000000000008 putenv +000000000008e6e0 g DF .text 0000000000000004 _ZN2nn2os30GetWritableHandleOfSystemEventEPKNS0_15SystemEventTypeE +00000000001505f4 g DF .text 0000000000000174 _ZN2nn4nifm6detail13RequestClientC2ENS0_17RequirementPresetENS_2os14EventClearModeE +00000000003c2560 g DF .text 0000000000000014 isalpha +000000000011a92c g DF .text 0000000000000068 _ZN2nn3err15ShowSystemErrorERKNS0_14SystemErrorArgE +00000000007c86f0 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003246ac g DF .text 0000000000000050 _ZNSt3__124__libcpp_debug_exceptionD2Ev +00000000001a28a4 g DF .text 0000000000000008 _ZNK2nn5audio6server14EffectInfoBase8GetMixIdEv +00000000001330f4 g DF .text 0000000000000060 _ZN2nn4htcs4BindEiPKNS0_12SockAddrHtcsE +00000000002707e8 g DF .text 0000000000000008 NvRmMemSetAllocationTagLabel +00000000002cbc5c g DF .text 000000000000000c _ZN7android6Region17boolean_operationEiRS0_RKS0_RKNS_4RectE +00000000000b5e9c w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_4baas22IManagerForApplicationEEEvi +0000000000183150 w DF .text 0000000000000194 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSD_ILm4ELm4ELl4EEEEEELm8ELm0ELb0EEESG_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSL_23InRawClientArgumentTypeILm4ELm4EvEESO_jPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000005681c w DF .text 0000000000000264 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000095bd98 w DO .data 0000000000000020 _ZTVN2nn3hid6detail11GestureLifoE +0000000000317d8c g DF .text 000000000000007c _ZN2nn3pcv17GetVoltageEnabledEPbNS0_11PowerDomainE +0000000000326310 g DF .text 0000000000000054 _ZNKSt16nested_exception14rethrow_nestedEv +0000000000343b58 w DF .text 000000000000005c _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE18__get_day_year_numERiRS4_S4_RjRKNS_5ctypeIwEE +0000000000a20738 g DO .bss 0000000000000008 _ZN2nn2la21g_LibraryAppletHandleE +0000000000362608 g DF .text 0000000000000060 _ZNSt11logic_erroraSERKS_ +0000000000227a64 g DF .text 0000000000000048 _ZN2nn3hid6detail33GetVibrationDevicePositionFromIdxENS0_19VibrationDeviceTypeENS1_22NpadVibrationDeviceIdxE +0000000000326558 g DF .text 0000000000000084 _ZNSt3__112future_errorC1ENS_10error_codeE +00000000007d79f0 w DO .rodata 000000000000010e _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000021347c g DF .text 00000000000004cc get_some_back +00000000002b3d0c g DF .text 000000000000006c _ZNK7android12ConsumerBase10dumpLockedERNS_7String8EPKc +0000000000954240 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000167180 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E39_nn_sf_sync_IsUserAgreementCheckEnabledENS0_3OutIbvEE +0000000000199690 g DF .text 0000000000000008 _ZN2nn5audio26GetAudioInBufferBufferSizeEPKNS0_13AudioInBufferE +000000000026c62c g DF .text 000000000000002c NvRmSyncCloseCtrlDev +000000000031a240 g DF .text 00000000000000e4 _ZN2nn3pwm16GetManagerByHipcEv +00000000002203dc w DF .text 0000000000000004 _ZN2nn3hid6detail15NpadFullKeyLifoD0Ev +00000000002582e0 g DF .text 0000000000000094 nvcecSetThreadName +000000000004cec0 g DF .text 00000000000000e4 _ZN2nn2fs6detail12FileAccessor5WriteElPKvmRKNS0_11WriteOptionE +000000000095c968 g DO .data 0000000000000028 _ZTVN2nn3hid15VibrationTargetE +0000000000079270 g DF .text 0000000000000160 nnmem_nlib_mq_send_until +00000000000cb85c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service19IApplicationCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000015d5cc g DF .text 000000000000005c _ZN2nn4pctl20IsRestrictionEnabledEv +000000000017ea04 g DF .text 0000000000000094 _ZN2nn4time22GetTimeZoneRuleVersionEPNS0_19TimeZoneRuleVersionE +000000000024953c g DF .text 0000000000000088 _ZN22nerd_gillette_internal5otete7jaimev226GetReverseSymmetricSegmentERKNS_15NumericalVectorIsLm2EEES5_ +00000000003ab090 g DF .text 0000000000000004 pthread_attr_setschedparam +00000000000adee8 g DF .text 000000000000000c _ZN2nn6socket8resolver11GetNameInfoEPK8sockaddrjPcmS5_miPKNS0_14ResolverOptionEm +0000000000948830 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000016f9e0 g DF .text 0000000000000070 _ZN2nn8settings6detail17GetSslCertificateEPNS0_7factory14SslCertificateE +00000000002860d8 g DF .text 0000000000000010 nvgr_set_video_timestamp +000000000017e258 g DF .text 0000000000000180 _ZN2nn4time20DateAndTimeToSecondsEiiiiii +00000000000d9690 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +00000000001bc860 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw9GetMouthYEv +000000000016e644 g DF .text 0000000000000070 _ZN2nn8settings6detail15GetProductModelEPi +0000000000298c6c g DF .text 0000000000000048 _ZTv0_n24_N7android12BnMemoryHeapD1Ev +000000000015269c w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +0000000000326a88 g DF .text 0000000000000180 _ZNSt3__117__assoc_sub_state28set_exception_at_thread_exitESt13exception_ptr +0000000000134cdc g DF .text 00000000000000b8 _ZN2nn4htcs6detail25virtual_socket_collection6SocketERi +0000000000395dbc g DF .text 0000000000000014 _ZNSt20bad_array_new_lengthC1Ev +000000000021462c g DF .text 0000000000000060 _ZN2nn3hid6detail20FinalizeAudioControlEv +0000000000138eac g DF .text 0000000000000024 _ZN2nn3nfc6client16GetUserInterfaceEv +000000000095cc70 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail14HidDebugServerEEEEEE13ServiceObjectE +0000000000254dec g DF .text 0000000000000084 _ZNK2nn3web21ShowSystemDataPageArg15PushToInChannelENS_6applet19LibraryAppletHandleE +0000000000121d14 g DF .text 000000000000004c _ZN2nn7friends12AsyncContext14GetSystemEventEPNS_2os11SystemEventE +000000000006cc04 g DF .text 0000000000000020 _ZN2nn2fs19MountSystemSaveDataEPKcNS0_15SaveDataSpaceIdEm +000000000031cbd4 w DF .text 0000000000000308 _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIhhEEPhEEbT0_S5_T_ +0000000000320494 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessImmEEPmEEjT0_S5_S5_S5_S5_T_ +0000000000952770 w DO .data 0000000000000018 _ZTIN2nn3nfp6detail13IDebugManagerE +000000000002a4a4 g DF .text 0000000000000014 _ZN2nn5image6detail4jpeg9jround_upEll +000000000016579c g DF .text 0000000000000010 _ZN2nn5prepo16SystemPlayReportC2Ev +00000000001916e0 g DF .text 00000000000000e4 _ZN2nn5audio35CreateAudioInManagerForAppletByHipcEv +00000000001b67e0 g DF .text 0000000000000010 _ZN2nn3mii6detail15BufferAllocator7AdvanceEm +00000000002d27c0 g DF .text 00000000000000b4 _ZN7android10VectorImpl8insertAtEPKvmm +0000000000093c4c g DF .text 0000000000000030 _ZN2nn2os6detail11VammManagerC1Ev +00000000000a1470 g DF .text 0000000000000034 _ZN2nn2sm17UnregisterProcessENS_2os9ProcessIdE +000000000018ba0c g DF .text 0000000000000008 _ZNK2nn5audio23SplitterDestinationData5GetIdEv +000000000002edac g DF .text 0000000000000008 _ZNK2nn5image11JpegEncoder25GetAnalyzedWorkBufferSizeEv +00000000001ecb28 g DF .text 000000000000105c Soften +0000000000155500 g DF .text 000000000000001c _ZN2nn4nifm20FinalizeAdminForTestEv +00000000001c53d0 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding7Ev +00000000000c52b0 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E52_nn_sf_sync_CreateSelfLibraryAppletCreatorForDevelopENS0_3OutINS0_13SharedPointerINS6_21ILibraryAppletCreatorEEEvEEm +0000000000234848 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E41_nn_sf_sync_AcquireNfcActivateEventHandleENS0_3OutINS0_12NativeHandleEvEEj +000000000004c79c w DF .text 0000000000000008 _ZN2nn2fs13MemoryStorage5FlushEv +000000000094bb40 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18ISystemAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000003df8b0 w DF .text 0000000000000078 __isoc99_vsscanf +0000000000316094 g DF .text 0000000000000004 nngpioSetDirection +000000000035564c g DF .text 000000000000000c _ZNKSt3__15ctypeIwE9do_narrowEwc +000000000022e098 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm7EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000003b9d48 g DF .text 0000000000000118 catanf +0000000000947480 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000034f2c4 w DF .text 0000000000000024 _ZNSt3__114codecvt_bynameIwc11__mbstate_tED0Ev +00000000003b9e60 g DF .text 0000000000000030 catanh +00000000002c968c g DF .text 0000000000000110 _ZN7android13GraphicBufferC1EjjijjP13native_handleb +00000000000badf0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE24_nn_sf_sync_GetSessionIdENS0_3OutINSK_4UuidEvEE +00000000007a6b30 g DO .rodata 00000000000001c8 _ZN2nn5image6detail4jpeg11jpeg_aritabE +00000000003b9f10 g DF .text 0000000000000218 catanl +000000000016ec54 g DF .text 0000000000000070 _ZN2nn8settings6detail16GetDebugModeFlagEPb +000000000023b174 g DF .text 0000000000000048 _ZN2nn8irsensor6system28RegisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdEb +00000000000a18c8 g DF .text 0000000000000004 _ZN2nn6socket5CloseEi +0000000000151080 g DF .text 0000000000000108 _ZN2nn4nifm6detail17ScanRequestClientC1ENS_2os14EventClearModeE +0000000000234a18 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E33_nn_sf_sync_GetUniquePadsFromNpadENS0_3OutIlvEERKNS0_8OutArrayINS5_6system11UniquePadIdEEEj +00000000000c6e48 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_SetControllerFirmwareUpdateSectionEb +00000000001931b0 w DF .text 00000000000000f4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESL_j +0000000000089fbc g DF .text 0000000000000138 _ZN2nn3mem17StandardAllocator10ReallocateEPvm +000000000011c18c g DF .text 0000000000000098 _ZN2nn3err6detail22ErrorMessageDataExistsENS0_9ErrorCodeE +0000000000950620 g DO .data 0000000000000018 _ZTIN2nn5codec11OpusEncoderE +00000000001b8c88 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw18GetFacelineWrinkleEv +0000000000823ab0 w DO .rodata 000000000000004d _ZTSNSt3__115time_put_bynameIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEEE +00000000000ba25c w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E36_nn_sf_sync_AuthenticateServiceAsyncENS0_3OutINS0_13SharedPointerINSJ_13IAsyncContextEEEvEE +000000000006ceb8 g DF .text 00000000000000ec _ZN2nn3htc28GetEnvironmentVariableLengthEPmPKc +00000000000914b0 g DF .text 0000000000000004 nnosFinalizeMultiWaitHolder +000000000004a958 g DF .text 0000000000000044 _ZN2nn2fs11RomPathTool10PathParser10InitializeEPKc +00000000003966a0 g DF .text 000000000000000c _ZNKSt13bad_exception4whatEv +0000000000138c98 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3nfc6detail5IUserEED2Ev +00000000007eab90 w DO .rodata 0000000000000027 _ZTSN2nn5audio6detail18IAudioDebugManagerE +00000000001ce4a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetZOrderCountMinENS0_3OutIlvEEm +00000000002a6464 g DF .text 0000000000000028 thread_store_get +00000000003a7f50 g DF .text 0000000000000008 telldir +0000000000360de0 g DF .text 000000000000007c _ZNSt3__119__shared_weak_count16__release_sharedEv +0000000000118928 g DF .text 0000000000000008 _ZNK2nn5codec22OpusMultiStreamDecoder19GetTotalStreamCountEv +0000000000250890 g DF .text 0000000000000008 _ZN2nn3ldn6detail20ReverseByteOrderImplENS0_11Ipv4AddressE +00000000000c5f04 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetCradleStatusENS0_3OutIhvEE +0000000000113abc g DF .text 000000000000005c get_right_channel +00000000007dbf40 w DO .rodata 000000000000001f _ZTSN2nn3nfc6detail12IUserManagerE +0000000000189b40 g DF .text 0000000000000010 _ZN2nn5audio15PerformanceInfoC1Ev +000000000009bc5c g DF .text 0000000000000050 _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor7SetSendEimmj +000000000009344c g DF .text 0000000000000048 _ZNK2nn2os6detail26MultiWaitHolderOfSemaphore10IsSignaledEv +000000000008f59c g DF .text 00000000000000b0 _ZN2nn2os15AcquireReadLockEPNS0_20ReaderWriterLockTypeE +0000000000286340 g DF .text 0000000000000040 nvgr_put_read_fence +00000000000d49f0 g DF .text 0000000000000058 _ZN2nn6applet26SetDesirableKeyboardLayoutEj +0000000000227f10 g DF .text 0000000000000070 _ZN2nn3hid6detail24SetVibrationMasterVolumeEf +000000000094c538 w DO .data 0000000000000120 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18IDisplayControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003a92cc w DF .text 0000000000000004 fstat64 +00000000000bf15c g DF .text 0000000000000038 _ZNK2nn7account41CachedNintendoAccountInfoForSystemService11GetLanguageEPm +000000000019e23c g DF .text 0000000000000140 _ZN2nn5audio6server13CommandBuffer26GenerateDelayEffectCommandEiPKNS0_14DelayParameterEPvbmj +000000000009f148 w DF .text 0000000000000024 _ZNK2nn2sf4cmif6server22CmifDomainServerObject23CmifDomainServerMessage24OverwriteClientProcessIdEPm +00000000001ba1f0 g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw12SetMoleScaleEi +00000000001caca0 g DF .text 0000000000000024 _ZN2nn5swkbd6detail18InlineKeyboardImpl21SetDisableUSBKeyboardEb +0000000000805250 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi83EE4MaskE +00000000001c6648 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E16_nn_sf_sync_Get3ENS0_3OutIivEERKNS0_8OutArrayINS5_9StoreDataEEEi +000000000023cdd0 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm1ELl4EEEEEELm16ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm4ELm1EvEEj +00000000000b5f50 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas22IManagerForApplicationENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +000000000019f338 g DF .text 0000000000000018 _ZN2nn5audio6server16CommandGenerator18GetDestinationDataEii +0000000000117adc g DF .text 00000000000001c0 _ZN2nn5codec30HardwareOpusMultiStreamDecoder10InitializeEiiiiPKhPvm +000000000024fc28 g DF .text 0000000000000050 _ZN2nn3ldn14GetNetworkInfoEPNS0_11NetworkInfoEPNS0_16NodeLatestUpdateEi +00000000001ce940 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_SetDisplayCmuLumaEmf +000000000095d978 g DO .data 0000000000000080 _ZTVN2nn8irsensor6detail15IrSensorSessionE +0000000000228dc8 g DF .text 0000000000000018 _ZN2nn3hid5debug24IsFirmwareUpdatingDeviceEPbNS0_6system11UniquePadIdE +00000000007cf5c0 w DO .rodata 0000000000000119 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001a0b5c g DF .text 0000000000000008 _ZN2nn5audio6server30CommandProcessingTimeEstimatorC2Eii +00000000001c678c w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_ImportERKNS0_8InBufferE +00000000007bbb90 g DO .rodata 0000000000000029 _ZTSN2nn7account6detail18OAuthProcedureBaseE +00000000000bf220 g DF .text 0000000000000008 _ZN2nn7account33ExternalNetworkServiceAccountInfoC1EPNS0_4baas18IGuestLoginRequestE +00000000000e728c g DF .text 0000000000000230 _celt_lpc +000000000003bf50 g DF .text 00000000000000a0 _ZN2nn4util8BitArray3XorEPS1_RKS1_S4_ +00000000002b4e7c g DF .text 000000000000003c _ZTv0_n24_N7android19IGraphicBufferAllocD1Ev +000000000035432c g DF .text 0000000000000124 _ZNKSt3__16localeeqERKS0_ +00000000000b5a70 w DF .text 000000000000016c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm1ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm16ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm1EEENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +00000000000070fc g DF .text 000000000000046c _ZN2nn6crypto6detail10Sha256Impl6UpdateEPKvm +00000000001684b4 g DF .text 0000000000000050 _ZN2nn8settings6system22GetPrimaryAlbumStorageEv +000000000017b108 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_RemoveCrlEm +000000000009d83c w DF .text 000000000000002c _ZNK2nn2sf4hipc6server17HipcServerMessage24OverwriteClientProcessIdEPm +000000000009eec0 w DF .text 0000000000000194 _ZN2nn2sf4cmif6server22CmifDomainServerObject18ProcessMessageImplEPNS2_17CmifServerMessageEPNS2_16CmifServerDomainENS0_6detail14PointerAndSizeE +00000000000bcb24 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm16ELm4ELl0EEEEEELm16ELm0ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000bcdc0 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4http15IOAuthProcedureENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +00000000003cd210 g DF .text 000000000000000c nan +000000000003af6c g DF .text 000000000000000c nnutilZlib_zlibVersion +00000000001b44fc g DF .text 000000000000006c _ZN2nn7friends23StartFacedFriendRequestERKNS_7account3UidE +0000000000047510 g DF .text 0000000000000018 _ZN2nn2fs24HierarchicalRomFileTable30QueryDirectoryEntryStorageSizeEj +00000000000b3e68 g DF .text 0000000000000060 _ZN2nn7account26LoadSaveDataThumbnailImageEPvmRKNS0_3UidERKNS_13ApplicationIdE +00000000001b666c g DF .text 0000000000000014 _ZN2nn3mii15GetWrinkleColorENS0_9GammaTypeE +00000000009480c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +000000000097bb98 w DO .data 0000000000000010 _ZTINSt3__110__time_getE +00000000002211c8 g DF .text 00000000000000cc _ZN2nn3hid6detail21InitializeSleepButtonEv +00000000002c5e28 g DF .text 0000000000000020 _ZN7android21SurfaceComposerClient13getLayerStateERKNS_2spINS_7IBinderEEERNS_13layer_state_tE +00000000001c3278 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw8SetBuildEi +00000000003c9b84 g DF .text 0000000000000080 floorf +0000000000135ff8 g DF .text 0000000000000018 _ZN2nn2lm6detail20LogPacketTransmitter11PushTextLogEPKcm +00000000001bf0e8 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetFavoriteEv +0000000000329260 w DF .text 0000000000000008 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE4syncEv +000000000017ee10 g DF .text 0000000000000020 _ZNK2nn4time13ClockSnapshot48GetStandardUserSystemClockCalendarAdditionalInfoEv +000000000018a40c g DF .text 0000000000000058 _ZN2nn5audio19SetDownMixParameterEPNS0_14DeviceSinkTypeEPKNS1_16DownMixParameterE +000000000097d4d8 g DO .data 0000000000000008 __cxa_terminate_handler +00000000003c9c04 g DF .text 00000000000000e8 floorl +0000000000046b24 g DF .text 0000000000000088 _ZN2nn2fs6detail15OutputAccessLogENS_6ResultENS_2os4TickES4_PKcPKvS6_z +000000000094faa0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc12IBcatServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +0000000000184c08 g DF .text 000000000000000c _ZN2nn5audio21SetAudioOutBufferInfoEPNS0_14AudioOutBufferEPvmm +00000000003de0b4 g DF .text 0000000000000010 getwchar +000000000095c7c8 g DO .data 0000000000000028 _ZTVN2nn3hid13VibrationNodeE +00000000002306b8 g DF .text 0000000000000064 _ZN2nn3hid13GetXpadStatesEPNS0_14BasicXpadStateEiRKNS0_11BasicXpadIdE +00000000002c8ea4 g DF .text 0000000000000014 _ZNK7android5Fence3dupEv +0000000000314cd8 g DF .text 0000000000000078 _ZN2nn4gpio14InitializeWithENS_2sf13SharedPointerINS0_8IManagerEEE +0000000000154da0 w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi25ELm194EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +00000000003e3940 g DF .text 0000000000000030 wmemcmp +00000000001af934 g DF .text 000000000000004c _ZN2nn5audio3dsp13ApplyMixRamp1EPiPKiiii +00000000001cd6dc w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_GetManagerDisplayServiceENS0_3OutINS0_13SharedPointerINS6_22IManagerDisplayServiceEEEvEE +0000000000234b88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E36_nn_sf_sync_GetVibrationMasterVolumeENS0_3OutIfvEE +00000000003c3328 w DF .text 0000000000000244 scandir64 +00000000000bd6bc g DF .text 0000000000000034 _ZN2nn7account12AsyncContextC1EOS1_ +000000000023f658 g DF .text 000000000000007c _ZN22nerd_gillette_internal5otete7jaimev219DecodeSilhouetteROKEPNS0_11OteteFloat2ERmmPKhmPm +0000000000943008 g DO .data 0000000000000028 _ZTVN2nn2fs6detail26EventNotifierObjectAdapterE +00000000007e2f80 w DO .rodata 0000000000000105 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000000cb2b0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IHomeMenuFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_RequestToGetForegroundEv +000000000021e8c4 g DF .text 0000000000000098 _ZN2nn3hid6detail21GetNpadSystemExtStyleEPNS0_6system22NpadSystemExtMainStyleEPNS2_21NpadSystemExtSubStyleERKj +00000000000418ec g DF .text 0000000000000004 _ZN2nn4edid9PrintEdidEPKNS0_4EdidE +00000000000ccf5c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6grcsrv17IGameMovieTrimmerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6Object12AddReferenceEv +00000000001411c0 g DF .text 000000000000006c _ZN2nn3ngc15ProfanityFilter8FinalizeEv +00000000003dd80c w DF .text 000000000000008c ftello +0000000000823f20 w DO .rodata 000000000000002b _ZTSNSt3__114codecvt_bynameIDsc11__mbstate_tEE +000000000008e42c g DF .text 0000000000000008 _ZN2nn2os21TryWaitInterruptEventEPNS0_18InterruptEventTypeE +00000000001cdb8c w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +0000000000979158 g DO .data 0000000000000028 _ZTVSt12bad_any_cast +0000000000129a78 w DF .text 000000000000021c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl104EEENSG_ILm64ELm1ELl0EEENSG_ILm33ELm1ELl64EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm120ELm0ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENST_ILm64ELm1EvEENST_ILm33ELm1EvEENS2_24BufferClientArgumentTypeEj +0000000000169e24 g DF .text 0000000000000044 _ZN2nn8settings6system24SetPtmFuelGaugeParameterERKNS1_21PtmFuelGaugeParameterE +000000000039f74c g DF .text 0000000000000068 __ltsf2 +00000000001bcda0 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw14SetMouthAspectEi +000000000014c8d0 g DF .text 0000000000000134 _ZNK2nn3ngc6detail9SbvSelect6ExportEPNS1_12BinaryWriterE +00000000000c12f4 g DF .text 0000000000000038 _ZN2nn7account42NintendoAccountAuthorizationRequestContextD1Ev +000000000094ffd0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001959e4 w DF .text 00000000000001e4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_24OutRawClientArgumentTypeILm4ELm4EEEj +00000000002b43a4 g DF .text 0000000000000098 _ZN7android18GraphicBufferAllocC1Ev +00000000000fe734 g DF .text 0000000000000424 silk_shell_decoder +000000000018fc48 g DF .text 0000000000000030 _ZN2nn5audio6server16UpsamplerManager4FreeEPNS0_13UpsamplerInfoE +00000000001ce638 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_OpenIndirectLayerENS0_3OutIlvEERKNS0_9OutBufferEmNS_6applet20AppletResourceUserIdE +000000000097b1c8 g DO .data 0000000000000060 _ZTVNSt3__114__codecvt_utf8IDsEE +00000000000d4e58 g DF .text 000000000000000c _ZN2nn4bcat6detail25DeliveryCacheProgressImpl18NotifyStartConnectEv +00000000001561a8 g DF .text 000000000000002c _ZN2nn4nifm33GetGlobalNetworkConnectionPointerEv +000000000032402c g DF .text 000000000000003c _ZNSt3__16chrono12system_clock3nowEv +00000000003336e8 g DF .text 0000000000000490 _ZNSt3__18ios_base4InitC1Ev +0000000000155868 g DF .text 0000000000000054 _ZN2nn4nifm31SetEthernetCommunicationEnabledEb +0000000000231304 w DF .text 000000000000011c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm28ELm4ELl4EEEEEELm32ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSK_ILm28ELm4EvEEj +00000000001c8da4 g DF .text 0000000000000058 _ZN2nn2pl8IsVrModeEv +00000000001d6f20 g DF .text 0000000000000074 _ZN2nn2vi6buffer14PrepareSurfaceEP14NvRmSurfaceRecRKNS1_10BufferInfoEb +00000000001f86d8 g DF .text 0000000000000038 fnt_RoundToGrid +00000000000af944 g DF .text 0000000000000150 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferI8addrinfoEElPhmRKT_ +000000000097b7d0 g DO .data 0000000000000018 _ZTINSt3__114collate_bynameIwEE +0000000000234f9c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E26_nn_sf_sync_IsUsbConnectedENS0_3OutIbvEENS5_6system11UniquePadIdE +00000000000a197c g DF .text 0000000000000008 _ZN2nn6socket8InetNtoaE7in_addr +000000000016a2b8 g DF .text 0000000000000058 _ZN2nn8settings5fwdbg30AdvanceSettingsItemKeyIteratorEPNS1_23SettingsItemKeyIteratorE +00000000007f61f8 g DO .rodata 0000000000000018 _ZN2nn3mii6detail13EyeWhiteColorE +0000000000199554 g DF .text 00000000000000f4 _ZN2nn5audio15GetAudioInStateEPKNS0_7AudioInE +00000000007b8680 g DO .rodata 0000000000000028 _ZTSN2nn2os6detail22MultiWaitHolderOfEventE +00000000000a1bf8 g DF .text 000000000000000c nnsocketGetHostByAddr +00000000001a0cec g DF .text 0000000000000028 _ZN2nn5audio6server30CommandProcessingTimeEstimator8EstimateERKNS0_25DepopForMixBuffersCommandE +0000000000362dd8 w DF .text 0000000000000030 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEaSEc +000000000009e88c w DF .text 00000000000000c0 _ZN2nn2sf4hipc6server18Hipc2ServerMessage27BeginPreparingForErrorReplyEPNS0_6detail14PointerAndSizeEm +000000000094c1b0 w DO .data 0000000000000018 _ZTIN2nn2am7service17IWindowControllerE +00000000000c6f5c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_ApproveToDisplayEv +00000000001187a8 g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder13GetCodingModeEv +00000000001cf66c w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl0EEENSB_ILm16ELm4ELl8EEEEEELm24ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_ILm16ELm4EvEEj +0000000000395d88 g DF .text 0000000000000004 _ZNSt9bad_allocD1Ev +000000000011bab0 g DF .text 0000000000000004 _ZNK2nn3err14SystemErrorArg15GetStartupParamEv +0000000000227260 g DF .text 0000000000000070 _ZN2nn3hid6detail45IsUsbFullKeyControllerConnectedForApplicationEPbRKj +00000000002372cc g DF .text 000000000000008c _ZN2nn8irsensor6detail27GetClusteringProcessorStateEPNS0_24ClusteringProcessorStateERKNS0_14IrCameraHandleE +0000000000942d28 w DO .data 0000000000000050 _ZTVN2nn2fs13MemoryStorageE +000000000094cbb0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service15IAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001cb554 g DF .text 0000000000000038 _ZN2nn5swkbd6detail18InlineKeyboardImpl18CalcDecidedCancel_ENS_6applet13StorageHandleEm +0000000000093d1c g DF .text 0000000000000078 _ZN2nn2os6detail11VammManager19InitializeIfEnabledEv +00000000000d9770 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000000f157c g DF .text 0000000000000058 silk_LPC_inverse_pred_gain_Q24 +0000000000152b7c w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutHandleArgumentInfoILi0ELi1EEENSG_ILi1ELi1EEEEEELm0ELm0ELb0EEESJ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutHandleClientArgumentTypeESQ_j +00000000001c9c44 g DF .text 0000000000000084 _ZN2nn5swkbd15SetUserWordListEPNS0_15ShowKeyboardArgEPKNS0_8UserWordEi +000000000009131c g DF .text 0000000000000004 nnosSetThreadName +00000000002c5e64 g DF .text 000000000000003c _ZN7android21SurfaceComposerClient13createDisplayERKNS_7String8Eb +00000000000bcdb8 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4http15IOAuthProcedureENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +00000000003c275c w DF .text 0000000000000030 iswalnum_l +000000000011b004 g DF .text 00000000000000f4 _ZN2nn3err23ShowNetworkServiceErrorENS0_9ErrorCodeE +000000000023b320 g DF .text 0000000000000130 _ZN2nn8irsensor48GetHandAnalysisSilhouetteStateWithFullFrameShapeEPNS0_45HandAnalysisSilhouetteStateWithFullFrameShapeEPiilRKNS0_14IrCameraHandleE +0000000000165eb8 g DF .text 0000000000000298 _ZN2nn5prepo6detail12VerifyReportEPKhm +00000000007cf7f0 w DO .rodata 0000000000000111 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +000000000036caac g DF .text 0000000000000158 _ZNSt3__112system_errorC1EiRKNS_14error_categoryEPKc +000000000009c7cc g DF .text 0000000000000174 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase29ProcessInvokeRequestWithDeferEPNS_2os19MultiWaitHolderTypeE +000000000094ea60 w DO .data 0000000000000018 _ZTIN2nn3apm8ISessionE +000000000003026c g DF .text 0000000000000028 _ZNK2nn5image13ExifExtractor16ExtractMakerNoteEPm +000000000017a4ac g DF .text 000000000000005c _ZN2nn3ssl10InitializeEj +000000000018af68 g DF .text 00000000000000ac _ZN2nn5audio19SplitterInfoManagerC1Ev +00000000000b68e8 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas21IAuthorizationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +00000000000d3a50 g DF .text 00000000000000dc _ZN2nn6applet16PushToOutChannelENS0_23LibraryAppletSelfHandleENS0_13StorageHandleE +000000000023498c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E45_nn_sf_sync_DisableAssigningSingleOnSlSrPressENS_6applet20AppletResourceUserIdE +0000000000150554 g DF .text 0000000000000048 _ZN2nn4nifm6detail29TemporaryNetworkProfileClient6UpdateERKNS0_18NetworkProfileDataE +00000000000c9188 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_GetResultEv +0000000000091174 g DF .text 0000000000000004 nnosNotifyDebugger +000000000009a054 g DF .text 0000000000000014 _ZN2nn2sf33ScopedCurrentMemoryResourceSetterD2Ev +0000000000805630 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi114EE4MaskE +000000000019f000 g DF .text 0000000000000050 _ZN2nn5audio6server12DetailAspectD0Ev +000000000002e628 g DF .text 00000000000000dc _ZN2nn5image11JpegDecoder7AnalyzeEv +000000000017a454 g DF .text 0000000000000058 _ZN2nn3ssl10InitializeEv +00000000001654c0 g DF .text 0000000000000020 _ZN2nn5prepo10PlayReport3AddEPKcS3_ +00000000000c0c48 g DF .text 00000000000000a8 _ZN2nn7account34NetworkServiceAccountAdministrator44CreateProcedureToLinkNnidWithNintendoAccountEPNS0_6detail24SimpleOAuthProcedureBaseE +00000000001b95bc g DF .text 0000000000000044 _ZN2nn3mii6detail11CoreDataRaw9SetGenderEi +000000000022a0e0 g DF .text 000000000000000c _ZNK2nn3hid15KeyCodeComposer21GetRomajiKatakanaModeEv +000000000022f580 g DF .text 00000000000000bc _ZN2nn3hid13VibrationNode15SetModulationToEPKS1_RKNS0_19VibrationModulationE +000000000029f8c0 g DF .text 0000000000000080 _ZN7android6Parcel22writeDupFileDescriptorEi +00000000002161d4 g DF .text 0000000000000070 _ZN2nn3hid6detail25SetDebugPadAutoPilotStateERKNS0_5debug22DebugPadAutoPilotStateE +000000000039f4b0 g DF .text 0000000000000068 __ltdf2 +0000000000176000 w DF .text 0000000000000210 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi2ELi6ELm0EEENSD_ILi0ELi25ELm72EEENSD_ILi1ELi25ELm72EEEEEELm0ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSM_24BufferClientArgumentTypeESP_SP_j +0000000000315314 g DF .text 0000000000000058 _ZN2nn4gpio18GetInterruptStatusEPNS0_14GpioPadSessionE +0000000000187234 g DF .text 000000000000000c _ZN2nn5audio16GetAuxSampleRateEPKNS0_7AuxTypeE +00000000003dcc30 w DF .text 0000000000000178 fgets_unlocked +00000000000c6294 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000953a60 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_EE +0000000000804db0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi46EE4MaskE +000000000009a274 g DF .text 0000000000000068 _ZN2nn2sf4cmif6server23CmifServerDomainManager14EntryAllocatorD2Ev +00000000000c132c g DF .text 00000000000000f8 _ZN2nn7account42NintendoAccountAuthorizationRequestContextaSEOS1_ +0000000000225480 w DF .text 0000000000000224 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm13EEEEEiPT_i +0000000000030fd0 g DF .text 0000000000000024 nnutilZlib_deflateInit_ +000000000094c2f0 w DO .data 0000000000000018 _ZTIN2nn2am7service7IWindowE +00000000007c27b0 w DO .rodata 0000000000000160 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000007c0c50 w DO .rodata 00000000000001ae _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas28IFloatingRegistrationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000003e3970 g DF .text 0000000000000074 wmemcpy +0000000000073e3c g DF .text 00000000000005b4 nnmem_nlib_memcspn +00000000007cad30 w DO .rodata 00000000000000fc _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service19ILibraryAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000026f5a0 g DF .text 0000000000000034 NvRmMemHandleCreate +000000000018d220 g DF .text 0000000000000008 _ZNK2nn5audio6common10EdgeMatrix12GetNodeCountEv +00000000001aa460 g DF .text 0000000000000004 _ZN2nn5audio3dsp14SessionSuspendENS0_19AppletVolumeManager11SessionTypeEi +00000000001222e4 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest12GetRequestIdEv +00000000002a414c g DF .text 0000000000000050 _ZN7android14IPCThreadState16threadDestructorEPv +0000000000365144 w DF .text 000000000000008c _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6__initEPKcmm +0000000000950388 g DO .data 0000000000000018 net +000000000000aad0 g DF .text 00000000000000b4 _ZN2nn5image6detail4jpeg19jpeg_start_compressEPNS2_20jpeg_compress_structEb +000000000094dd50 w DO .data 0000000000000018 _ZTIN2nn6grcsrv17IGameMovieTrimmerE +0000000000942458 g DO .data 0000000000000010 _ZTIN2nn5image11JpegEncoderE +000000000006aebc g DF .text 0000000000000048 _ZN2nn2fs30SaveDataTransferSizeCalculator23QuerySaveDataExportSizeEPKNS0_12SaveDataInfoEj +00000000000a2624 g DF .text 000000000000005c _ZN2nn6socket6detail7RecvMsgEiP6msghdri +00000000000c14c8 g DF .text 000000000000009c _ZN2nn7account42NintendoAccountAuthorizationRequestContext6InvokeEv +00000000001a271c g DF .text 000000000000009c _ZN2nn5audio6server14EffectInfoBaseC2Ev +0000000000234be8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E30_nn_sf_sync_EnableHandheldHidsEv +00000000003bef58 g DF .text 0000000000000080 __crypt_sha256 +00000000002a02b4 g DF .text 0000000000000084 _ZN7android6Parcel16writeNoExceptionEv +000000000014bb94 g DF .text 0000000000000064 _ZN2nn3ngc6detail7SbvRank16ReleaseAllocatorEv +00000000003461f8 w DF .text 0000000000000310 _ZNKSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE3putES4_RNS_8ios_baseEcPK2tmPKcSC_ +00000000001bc078 g DF .text 000000000000007c _ZNK2nn3mii6detail12StoreDataRaw7IsValidEv +0000000000160884 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E49_nn_sf_sync_AddToFreeCommunicationApplicationListENS_3ncm13ApplicationIdE +0000000000045650 g DF .text 0000000000000004 _ZN2nn4diag13GetModulePathEPcmm +000000000002a680 g DF .text 0000000000000100 _ZN2nn5image6detail4jpeg16jinit_memory_mgrEPNS2_18jpeg_common_structE +000000000022bf88 g DF .text 0000000000000044 _ZN2nn3hid30SetNpadJoyAssignmentModeSingleERKj +000000000014b97c g DF .text 000000000000011c _ZN2nn3ngc6detail11BitVector326ImportEPNS1_12BinaryReaderE +000000000002f68c g DF .text 0000000000000020 _ZN2nn5image11ExifBuilder12SetThumbnailEPKvm +0000000000a699b0 g DO .bss 0000000000000008 _ZN7android9SingletonINS_19GraphicBufferMapperEE9sInstanceE +0000000000952430 w DO .data 0000000000000018 _ZTIN2nn3nfc6detail12IUserManagerE +00000000001d75b0 g DF .text 000000000000001c _ZN2nn6fontll6detail18AcquireUint16ValueEPPKh +00000000002540e0 g DF .text 00000000000000a8 _ZN2nn3web36ShowOfflineHtmlPageArgWithPlayReportC1EPKc +000000000039cae4 g DF .text 0000000000000060 _Unwind_FindEnclosingFunction +00000000001583f0 g DF .text 000000000000006c _ZN2nn4nifm6detail12HttpPostData9DecodeAddEPKcNS1_6Base644ModeE +00000000002393e8 g DF .text 0000000000000198 _ZN2nn8irsensor6detail7Session8ActivateERKNS0_21IrSensorFunctionLevelE +00000000000939a0 g DF .text 0000000000000008 _ZNK2nn2os6detail29MultiWaitHolderOfNativeHandle10IsSignaledEv +00000000000c70f8 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000097bc10 w DO .data 0000000000000018 _ZTINSt3__118__time_get_storageIwEE +00000000000ac7a8 g DF .text 0000000000000008 _ZN2nn6socket8resolver3tls8FinalizeEv +0000000000160da0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E62_nn_sf_sync_DeleteFromFreeCommunicationApplicationListForDebugENS_3ncm13ApplicationIdE +000000000018cea8 g DF .text 0000000000000094 _ZN2nn5audio16VoiceInfoManager37UpdateVoiceChannelResourceInParameterEPNS0_20VoiceChannelResource11InParameterE +000000000009bbb8 g DF .text 000000000000000c _ZN2nn2sf4hipc6detail25HipcMessageBufferAccessor13SetCopyHandleEij +00000000007e9220 g DO .rodata 0000000000000008 _ZN2nn5audio25FinalOutputRecorderBuffer15SizeGranularityE +0000000000346f3c w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb0EE13do_neg_formatEv +00000000003d25e8 g DF .text 00000000000000a8 c16rtomb +00000000002547b4 g DF .text 0000000000000060 _ZN2nn3web38ShowApplicationLegalInformationPageArgC1ERKNS_13ApplicationIdEPKc +0000000000269b88 g DF .text 0000000000000104 NvRmSurfaceComputeOffset +0000000000099828 g DF .text 00000000000000d0 _ZN2nn2ro6detail8RoModule15RestoreFunctionEm +00000000002ce998 g DF .text 0000000000000078 _ZNK7android8String1610startsWithERKS0_ +000000000003c608 w DF .text 0000000000000028 _ZN2nn4util6detail13ZlibAllocator8AllocateEPvjj +00000000000cd8d0 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE32_nn_sf_sync_GetCommonStateGetterENS0_3OutINS0_13SharedPointerINS6_18ICommonStateGetterEEEvEE +0000000000199674 g DF .text 000000000000000c _ZN2nn5audio20SetAudioInBufferInfoEPNS0_13AudioInBufferEPvmm +000000000029be08 g DF .text 00000000000000b4 _ZN7android12MemoryDealerD2Ev +0000000000234c94 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E32_nn_sf_sync_GetRegisteredDevicesENS0_3OutIlvEERKNS0_8OutArrayINS5_6system16RegisteredDeviceEEE +00000000007cb6f0 w DO .rodata 0000000000000145 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6grcsrv17IGameMovieTrimmerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6ObjectE +000000000095bec0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail35AnalogStickCalibrationStateImplLifoE +0000000000178d70 g DF .text 0000000000000020 _ZN2nn3ssl10Connection11DoHandshakeEPjS2_ +000000000095e180 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail30IUserLocalCommunicationServiceE +00000000001bf928 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw7GetEyeXEv +00000000000cc4e0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E32_nn_sf_sync_GetLibraryAppletInfoENS0_3OutINS6_17LibraryAppletInfoEvEE +0000000000136220 g DF .text 00000000000000c0 _ZN2nn2lm6detail24LogPacketTransmitterBase4PushEPKvm +00000000002a6e34 g DF .text 0000000000000724 _ZN7android23BnGraphicBufferConsumer10onTransactEjRKNS_6ParcelEPS1_j +00000000002bdc64 g DF .text 0000000000000008 _ZN7android22ISurfaceComposerClientD2Ev +0000000000292190 g DF .text 0000000000000008 NvWsiGetNativeDisplay +000000000018d23c g DF .text 0000000000000010 _ZN2nn5audio6common10NodeStates5Stack5ResetEPimi +0000000000184a74 g DF .text 00000000000000a8 _ZN2nn5audio16ParseAdpcmHeaderEPNS0_15AdpcmHeaderInfoEPKvm +00000000001d8ce8 g DF .text 0000000000000160 _ZN2nn6fontll6detail15PickPaltXValuesEPiPNS0_15OtfKerningTableEPKvttt +000000000097b088 g DO .data 0000000000000060 _ZTVNSt3__117__widen_from_utf8ILm32EEE +000000000009082c g DF .text 0000000000000004 _ZN2nn2os19SetMemoryPermissionEmmNS0_16MemoryPermissionE +0000000000003a9c g DF .text 00000000000002f8 _ZN2nn6crypto6detail8p256_addEPNS1_10p256_pointEPKS2_S5_PKNS1_10p256_curveE +00000000000412a8 g DF .text 0000000000000008 _ZN2nn4edid16IsAudioSupportedEPKNS0_4EdidE +000000000009cb7c g DF .text 00000000000000b8 _ZN2nn2sf4hipc6server6detail29HipcAllInOneServerManagerBase22WaitAndProcessAutoImplEv +00000000000b1f08 g DF .text 0000000000000078 _ZN2nn7account40ShowLicenseRequirementsForNetworkServiceERKNS0_10UserHandleERKNS_3err9ErrorCodeE +000000000015e47c g DF .text 0000000000000050 _ZN2nn4pctl13DeletePairingEv +00000000001cd804 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E24_nn_sf_sync_ListDisplaysENS0_3OutIlvEERKNS0_8OutArrayINS_2vi11DisplayInfoEEE +0000000000954f30 w DO .data 0000000000000018 _ZTIN2nn8settings24ISettingsItemKeyIteratorE +000000000035aea4 g DF .text 0000000000000078 _ZNSt3__115numpunct_bynameIwEC2EPKcm +000000000017ee64 g DF .text 0000000000000020 _ZNK2nn4time13ClockSnapshot51GetStandardNetworkSystemClockCalendarAdditionalInfoEv +000000000095dbd0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14IrSensorServerEEEEEE13ServiceObjectESJ_E6ObjectE +000000000036de90 g DF .text 0000000000000008 _ZNSt13__libcxx_shim19__libcxx_shim_ver_115__free_tls_slotENS0_11__tls_key_tE +000000000023a268 g DF .text 0000000000000034 _ZN2nn8irsensor6detail15IrSensorSession12GetImageSizeENS0_28ImageTransferProcessorFormatE +000000000019cb10 w DF .text 00000000000000f8 _ZNSt3__15arrayIN2nn5audio6server17SystemEventHolderELm6EEC2Ev +00000000000bf228 g DF .text 0000000000000010 _ZN2nn7account33ExternalNetworkServiceAccountInfoC1EOS1_ +0000000000175138 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E54_nn_sf_sync_SetConsoleSixAxisSensorAngularVelocityBiasERKNS5_6system39ConsoleSixAxisSensorAngularVelocityBiasE +000000000004359c g DF .text 0000000000000120 _ZN2nn6crypto15InitializeCsrngEv +0000000000396b04 g DF .text 0000000000000004 _ZNSt10bad_typeidD2Ev +00000000001519d4 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E35_nn_sf_sync_CreateGeneralServiceOldENS0_3OutINS0_13SharedPointerINS6_15IGeneralServiceEEEvEE +0000000000233ebc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E35_nn_sf_sync_ActivateVibrationDeviceENS5_21VibrationDeviceHandleE +0000000000954d48 w DO .data 0000000000000090 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6ObjectE +00000000001bc828 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw14GetEyebrowTypeEv +00000000001ce5e0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E25_nn_sf_sync_SetLayerAlphaEmf +00000000001845c0 w DF .text 0000000000000100 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000022c1a0 g DF .text 0000000000000044 _ZN2nn3hid21StartLrAssignmentModeEv +00000000007a4180 g DO .rodata 000000000000000f _ZN2nn6crypto13Sha1Generator20Asn1ObjectIdentifierE +00000000000505d0 g DF .text 000000000000016c _ZN2nn2fs10CreateFileEPKcli +000000000017dc9c g DF .text 0000000000000054 _ZN2nn4time10IsLeapYearEi +00000000009793f8 w DO .data 0000000000000020 _ZTVNSt3__19basic_iosIwNS_11char_traitsIwEEEE +00000000003e1ce8 g DF .text 0000000000000004 rindex +000000000020f500 g DF .text 00000000000005b8 FSS_get_table +00000000000674d4 g DF .text 00000000000000c8 _ZN2nn2fs30RegisterSaveDataAtomicDeletionEPmi +00000000001d9d1c g DF .text 0000000000000004 _ZN2nn6fontll18ScalableFontEngine14GetFontMetricsEPNS0_7MetricsE +00000000000bbef8 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +000000000017b0b8 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E24_nn_sf_sync_AddPolicyOidERKNS0_8InBufferE +0000000000150dc4 g DF .text 0000000000000028 _ZN2nn4nifm6detail13RequestClient9SetGreedyEb +00000000007f61a4 g DO .rodata 0000000000000005 _ZN2nn3mii6detail19Ver3MouthColorTableE +0000000000144fe8 g DF .text 000000000000002c _ZN2nn3ngc6detail14ContentsReader18GetVersionFilePathEPcj +0000000000231f8c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E32_nn_sf_sync_GetJoyXpadLifoHandleENS0_3OutINS0_12NativeHandleEvEENS5_9JoyXpadIdE +000000000031cedc w DF .text 0000000000000568 _ZNSt3__16__sortIRNS_6__lessIssEEPsEEvT0_S5_T_ +0000000000337d34 g DF .text 0000000000000070 _ZNSt3__16__clocEv +00000000003de678 w DF .text 0000000000000078 __isoc99_sscanf +0000000000060868 g DF .text 00000000000000f0 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter12DoQueryEntryEPcmPKcmNS0_3fsa7QueryIdES5_ +0000000000250898 g DF .text 0000000000000010 _ZN2nn3ldn8MakeSsidEv +000000000023891c g DF .text 0000000000000004 _ZN2nn8irsensor6detail13StatusManagerD2Ev +00000000001682f4 g DF .text 0000000000000044 _ZN2nn8settings7factory31SetInitialSystemAppletProgramIdERKNS_3ncm9ProgramIdE +000000000018a4d8 g DF .text 000000000000000c _ZN2nn5audio25IsDownMixParameterEnabledEPKNS0_14DeviceSinkTypeE +00000000001579f0 g DF .text 0000000000000024 _ZN2nn4nifm6detail39ConvertNetworkInterfaceInfoToSfFromNifmEPNS1_2sf20NetworkInterfaceInfoERKNS0_20NetworkInterfaceInfoE +000000000006d27c g DF .text 000000000000009c _ZN2nn3htc35BindHostDisconnectionEventForSystemEPNS_2os11SystemEventE +00000000007e92c4 g DO .rodata 0000000000000004 _ZN2nn5audio5TWOPIE +00000000001de7bc g DF .text 0000000000000068 unload_fnt +00000000002869d4 g DF .text 0000000000000014 NvRmGpuAddressSpaceAllocationClose +00000000007b15f0 w DO .rodata 0000000000000031 _ZTSN2nn2sf4hipc6client26HipcClientSessionAllocatorE +00000000003a669c g DF .text 0000000000000088 __atomic_fetch_add_1 +00000000000960a8 g DF .text 0000000000000048 _ZN2nn2os6detail27InterruptEventImplByHorizonD1Ev +00000000003a6724 g DF .text 0000000000000088 __atomic_fetch_add_2 +00000000003a77b8 g DF .text 0000000000000000 fesetenv +0000000000179e6c g DF .text 0000000000000044 nnsslConnectionCreate +00000000000277a0 g DF .text 0000000000000504 _ZN2nn5image6detail4jpeg14jpeg_idct_16x8EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +00000000003a67ac g DF .text 0000000000000088 __atomic_fetch_add_4 +00000000000c1dfc g DF .text 0000000000000040 _ZN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureC1EPNS0_3nas29IOAuthProcedureForExternalNsaE +00000000003abfd0 g DF .text 0000000000000020 __tm_to_tzname +00000000003de4bc g DF .text 0000000000000054 rewind +00000000000b7d08 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E34_nn_sf_sync_StoreSaveDataThumbnailERKNS5_3UidENS_13ApplicationIdERKNS0_8InBufferE +00000000003a6834 g DF .text 0000000000000088 __atomic_fetch_add_8 +0000000000954580 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000188250 g DF .text 0000000000000048 _ZN2nn5audio22SetI3dl2ReverbRoomGainEPNS0_15I3dl2ReverbTypeEf +000000000024f4ac w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3ldn6detail26ILocalCommunicationServiceEED2Ev +00000000002cdbe4 g DF .text 0000000000000004 _ZN7android7RefBase10onFirstRefEv +00000000009e4ac0 w DO .bss 0000000000004030 _ZN2nn2sf22ExpHeapStaticAllocatorILm16384ENS_8settings15ISettingsServerEE8_globalsE +0000000000346850 g DF .text 0000000000000084 _ZNSt3__110__time_putC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000002d03a0 g DF .text 00000000000000e4 _ZNK7android7String811getPathLeafEv +00000000009482c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000018fbb0 g DF .text 0000000000000098 _ZN2nn5audio6server16UpsamplerManager8AllocateEv +00000000000fd9ac g DF .text 0000000000000058 silk_resampler_private_AR2 +00000000001369f8 g DF .text 0000000000000004 _ZN2nn2lm8FinalizeEv +0000000000001da0 g DF .text 00000000000000e0 _ZNK2nn6crypto6detail6BigNum6ModExpEPvPKvRKS2_m +00000000000fda04 g DF .text 00000000000001e0 silk_resampler_private_IIR_FIR +0000000000125ff0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E29_nn_sf_sync_SendFriendRequestERKNS_7account3UidENSL_23NetworkServiceAccountIdEi +0000000000954cb0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEEvEE +00000000003e3b98 g DF .text 0000000000000008 pthread_barrierattr_destroy +000000000012309c g DF .text 000000000000000c _ZN2nn7friends11UserSettingC1Ev +000000000011a79c g DF .text 000000000000004c _ZN2nn3err9ShowErrorENS_6ResultERKNS0_15ResultBacktraceE +000000000000aa3c g DF .text 0000000000000094 _ZN2nn5image6detail4jpeg17jpeg_write_tablesEPNS2_20jpeg_compress_structE +00000000001fa520 g DF .text 0000000000000164 fsg_InitInterpreterTrans +00000000007d4012 g DO .rodata 0000000000000028 silk_Resampler_1_4_COEFS +0000000000122200 g DF .text 0000000000000008 _ZNK2nn7friends6Friend7IsValidEv +0000000000263874 g DF .text 0000000000000004 NvOsMutexLock +0000000000001cac g DF .text 000000000000000c _ZN2nn6crypto6detail6BigNumC2Ev +00000000007cdca0 w DO .rodata 00000000000000a2 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_3apm8ISessionENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000007cda10 w DO .rodata 00000000000000a9 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm8IManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_EE +000000000080d0f0 w DO .rodata 000000000000001f _ZTSN2nn3hid19IHidTemporaryServerE +00000000001a7b78 g DF .text 0000000000000004 _ZN2nn5audio6common17DumpCommandHeaderEPKNS0_13CommandHeaderE +00000000001ce534 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E28_nn_sf_sync_SetLayerPositionEmff +000000000095bd68 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_6system18CaptureButtonStateELi16ENS1_13AtomicStorageIS4_EEEE +0000000000292108 g DF .text 0000000000000024 NvWsiGetGpuMapping +0000000000330fec w DF .text 0000000000000084 _ZNSt3__113basic_ostreamIwNS_11char_traitsIwEEEC1EPNS_15basic_streambufIwS2_EE +00000000007e90a0 g DO .rodata 0000000000000008 _ZN2nn5audio14AudioOutBuffer16AddressAlignmentE +00000000002cbd84 g DF .text 000000000000000c _ZN7android6Region17boolean_operationEiRS0_RKS0_S3_ +000000000005188c g DF .text 00000000000000d4 _ZN2nn2fs12MountContentEPKcS2_NS_3ncm9ProgramIdENS0_11ContentTypeE +000000000004cd78 g DF .text 000000000000001c _ZN2nn2fs6detail12FileAccessorC2EONSt3__110unique_ptrINS0_3fsa5IFileENS3_14default_deleteIS6_EEEERNS1_18FileSystemAccessorEi +000000000017f2f0 g DF .text 0000000000000064 _ZN2nn4time26StandardNetworkSystemClock21GetSystemClockContextEPNS0_18SystemClockContextE +0000000000141144 g DF .text 000000000000007c _ZN2nn3ngc15ProfanityFilterD1Ev +00000000001bc874 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw12GetMustacheYEv +0000000000091394 g DF .text 0000000000000004 nnosFinalizeMutex +00000000000d15f4 w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm4EE27InitializeShimLibraryHolderINS_3apm14ISystemManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS5_EEE_clESH_ +0000000000187ac8 g DF .text 000000000000004c _ZN2nn5audio16SetReverbDryGainEPNS0_10ReverbTypeEf +0000000000063f68 g DF .text 0000000000000168 _ZN2nn2fs17GetMmcExtendedCsdEPvm +00000000000b0834 g DF .text 0000000000000040 _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferI7in_addrEElRT_PKhm +0000000000127050 w DF .text 00000000000001fc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi10ELm0EEENSC_17InRawArgumentInfoILm16ELm8ELl8EEENSK_ILm4ELm4ELl0EEEEEELm24ELm4ELb0EEESN_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEENSX_ILm4ELm4EvEEj +00000000000c9b48 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_PushInteractiveInDataENS0_13SharedPointerINS6_8IStorageEEE +0000000000188fb8 g DF .text 0000000000000028 _ZN2nn5audio23RequestAttachMemoryPoolEPNS0_14MemoryPoolTypeE +00000000003e7b84 g DF .text 0000000000000048 __nnmusl_pthread_getschedparam +00000000001644d0 g DF .text 0000000000000040 _ZN2nn5prepo6detail7msgpack11WriteFixNumEPNS2_17OutputStreamParamEa +00000000000be760 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +00000000000b7438 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_GetSessionIdENS0_3OutINSK_4UuidEvEE +00000000002634c8 g DF .text 000000000000007c NvOsUserEventCreate +00000000001a254c g DF .text 0000000000000030 _ZN2nn5audio6server12BehaviorInfo11AppendErrorERNS0_6common17BehaviorParameter9ErrorInfoE +000000000022b7dc g DF .text 0000000000000004 _ZN2nn3hid6system14IsNpadChargingEPbS2_RKj +0000000000268c18 g DF .text 00000000000000bc NvOsDrvOpen +000000000014d570 g DF .text 000000000000009c _ZN2nn3ngc6detail3SbvD2Ev +0000000000264b58 g DF .text 0000000000000008 NvOsLibraryLoad +00000000002291dc g DF .text 0000000000000044 _ZN2nn3hid6system23InitializeInputDetectorEv +00000000007b39b0 w DO .rodata 0000000000000024 _ZTSN2nn5fssrv2sf19ISaveDataInfoReaderE +000000000015286c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_SubmitEv +00000000000bfae0 g DF .text 0000000000000058 _ZN2nn7account37LoadNetworkServiceAccountIdTokenCacheEPmPcmRKNS0_10UserHandleE +00000000000497c0 g DF .text 00000000000003e0 _ZN2nn2fs24HierarchicalRomFileTable17FindPathRecursiveEPNS1_8EntryKeyEPNS1_17DirectoryRomEntryEbPKc +0000000000312270 g DF .text 0000000000000010 nvnBootstrapLoaderInternal +00000000001a02bc g DF .text 00000000000001b4 _ZN2nn5audio6server16CommandGenerator19GenerateMixCommandsERNS1_7MixInfoE +00000000001c0270 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetBeardTypeEv +00000000007c99a0 w DO .rodata 000000000000010d _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000000bd7dc g DF .text 000000000000001c _ZN2nn7account12AsyncContextC1EPNS0_6detail13IAsyncContextE +0000000000258cd8 g DF .text 0000000000000030 nvdcQueryNumHeads +00000000000b44b0 g DF .text 0000000000000018 _ZN2nn7account11DeclarationD2Ev +000000000011aeb0 g DF .text 0000000000000004 _ZN2nn3err18GetErrorCodeStringEPcmNS0_9ErrorCodeE +000000000015f99c g DF .text 0000000000000068 _ZN2nn4pctl6detail16HandleResultImplENS_6ResultEb +00000000001c5930 g DF .text 00000000000000ac _ZN2nn3mii15PrivateDatabase29IsBrokenDatabaseWithClearFlagEv +00000000001d9ec4 g DF .text 0000000000000048 _ZN2nn6fontll18ScalableFontEngine23FinalizeOtfKerningTableEPNS0_15OtfKerningTableEPFvPvS4_ES4_ +00000000001c564c g DF .text 0000000000000018 _ZN2nn3mii8DatabaseD1Ev +00000000000d1d58 w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm4EE27InitializeShimLibraryHolderINS_3apm18IManagerPrivilegedEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS5_EEE_clESH_ +000000000005181c g DF .text 0000000000000070 _ZN2nn2fs12MountContentEPKcS2_NS0_11ContentTypeE +0000000000294e80 g DF .text 0000000000000008 _ZN7android7IBinderD1Ev +00000000000456c0 g DF .text 0000000000000004 _ZN2nn4diag13GetSymbolSizeEm +00000000001b43bc g DF .text 00000000000000d4 _ZN2nn7friends25StartSendingFriendRequestERKNS_7account3UidERKNS1_23NetworkServiceAccountIdERKNS0_15InAppScreenNameESA_ +00000000000b05c0 g DF .text 00000000000001c4 _ZN2nn6socket8resolver10serializer13DNSSerializer8ToBufferI7hostentEElPhmRKT_ +000000000036d71c g DF .text 0000000000000018 _ZNSt3__132__libcpp_recursive_mutex_destroyEPN2nn2os9MutexTypeE +00000000000bee70 w DF .text 0000000000000008 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm17EE27InitializeShimLibraryHolderINS_7account24IBaasAccessTokenAccessorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESF_ +0000000000183af4 g DF .text 0000000000000080 _ZN2nn3aoc31GetAddOnContentListChangedEventEPNS_2os11SystemEventE +0000000000959620 w DO .data 0000000000000018 _ZTIN2nn3mii6detail16IDatabaseServiceE +00000000007f1050 g DO .rodata 000000000000002b _ZTSN2nn5audio6server22CircularBufferSinkInfoE +00000000000c7058 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_GetCurrentIlluminanceENS0_3OutIfvEE +00000000001c583c g DF .text 0000000000000030 _ZNK2nn3mii8Database12UpdateLatestEPNS0_8CharInfoEi +00000000001d6098 g DF .text 00000000000000d0 _ZN2nn2vi6detail18SystemServiceProxy31InitializeSystemServiceRootImplEPKc +00000000002203d0 w DF .text 0000000000000004 _ZN2nn3hid6detail12KeyboardLifoD0Ev +000000000094dfa0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service19IOverlayAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000125dc8 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_GetProfileExtraListERKNS0_8OutArrayINS6_16ProfileExtraImplEEERKNS_7account3UidERKNS0_7InArrayINSQ_23NetworkServiceAccountIdEEE +0000000000822440 w DO .rodata 000000000000002a _ZTSNSt3__19basic_iosIcNS_11char_traitsIcEEEE +000000000011b9c4 g DF .text 00000000000000cc _ZN2nn3err14SystemErrorArg15SetLanguageCodeERKNS_8settings12LanguageCodeE +0000000000228788 g DF .text 0000000000000044 _ZN2nn3hid6system22BindCaptureButtonEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +00000000000d3210 g DF .text 00000000000000a4 _ZN2nn6applet31TryPopFromInteractiveOutChannelEPNS0_13StorageHandleENS0_19LibraryAppletHandleE +000000000006fc6c g DF .text 0000000000000004 _ZN2nn4lmem6detail12FinalizeHeapEPNS1_8HeapHeadE +00000000003c31f4 g DF .text 00000000000000f4 wcwidth +000000000000a59c g DF .text 0000000000000018 _ZN2nn4cstd5IsInfEd +0000000000160fa4 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_FinishGetAccountMiiImageENS0_3OutIjvEERKNS0_9OutBufferENS6_9AsyncDataE +0000000000273f40 g DF .text 00000000000000d8 NvRmChannelSyncPointRead +00000000002d3748 g DF .text 0000000000000070 _ZN7android16SortedVectorImpl5mergeERKNS_10VectorImplE +000000000000a580 g DF .text 000000000000001c _ZN2nn4cstd5IsInfEe +0000000000395f24 g DF .text 00000000000000f4 __cxa_vec_new2 +000000000000a5b4 g DF .text 0000000000000018 _ZN2nn4cstd5IsInfEf +00000000001a54f4 g DF .text 0000000000000010 _ZNK2nn5audio6server15SplitterContext7GetInfoEi +00000000001b9290 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw12GetBeardTypeEv +000000000021f270 g DF .text 0000000000000014 _ZN2nn3hid6detail20SharedMemoryAccessorD2Ev +00000000002d007c g DF .text 0000000000000114 _ZN7android7String87toUpperEmm +00000000003960c4 g DF .text 000000000000010c __cxa_vec_new3 +000000000015b540 g DF .text 0000000000000058 _ZN2nn2oe26GetHdcpAuthenticationStateEv +00000000001b7660 g DF .text 0000000000000010 _ZN2nn3mii6detail28GetFacelineColorByOrderIndexEi +0000000000315020 g DF .text 0000000000000050 _ZN2nn4gpio12SetDirectionEPNS0_14GpioPadSessionENS0_9DirectionE +000000000008e664 g DF .text 000000000000003c _ZN2nn2os17SignalSystemEventEPNS0_15SystemEventTypeE +00000000003e62c0 g DF .text 000000000000010c __nnmusl_DirOpen +00000000000719d8 g DF .text 000000000000009c nnmem_nlib_rwlock_tryrdlock_until +00000000001256fc w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_7friends6detail3ipc14IFriendServiceEEEvi +00000000003e03f4 g DF .text 0000000000000104 fcvt +0000000000348270 w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb0EE13do_pos_formatEv +00000000003456b4 g DF .text 00000000000002ac _ZNSt3__118__time_get_storageIwEC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000000acae0 g DF .text 0000000000000020 _ZN2nn6socket8resolver20DisableResolverCallsEv +00000000007beac0 w DO .rodata 000000000000017a _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEEE +000000000025e7d4 g DF .text 000000000000000c NvUScalarCompare +00000000003d2fe4 g DF .text 0000000000000158 wcsnrtombs +000000000011e170 g DF .text 0000000000000148 _ZN2nn7friends12DeleteFriendEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdE +00000000000ae2bc g DF .text 0000000000000068 _ZN2nn6socket8resolver3tls6Client17SetCurrentHostentEP7hostent +00000000000bde08 g DF .text 0000000000000078 _ZN2nn7account22GetBaasDeviceAccountIdEPmRKNS0_3UidE +00000000000d86fc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E37_nn_sf_sync_ClearDeliveryCacheStorageENS_13ApplicationIdE +0000000000152014 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E42_nn_sf_sync_IsWirelessCommunicationEnabledENS0_3OutIbvEE +000000000015ea8c g DF .text 0000000000000058 _ZN2nn4pctl24IsPlayTimerAlarmDisabledEv +0000000000396764 g DF .text 0000000000000054 _ZNSt11range_errorD2Ev +00000000003ac000 g DF .text 0000000000000078 getcwd +0000000000066db8 g DF .text 00000000000001b0 _ZN2nn2fs19SetSaveDataRootPathEPKc +0000000000183e54 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object12AddReferenceEv +000000000008264c g DF .text 00000000000000d4 _ZN2nn7nlibsdk4heap12TlsHeapCache8FinalizeEv +000000000021aa64 g DF .text 0000000000000054 _ZN2nn3hid6detail14InitializeNpadEv +00000000003984d4 g DF .text 000000000000001c __cxa_free_exception +00000000003c270c g DF .text 0000000000000010 isupper +0000000000071430 g DF .text 0000000000000008 nnmem_nlib_thread_attr_destroy +00000000001587d4 g DF .text 000000000000004c _ZN2nn3nsd37IsChangeEnvironmentIdentifierDisabledEv +000000000018d230 g DF .text 000000000000000c _ZN2nn5audio6common10NodeStates5StackC2Ev +00000000003242d4 g DF .text 0000000000000018 _ZNSt3__127__libcpp_set_debug_functionEPFvRKNS_19__libcpp_debug_infoEE +0000000000135ec0 g DF .text 0000000000000008 _ZN2nn2lm6detail15LogPacketHeader12SetProcessIdEm +00000000001b998c g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw11SetEyeScaleEi +000000000004121c g DF .text 0000000000000018 _ZN2nn4diag6detail11nnText_initEPKc +000000000021e3f8 g DF .text 0000000000000070 _ZN2nn3hid6detail14IsNfcActivatedEPbRj +0000000000084e40 g DF .text 000000000000019c _ZN2nn7nlibsdk4heap14TlsHeapCentral14SearchFreeSpanEm +000000000005f850 g DF .text 0000000000000048 _ZN2nn2fs6detail24FileServiceObjectAdapterD0Ev +00000000000c374c g DF .text 00000000000001a4 _ZN2nn2am30FinalizeSystemAppletInterfacesEv +00000000001b93a8 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw13GetGlassColorEv +00000000007f0530 w DO .rodata 0000000000000039 _ZTSN2nn5audio6detail36IFinalOutputRecorderManagerForAppletE +00000000000d8fe4 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E34_nn_sf_sync_CreateDirectoryServiceENS0_3OutINS0_13SharedPointerINS7_30IDeliveryCacheDirectoryServiceEEEvEE +00000000000c21d4 g DF .text 000000000000002c _ZN2nn7account13ProfileEditorC2Ev +00000000000c8180 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E53_nn_sf_sync_ReleaseLastApplicationCaptureSharedBufferEv +0000000000978d20 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3pcv19IArbitrationManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001b681c g DF .text 0000000000000008 _ZN2nn3mii6detail15BufferAllocator13GetCurrentPtrEv +00000000003ac084 w DF .text 0000000000000004 pwrite64 +00000000000c6e04 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_SetScreenShotAppletIdentityInfoERKNS6_18AppletIdentityInfoE +00000000001a2818 g DF .text 0000000000000074 _ZN2nn5audio6server14EffectInfoBase17ForceUnmapBuffersERNS1_10PoolMapperE +000000000008d004 g DF .text 0000000000000008 _ZN2nn2os25FinalizeConditionVariableEPNS0_21ConditionVariableTypeE +00000000003c2ac0 g DF .text 0000000000000004 __wctype_l +000000000006862c g DF .text 0000000000000150 _ZN2nn2fs14ExtendSaveDataENS0_15SaveDataSpaceIdEmll +000000000018d978 g DF .text 0000000000000028 _ZN2nn5audio17DelayLineSetDelayEPNS0_11FXDelayLineEj +00000000007cf950 w DO .rodata 0000000000000156 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000007c3520 w DO .rodata 000000000000015a _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +0000000000252d70 g DF .text 00000000000000bc _ZN2nn3web13ShowLobbyPageEPNS0_20LobbyPageReturnValueERKNS0_16ShowLobbyPageArgE +0000000000a68490 g DO .bss 0000000000000008 _ZN7android16ISurfaceComposer10descriptorE +0000000000825264 g DO .rodata 000000000000000d _ZTSSt9type_info +00000000003e130c g DF .text 00000000000000c4 wcstoimax +00000000000824e8 w DF .text 0000000000000008 nnmem_nlib_memalign +00000000007bc370 w DO .rodata 000000000000002d _ZTSN2nn7account29IAccountServiceForApplicationE +00000000001ddacc g DF .text 0000000000000368 FSS_set_scale +000000000097b648 g DO .data 0000000000000060 _ZTVNSt3__120__codecvt_utf8_utf16IDiEE +00000000000a1ba0 g DF .text 0000000000000004 nnsocketIoctl +00000000000382bc g DF .text 00000000000000b4 nnutilZlib_inflateSetDictionary +00000000009513c0 w DO .data 0000000000000018 _ZTIN2nn7friends6detail3ipc14IFriendServiceE +000000000097af70 g DO .data 0000000000000018 _ZTINSt3__116__narrow_to_utf8ILm16EEE +000000000018bec4 g DF .text 0000000000000010 _ZN2nn5audio12IsVoiceValidEPKNS0_9VoiceTypeE +0000000000359c80 g DF .text 0000000000000108 _ZNKSt3__115__codecvt_utf16IDiLb1EE5do_inER11__mbstate_tPKcS5_RS5_PDiS7_RS7_ +000000000011fd4c g DF .text 000000000000018c _ZN2nn7friends9BlockUserEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdENS0_11BlockReasonERKNS0_15ApplicationInfoERKNS0_15InAppScreenNameE +0000000000156888 g DF .text 0000000000000020 _ZN2nn4nifm26SetRequestNetworkProfileIdENS0_13RequestHandleERKNS_4util4UuidE +000000000022dab8 g DF .text 0000000000000060 _ZN2nn3hid20GetTouchScreenStatesILm7EEEiPNS0_16TouchScreenStateIXT_EEEi +000000000023cbac w DF .text 000000000000011c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl16EEENSB_ILm4ELm4ELl0EEENSB_ILm12ELm2ELl4EEEEEELm24ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEENSL_ILm12ELm2EvEEj +00000000000c6660 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E19_nn_sf_sync_TryLockENS0_3OutIbvEENSK_INS0_12NativeHandleEvEEb +00000000000f8fd0 g DF .text 0000000000000a38 silk_decode_core +00000000009496a0 w DO .data 0000000000000028 _ZTIN2nn7account48NintendoAccountApplicationAuthorizationProcedureE +0000000000149224 g DF .text 000000000000006c _ZNK2nn3ngc6detail2Bp9FindCloseEj +000000000026b2f0 g DF .text 00000000000000f8 NvRmSurfaceComputePitch +0000000000156e0c g DF .text 0000000000000004 _ZN2nn4nifm7Request13SubmitAndWaitEv +00000000001cd98c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_SetLayerScalingModeEmj +0000000000a45690 g DO .bss 0000000000000020 _ZN2nn6capsrv14g_LibraryStateE +000000000032f07c w DF .text 0000000000000028 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED0Ev +0000000000241cd0 g DF .text 000000000000000c _ZN22nerd_gillette_internal5otete11ImageCodec212QuantizationILm0EEEiRhh +0000000000283070 g DF .text 0000000000000128 NvDdkVicConfigureClearRects +0000000000069638 g DF .text 0000000000000104 _ZN2nn2fs14VerifySaveDataEPbNS0_15SaveDataSpaceIdEmPvm +0000000000040d10 g DF .text 00000000000000e4 _ZN2nn4util33ConvertCharacterUtf16NativeToUtf8EPcPKt +00000000000d84ac w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc12IBcatServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_RequestSyncDeliveryCacheENS0_3OutINS0_13SharedPointerINS7_29IDeliveryCacheProgressServiceEEEvEE +0000000000123084 g DF .text 0000000000000010 _ZNK2nn7friends12ProfileExtra10GetPlayLogEi +0000000000202248 g DF .text 0000000000000008 FsLtt_getMetric +000000000011ba98 g DF .text 0000000000000008 _ZNK2nn3err14SystemErrorArg16GetDialogMessageEv +000000000094fd78 w DO .data 0000000000000070 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000000891b8 g DF .text 0000000000000720 _ZN2nn7nlibsdk4heap11CentralHeap6QueryVEiSt9__va_list +000000000095a6e0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000239c5c g DF .text 00000000000000c0 _ZN2nn8irsensor6detail15IrSensorSession22RunClusteringProcessorERKNS0_14IrCameraHandleERKNS0_31PackedClusteringProcessorConfigE +000000000016b084 g DF .text 0000000000000048 _ZN2nn8settings5fwdbg19SetWebInspectorFlagEb +00000000000c22e4 g DF .text 0000000000000124 _ZN2nn7account13ProfileEditoraSEOS1_ +00000000009550d0 w DO .data 0000000000000018 _ZTIN2nn8settings15ISettingsServerE +0000000000973fd0 g DO .data 00000000000001c0 _ZTCN7android23BnSurfaceComposerClientE0_NS_11BnInterfaceINS_22ISurfaceComposerClientEEE +0000000000170a08 g DF .text 00000000000000b4 _ZN2nn8settings6detail26GetWirelessLanCountryCodesEPiPNS0_7factory11CountryCodeEi +0000000000158888 g DF .text 0000000000000018 _ZN2nn3nsd13GetNasApiFqdnEPNS0_4FqdnE +0000000000804610 w DO .rodata 0000000000000053 _ZTSN2nn3hid6detail8RingLifoINS0_18SixAxisSensorStateELi32ENS1_13AtomicStorageIS3_EEEE +00000000000ba424 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E68_nn_sf_sync_ProxyProcedureForFloatingRegistrationWithNintendoAccountENS0_3OutINS0_13SharedPointerINS5_3nas29IOAuthProcedureForExternalNsaEEEvEERKNSJ_4UuidE +00000000001783a8 g DF .text 0000000000000098 _ZN2nn3ssl10Connection19SetSocketDescriptorEi +00000000001a5488 g DF .text 0000000000000008 _ZNK2nn5audio6server12SplitterInfo19GetDestinationCountEv +00000000001ca1d0 g DF .text 0000000000000100 _ZN2nn5swkbd6detail18InlineKeyboardImplC1Ev +0000000000071814 g DF .text 0000000000000054 nnmem_nlib_rwlock_destroy +00000000000aea58 w DF .text 0000000000000160 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm4ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEENSK_24BufferClientArgumentTypeEj +000000000036b620 g DF .text 0000000000000094 _ZNSt3__112strstreambufC1EPhlS1_ +0000000000189038 g DF .text 0000000000000008 _ZN2nn5audio20GetMemoryPoolAddressEPKNS0_14MemoryPoolTypeE +00000000002c94e4 g DF .text 0000000000000140 _ZN7android13GraphicBufferC1Ejjij +00000000000a1c58 g DF .text 0000000000000004 GetResourceStatistics +00000000001e4d38 g DF .text 0000000000000080 save_advance_to_cache +0000000000231668 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEEEEELm0ELm16ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEESL_j +0000000000136054 g DF .text 0000000000000018 _ZN2nn2lm6detail20LogPacketTransmitter16PushFunctionNameEPKcm +0000000000358894 g DF .text 0000000000000018 _ZNKSt3__114__codecvt_utf8IwE13do_max_lengthEv +00000000001207a0 g DF .text 000000000000010c _ZN2nn7friends18GetPlayHistoryListEPiPNS0_11PlayHistoryERKNS_7account3UidEii +0000000000158d08 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc14DeleteSettingsENS0_10DeleteModeE +000000000014d058 g DF .text 0000000000000110 _ZN2nn3ngc6detail3Set5BuildEv +00000000001d6168 g DF .text 0000000000000150 _ZN2nn2vi6detail18SystemServiceProxy39InitializeApplicationDisplayServiceImplERKNS0_13ProxyNameSafeE +00000000000d844c w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc12IBcatServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +00000000003c253c w DF .text 0000000000000024 isalnum_l +00000000007c6780 w DO .rodata 0000000000000148 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service16IAudioControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000356c38 g DF .text 0000000000000010 _ZNKSt3__17codecvtIcc11__mbstate_tE5do_inERS1_PKcS5_RS5_PcS7_RS7_ +0000000000230b38 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E34_nn_sf_sync_SetMouseAutoPilotStateERKNS5_5debug19MouseAutoPilotStateE +0000000000241af0 g DF .text 0000000000000180 _ZN22nerd_gillette_internal5otete11ImageCodec212QuantizationERiim +00000000003d3408 g DF .text 0000000000000024 jrand48 +000000000003b67c g DF .text 0000000000000008 _ZN2nn4util16BinaryFileHeader16SetByteOrderMarkENS0_13ByteOrderMarkE +000000000019cd80 w DF .text 0000000000000054 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E28_nn_sf_sync_QuerySystemEventENS0_3OutINS0_12NativeHandleEvEE +00000000007cc290 w DO .rodata 0000000000000026 _ZTSN2nn2am7service19IOverlayAppletProxyE +0000000000804cf0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi40EE4MaskE +000000000029e90c g DF .text 0000000000000008 _ZNK7android6Parcel7objectsEv +0000000000318170 g DF .text 00000000000000a4 _ZN2nn3pcv12GetDvfsTableEPjPiS2_NS0_6ModuleEi +000000000005fa24 g DF .text 0000000000000028 _ZN2nn2fs6detail29DirectoryServiceObjectAdapterD2Ev +00000000001521ec w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E50_nn_sf_sync_SetEthernetCommunicationEnabledForTestEb +00000000002a0338 g DF .text 0000000000000018 _ZN7android6Parcel6removeEmm +000000000032dc30 w DF .text 0000000000000034 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE3getERw +00000000000c9958 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE23_nn_sf_sync_IsCompletedENS0_3OutIbvEE +00000000002ab01c g DF .text 000000000000010c _ZN7android18BufferItemConsumer13acquireBufferEPNS_22IGraphicBufferConsumer10BufferItemElb +00000000001b8cf8 g DF .text 0000000000000034 _ZNK2nn3mii6detail11CoreDataRaw11GetHairTypeEv +0000000000823870 w DO .rodata 0000000000000022 _ZTSNSt3__120__time_get_c_storageIwEE +0000000000091820 g DF .text 00000000000000cc _ZN2nn2os6detail13ThreadManager22CreateAliasStackUnsafeEPNS0_10ThreadTypeE +00000000000ce7a0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000ce748 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21IApplicationFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000002b4588 g DF .text 0000000000000050 _ZThn8_N7android18GraphicBufferAllocD0Ev +0000000000058f90 w DF .text 0000000000000198 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm64ELm8ELl0EEENSG_ILm64ELm8ELl64EEENSG_ILm16ELm4ELl128EEEEEELm144ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm64ELm8EvEESS_NSR_ILm16ELm4EvEEj +00000000000c77e4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IWindowControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000001c5c24 g DF .text 0000000000000024 _ZN2nn3mii15PrivateDatabase12AddOrReplaceERKNS0_9StoreDataE +0000000000360f48 g DF .text 0000000000000138 _ZNSt3__112__get_sp_mutEPKv +0000000000212988 g DF .text 00000000000000a8 get_name +00000000000d34b4 g DF .text 0000000000000024 _ZN2nn6applet28TakeScreenShotOfCallerAppletEv +00000000007ceed0 w DO .rodata 000000000000015a _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000002355d8 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENSB_ILm8ELm8ELl8EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm16ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEESN_NSL_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000001ceab0 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000082b1c w DF .text 00000000000001c4 _ZN2nn7nlibsdk4heap12TlsHeapCache19AllocFuncAlgn_Mode0INSt3__117integral_constantIbLb0EEEEEPvPS2_mm +0000000000947f30 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_EE +000000000094cec0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002390c8 g DF .text 0000000000000004 _ZN2nn8irsensor6detail19StatusManagerHolderD1Ev +000000000016d224 g DF .text 0000000000000070 _ZN2nn8settings6detail18GetFatalDirtyFlagsEPNS_4util10BitFlagSetILi128ENS0_6system14FatalDirtyFlagEEE +0000000000167028 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E22_nn_sf_sync_SaveReportERKNS0_7InArrayIcEERKNS0_8InBufferEm +0000000000313860 g DF .text 0000000000000008 _ZN2nn3fgm7Request21GetSystemEventPointerEv +0000000000358cdc g DF .text 0000000000000018 _ZNKSt3__114__codecvt_utf8IDsE13do_max_lengthEv +0000000000822390 g DO .rodata 0000000000000004 _ZNSt3__18ios_base5fixedE +0000000000170fbc w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object7ReleaseEv +000000000005f930 g DF .text 0000000000000024 _ZN2nn2fs6detail24FileServiceObjectAdapter7DoFlushEv +00000000001175f0 g DF .text 000000000000009c _ZNK2nn5codec19HardwareOpusDecoder17GetWorkBufferSizeEii +00000000001a32cc g DF .text 0000000000000008 _ZNK2nn5audio6server11AddressInfo10GetCpuAddrEv +00000000000718e0 g DF .text 000000000000007c nnmem_nlib_rwlock_tryrdlock +000000000023d050 w DF .text 0000000000000108 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm1ELl0EEEEEELm16ELm0ELb1EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSK_ILm4ELm1EvEEj +0000000000361b48 w DF .text 0000000000000008 _ZdaPvmSt11align_val_t +00000000003b9a48 g DF .text 000000000000004c casin +000000000000558c g DF .text 0000000000000040 _ZN2nn6crypto6detail11IsSameBytesEPKvS3_m +00000000007d3f32 g DO .rodata 0000000000000018 silk_Lag_range_stage3 +000000000018a718 g DF .text 0000000000000008 _ZN2nn5audio8SinkInfoC2Ev +00000000003a2b5c g DF .text 0000000000000028 __modsi3 +00000000003c54f0 w DF .text 0000000000000004 strcoll_l +000000000006c64c g DF .text 0000000000000164 _ZN2nn2fs21GetSpeedEmulationModeEPNS0_18SpeedEmulationModeE +00000000000916f8 g DF .text 0000000000000008 _ZN2nn2os6detail36GetWritableHandleOfInterProcessEventEPKNS1_21InterProcessEventTypeE +000000000095d760 w DO .data 0000000000000018 _ZTIN2nn3hid19IHidTemporaryServerE +0000000000223bd4 g DF .text 0000000000000090 _ZN2nn3hid6detail28SetTouchScreenAutoPilotStateILm7EEENS_6ResultERKNS0_5debug25TouchScreenAutoPilotStateIXT_EEE +0000000000158480 g DF .text 000000000000008c _ZN2nn4nifm6detail12HttpResponse3AddEPKci +00000000001ca014 g DF .text 000000000000005c _ZN2nn5swkbd14InlineKeyboard13SetWindowModeENS1_10WindowModeE +00000000002399b4 g DF .text 0000000000000044 _ZN2nn8irsensor6detail15IrSensorSession18IsAppletForegroundEv +0000000000804c50 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi35EE4MaskE +000000000080b750 w DO .rodata 00000000000000f9 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail14HidDebugServerEEEEEE13ServiceObjectE +0000000000124ed8 g DF .text 00000000000000d4 _ZN2nn7friends6detail3ipc25CreateNotificationServiceEPPNS2_20INotificationServiceERKNS_7account3UidE +0000000000122cf0 g DF .text 0000000000000008 _ZNK2nn7friends14FriendPresence17GetLastOnlineTimeEv +0000000000060254 g DF .text 00000000000000c4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter14DoGetEntryTypeEPNS0_18DirectoryEntryTypeEPKc +0000000000157a70 g DF .text 0000000000000068 _ZN2nn4nifm6detail34ConvertAccessPointDataToSfFromNifmEPNS1_2sf18AccessPointDataOldERKNS0_15AccessPointDataE +00000000002593f0 g DF .text 0000000000000008 nvdcAsyncEventCallback +000000000025dd68 g DF .text 000000000000008c NvUHashSearch +00000000002c9ce8 g DF .text 0000000000000068 _ZN7android13GraphicBuffer9lockAsyncEjRKNS_4RectEPPvi +000000000021d0c4 g DF .text 00000000000001e4 _ZN2nn3hid6detail27GetSixAxisSensorRightStatesEPiPNS0_18SixAxisSensorStateEiRKjNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +00000000008040f0 w DO .rodata 0000000000000057 _ZTSN2nn3hid6detail8RingLifoINS0_6system15HomeButtonStateELi16ENS1_13AtomicStorageIS4_EEEE +000000000095cc90 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14HidDebugServerEEEEEE13ServiceObjectESJ_E6ObjectE +000000000022faf4 g DF .text 0000000000000014 _ZN2nn3hid23VibrationNodeConnectionD1Ev +00000000001a3eec g DF .text 000000000000014c _ZN2nn5audio6server10MixContext8SortInfoEv +00000000001a37b4 g DF .text 0000000000000054 _ZNK2nn5audio6server10PoolMapper20InitializeSystemPoolEPNS1_14MemoryPoolInfoEPvm +00000000002d0484 g DF .text 000000000000011c _ZNK7android7String810getPathDirEv +00000000001726a8 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E30_nn_sf_sync_SetAllowedSslHostsERKNS0_7InArrayINS5_6system14AllowedSslHostEEE +0000000000096998 g DF .text 0000000000000008 _ZN2nn2os6detail38InternalConditionVariableImplByHorizonC2Ev +000000000011b670 g DF .text 0000000000000014 _ZN2nn3err18ErrorResultVariantaSERKNS_6ResultE +0000000000184bc4 g DF .text 000000000000001c _ZN2nn5audio15AudioBufferListINS0_14AudioOutBufferEE9pop_frontEv +00000000000bd374 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE17GetCmifBaseObjectEv +000000000016ae98 g DF .text 0000000000000044 _ZN2nn8settings6system29SetDeviceTimeZoneLocationNameERKNS_4time12LocationNameE +00000000001911e4 g DF .text 0000000000000044 _ZN2nn5audio29ExecuteAudioRendererRenderingENS0_19AudioRendererHandleE +0000000000185914 g DF .text 00000000000000a4 _ZN2nn5audio28SetAuxI3dl2ReverbInputOutputEPNS0_18AuxI3dl2ReverbTypeEPKaS4_i +000000000036255c g DF .text 0000000000000080 _ZNSt11logic_errorC2EPKc +00000000002a6270 g DF .text 0000000000000038 android_atomic_inc +00000000000e8990 g DF .text 00000000000000b8 ec_dec_update +000000000015288c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E26_nn_sf_sync_SetRequirementERKNS5_11RequirementE +00000000001846c0 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000024f494 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3ldn6detail15IMonitorServiceEED2Ev +0000000000317f18 g DF .text 000000000000007c _ZN2nn3pcv15GetVoltageValueEPiNS0_11PowerDomainE +0000000000189ff8 g DF .text 0000000000000094 _ZN2nn5audio6detail31AcquireResourceExclusionCheckerEv +00000000002c7ee0 g DF .text 00000000000000fc __android_log_print +00000000001cded8 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEESM_SM_j +000000000029e84c g DF .text 000000000000002c _ZNK7android6Parcel9readInt32Ev +0000000000322af8 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIddEEPdEEjT0_S5_S5_S5_S5_T_ +0000000000150e14 g DF .text 0000000000000028 _ZN2nn4nifm6detail13RequestClient14SetKeptInSleepEb +00000000001a2ed4 g DF .text 0000000000000114 _ZN2nn5audio6server7AuxInfo6UpdateEPNS0_6common17BehaviorParameter9ErrorInfoEPKNS0_10EffectInfo11InParameterERNS1_10PoolMapperE +00000000003145fc g DF .text 0000000000000074 _ZN2nn3fgm8Debugger15WaitWithTimeoutENS_8TimeSpanE +000000000036be3c g DF .text 00000000000000a4 _ZNSt3__110ostrstreamD2Ev +00000000003a44a8 g DF .text 0000000000000020 __paritysi2 +00000000000a22d0 g DF .text 0000000000000190 _ZN2nn6socket6detail4RecvEiPvmi +00000000007c7540 w DO .rodata 0000000000000022 _ZTSN2nn2am7service15IDebugFunctionsE +00000000007da7a0 w DO .rodata 0000000000000016 _ZTSN2nn2lm11ILogServiceE +0000000000156858 g DF .text 0000000000000018 _ZN2nn4nifm18SetRequestPriorityENS0_13RequestHandleEh +00000000002234d8 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm13EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +00000000002749e0 g DF .text 0000000000000068 NvRmChannelGetModuleClockRate +000000000034f2e8 w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIDsc11__mbstate_tED1Ev +000000000011bbb8 g DF .text 00000000000000a8 _ZN2nn3err6detail31ParseApplicationErrorCodeStringEPNS_2ns28ApplicationErrorCodeCategoryEPjPKc +00000000000cac94 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_CreateHandleStorageENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEEONS0_12NativeHandleEl +0000000000161e10 w DF .text 0000000000000150 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm52ELm2ELl0EEEEEELm52ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm52ELm2EvEEj +000000000017d130 g DF .text 000000000000007c _ZN2nn4time28AdjustableNetworkSystemClock3nowEv +00000000001e09a0 g DF .text 00000000000000a8 FSS_get_name +00000000000a8a84 w DF .text 0000000000000228 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi34ELm0EEENSE_ILm4ELm4ELl4EEENSE_ILm4ELm4ELl8EEENSE_ILm16ELm8ELl16EEEEEELm32ELm8ELb0EEESL_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESS_NSQ_23InRawClientArgumentTypeILm4ELm4EvEENSQ_24BufferClientArgumentTypeESU_SU_NST_ILm16ELm8EvEEj +00000000002637f4 g DF .text 0000000000000004 NvOsSemaphoreSignal +00000000007c50b0 w DO .rodata 000000000000014a _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service18ICommonStateGetterENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000123094 g DF .text 0000000000000008 _ZNK2nn7friends12ProfileExtra7IsValidEv +00000000001d9c50 g DF .text 000000000000001c _ZN2nn6fontll18ScalableFontEngineC2Ev +00000000002225ec g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm15EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +0000000000227200 g DF .text 0000000000000060 _ZN2nn3hid6detail40EnableUsbFullKeyControllerForApplicationEb +000000000006f1d8 g DF .text 0000000000000054 _ZN2nn4lmem24SetExpHeapAllocationModeEPNS0_6detail8HeapHeadENS0_14AllocationModeE +000000000017f084 g DF .text 000000000000007c _ZN2nn4time27EphemeralNetworkSystemClock3nowEv +0000000000220410 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_6system18NpadSystemExtStateELi16ENS1_13AtomicStorageIS4_EEED2Ev +000000000002e714 g DF .text 0000000000000020 _ZNK2nn5image11JpegDecoder19GetAnalyzedExifDataEPm +00000000000d12c0 w DF .text 00000000000000f4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEEEEELm8ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm4ELm4EvEESL_j +00000000002c6564 g DF .text 00000000000000c8 _ZN7android21SurfaceComposerClient24setTransparentRegionHintERKNS_2spINS_7IBinderEEERKNS_6RegionE +00000000008235d0 w DO .rodata 0000000000000016 _ZTSNSt3__19__num_getIcEE +00000000001c3358 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw7SetEyeXEi +00000000000b5554 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E17GetCmifBaseObjectEv +00000000000c689c w DF .text 000000000000017c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSG_ILm4ELm4ELl8EEENSG_ILm4ELm4ELl12EEEEEELm0ELm16ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEEST_ST_ST_j +00000000009513e0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +000000000004ebdc g DF .text 0000000000000108 _ZN2nn2fs13ReadDirectoryEPlPNS0_14DirectoryEntryENS0_15DirectoryHandleEl +0000000000060780 g DF .text 0000000000000024 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter8DoCommitEv +000000000022b218 g DF .text 0000000000000048 _ZN2nn3hid24SetSupportedNpadStyleSetENS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +0000000000041b7c g DF .text 0000000000000010 _ZN2nn4edid6detail22IsStandbyModeSupportedEh +0000000000085f30 g DF .text 0000000000000488 _ZN2nn7nlibsdk4heap14TlsHeapCentral17MergeIntoFreeListERPNS1_4SpanE +000000000036b5a4 g DF .text 000000000000007c _ZNSt3__112strstreambufC1EPKal +0000000000160714 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_GetRestrictedFeaturesENS0_3OutIivEE +00000000001c64bc w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E12GetProxyInfoEv +000000000008e6dc g DF .text 0000000000000004 _ZN2nn2os30GetReadableHandleOfSystemEventEPKNS0_15SystemEventTypeE +000000000018de4c g DF .text 0000000000000060 _ZN2nn5audio16Axfx2AllPassTickEPNS0_14Axfx2DelayLineEf +000000000025dd08 g DF .text 0000000000000060 NvUHashGet +000000000021b024 g DF .text 000000000000007c _ZN2nn3hid6detail28SetNpadJoyAssignmentModeDualERKj +0000000000359334 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IwLb1EE11do_encodingEv +0000000000075d38 g DF .text 0000000000000068 nnmem_nlib_utf16len_generic +0000000000169d58 g DF .text 0000000000000044 _ZN2nn8settings6system16GetPtmBatteryLotEPNS0_7factory10BatteryLotE +00000000003a2b18 g DF .text 0000000000000044 __moddi3 +00000000003e0530 g DF .text 000000000000000c imaxabs +0000000000230bd8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E26_nn_sf_sync_DeactivateXpadENS5_11BasicXpadIdE +0000000000298cb4 g DF .text 0000000000000048 _ZN7android12BnMemoryHeapD0Ev +00000000001c7870 g DF .text 0000000000000008 _ZNK2nn3mii11AppletInput17GetValidUuidArrayEv +000000000022ec58 g DF .text 000000000000008c _ZN2nn3hid18ParseVibrationFileEPNS0_17VibrationFileInfoEPNS0_26VibrationFileParserContextEPKvm +00000000001e4cc0 g DF .text 0000000000000078 find_advance_in_cache +000000000080b5c0 g DO .rodata 000000000000001b _ZTSN2nn3hid15VibrationTargetE +000000000017fa2c g DF .text 0000000000000094 _ZN2nn4time52SetStandardUserSystemClockAutomaticCorrectionEnabledEb +0000000000219a20 g DF .text 0000000000000060 _ZN2nn3hid6detail27UnsetKeyboardAutoPilotStateEv +000000000095a5a0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +00000000003ba930 g DF .text 000000000000004c clog +0000000000230630 g DF .text 0000000000000044 _ZN2nn3hid14InitializeXpadERKNS0_11BasicXpadIdE +000000000015856c g DF .text 0000000000000040 _ZN2nn3nsd24GetEnvironmentIdentifierEPNS0_21EnvironmentIdentifierE +000000000022c68c g DF .text 0000000000000060 _ZN2nn3hid6system29GetPlayReportControllerUsagesEPNS1_25PlayReportControllerUsageEi +000000000094fd00 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_4bcat6detail3ipc28IDeliveryCacheStorageServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000167b3c g DF .text 0000000000000044 _ZN2nn8settings6system14SetAudioVolumeERKNS1_11AudioVolumeENS1_17AudioVolumeTargetE +0000000000184198 w DF .text 000000000000018c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEENSF_ILm4ELm4ELl4EEENSF_ILm8ELm8ELl8EEEEEELm16ELm4ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_24BufferClientArgumentTypeENSO_23InRawClientArgumentTypeILm4ELm4EvEEST_NSS_ILm8ELm8EvEEj +00000000007e7f00 w DO .rodata 000000000000017f _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +00000000001bc87c g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw13GetGlassColorEv +00000000000dd910 g DF .text 00000000000000c8 celt_decoder_init +00000000000cb6f0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E36_nn_sf_sync_NotifyCecSettingsChangedEv +00000000007f0c30 g DO .rodata 0000000000000020 _ZTSN2nn5audio6server11EntryAspectE +000000000008f1a8 g DF .text 0000000000000040 _ZN2nn2os19InitializeMultiWaitEPNS0_13MultiWaitTypeE +0000000000091398 g DF .text 0000000000000004 nnosLockMutex +000000000009a620 g DF .text 00000000000000a0 _ZN2nn2sf4cmif6server23CmifServerDomainManager6Domain14UnReserveEntryEPKNS1_18CmifDomainObjectIdEi +00000000000c1424 g DF .text 00000000000000a4 _ZN2nn7account42NintendoAccountAuthorizationRequestContext4SwapERS1_ +000000000018fb94 g DF .text 000000000000001c _ZN2nn5audio6server16UpsamplerManagerC2EiPNS0_13UpsamplerInfoEPa +0000000000319ebc g DF .text 0000000000000058 _ZN2nn3pwm8FinalizeEv +000000000016873c g DF .text 0000000000000044 _ZN2nn8settings6system25SetUserSystemClockContextERKNS_4time18SystemClockContextE +0000000000180c0c w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service14IStaticServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E32_nn_sf_sync_CalculateSpanBetweenENS0_3OutINS_12TimeSpanTypeEvEERKNSL_2sf13ClockSnapshotESZ_ +0000000000344068 w DF .text 0000000000000218 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE13__get_percentERS4_S4_RjRKNS_5ctypeIwEE +0000000000947170 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000000c6d90 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E49_nn_sf_sync_SetPerformanceModeChangedNotificationEb +000000000022d4c0 g DF .text 0000000000000044 _ZN2nn3hid19GetTouchScreenStateILm3EEEvPNS0_16TouchScreenStateIXT_EEE +00000000000c2618 g DF .text 000000000000004c _ZN2nn2am20GetSystemAppletProxyEv +00000000007cfdf0 w DO .rodata 0000000000000031 _ZTSN2nn4bcat6detail3ipc25IDeliveryCacheFileServiceE +00000000001a509c g DF .text 0000000000000028 _ZN2nn5audio6server23SplitterDestinationDataC2Ei +000000000000ac98 g DF .text 000000000000012c _ZN2nn5image6detail4jpeg19jpeg_write_raw_dataEPNS2_20jpeg_compress_structEPPPhi +00000000003b82d4 w DF .text 0000000000000094 __strtof_l +00000000001645ac g DF .text 0000000000000050 _ZN2nn5prepo6detail7msgpack20WriteSignedInteger32EPNS2_17OutputStreamParamEi +000000000026c574 g DF .text 000000000000006c NvRmSyncGetSyncpoints +00000000009597b0 w DO .data 0000000000000018 _ZTIN2nn2pl6detail18ISharedFontManagerE +00000000000c89cc w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service15IDebugFunctionsEEEvi +000000000019a650 g DF .text 000000000000000c _ZN2nn5audio32SetFinalOutputRecorderBufferInfoEPNS0_25FinalOutputRecorderBufferEPvm +00000000002cd61c g DF .text 0000000000000008 _ZN7android7RefBase12weakref_type7incWeakEPKv +00000000000c078c g DF .text 0000000000000024 _ZN2nn7account34NetworkServiceAccountAdministrator29DeleteRegistrationInfoLocallyEv +0000000000185c00 g DF .text 0000000000000040 _ZNK2nn5audio15BehaviorManager17UpdateInParameterEPv +00000000001218d8 g DF .text 00000000000000d0 _ZN2nn7friends36GetFacedFriendRequestRegistrationKeyEPNS0_33FacedFriendRequestRegistrationKeyERKNS_7account3UidE +00000000001cff6c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000001d0754 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000003a449c g DF .text 000000000000000c __paritydi2 +0000000000231e78 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E31_nn_sf_sync_ActivateTouchScreenENS_6applet20AppletResourceUserIdE +00000000000f8334 g DF .text 0000000000000010 silk_Get_Decoder_Size +00000000002301e0 g DF .text 000000000000009c _ZN2nn3hid15VibrationTarget26UnsetVibrationDeviceHandleEv +00000000002c7028 g DF .text 00000000000000a4 _ZN7android21SurfaceComposerClient6getCMUERKNS_2spINS_7IBinderEEERiRf +0000000000945730 w DO .data 0000000000000010 _ZTIN2nn2os6detail19MultiWaitHolderBaseE +0000000000183680 g DF .text 0000000000000060 _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImplD2Ev +00000000001e7878 g DF .text 0000000000000028 int_arg +00000000008234e0 g DO .rodata 000000000000001a _ZTSNSt3__112ctype_bynameIwEE +000000000020593c g DF .text 000000000000005c find_or_make_outline +00000000001cdaa4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E40_nn_sf_sync_GetDisplayVsyncEventForDebugENS0_3OutINS0_12NativeHandleEvEEm +0000000000121ff0 g DF .text 0000000000000018 _ZN2nn7friends16DaemonSuspensionD2Ev +0000000000801b10 w DO .rodata 0000000000000026 _ZTSN2nn5visrv2sf21ISystemDisplayServiceE +00000000009799d0 w DO .data 0000000000000038 _ZTINSt3__114basic_iostreamIcNS_11char_traitsIcEEEE +0000000000181dc8 w DF .text 0000000000000174 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm2ELl0EEENSG_ILm24ELm4ELl8EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm32ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm2EEENSS_ILm24ELm4EEENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000007ef4d0 w DO .rodata 0000000000000030 _ZTSN2nn5audio6detail27IFinalOutputRecorderManagerE +000000000036b494 g DF .text 000000000000007c _ZNSt3__112strstreambufC1EPKcl +000000000095bd48 w DO .data 0000000000000020 _ZTVN2nn3hid6detail17CaptureButtonLifoE +000000000000ab84 g DF .text 0000000000000114 _ZN2nn5image6detail4jpeg20jpeg_write_scanlinesEPNS2_20jpeg_compress_structEPPhi +000000000015b150 g DF .text 0000000000000054 _ZN2nn2oe23BeginBlockingHomeButtonEv +0000000000164df4 w DF .text 0000000000000004 _ZN2nn5prepo6detail17ShimLibraryGlobalD2Ev +00000000003c30a8 g DF .text 0000000000000008 __towlower_l +00000000000d27c8 g DF .text 0000000000000104 _ZN2nn6applet18StartLibraryAppletENS0_19LibraryAppletHandleEPv +00000000001aa450 g DF .text 0000000000000008 _ZN2nn5audio3dsp21GetRemainCommandCountEi +000000000003c6e0 g DF .text 0000000000000008 _ZN2nn4util14DecompressZlibEPvmPKvmS1_m +00000000008057d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi148EE4MaskE +000000000024e078 g DF .text 00000000000000a0 _ZN2nn5album21GetSharePostedEntryIdEPcmRKNS0_7ShareIdE +000000000024ecfc g DF .text 0000000000000004 _ZN2nn6capsrv12LibraryState10GetMyAruidEv +0000000000955ad0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEvEE +00000000002ce7dc g DF .text 0000000000000118 _ZN7android8String166insertEmPKDsm +00000000001bcd8c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetNoseScaleEi +00000000003448d4 g DF .text 00000000000002f4 _ZNSt3__118__time_get_storageIcEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE +00000000000b7ed4 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account6detail9INotifierENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS7_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +0000000000160b50 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_GetAccountNicknameENS0_3OutIjvEERKNS0_8OutArrayIcEERKNS6_22PairingAccountInfoBaseE +00000000003dd99c g DF .text 0000000000000078 fwprintf +00000000001ca2d4 g DF .text 0000000000000074 _ZN2nn5swkbd6detail18InlineKeyboardImpl15NormalizeParamsEv +00000000000c2148 g DF .text 0000000000000044 _ZN2nn7account13ProfileEditorC1ERKNS0_3UidEPNS0_7profile14IProfileEditorE +0000000000958fa0 w DO .data 0000000000000018 _ZTIN2nn5audio6server10EffectInfoILNS0_10EffectTypeE2ENS0_12AuxParameterEEE +000000000035aab4 g DF .text 0000000000000078 _ZNSt3__115numpunct_bynameIcEC1EPKcm +0000000000150d70 g DF .text 0000000000000028 _ZN2nn4nifm6detail13RequestClient10SetInstantEb +000000000080b500 w DO .rodata 000000000000001e _ZTSN2nn4util17IntrusiveListNodeE +0000000000251a1c w DF .text 0000000000000150 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm32ELm8ELl120EEENSB_ILm68ELm2ELl0EEENSB_ILm48ELm1ELl68EEEEEELm152ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm32ELm8EvEENSL_ILm68ELm2EvEENSL_ILm48ELm1EvEEj +000000000015a4e4 w DF .text 0000000000000170 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi22ELm256EEENSB_ILi1ELi21ELm256EEEEEELm0ELm0ELb0EEESE_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESK_j +000000000018b068 g DF .text 00000000000001c0 _ZN2nn5audio19SplitterInfoManager10InitializeEiiiPvmS2_m +0000000000328bec g DF .text 0000000000000124 _ZNSt3__18ios_base4swapERS0_ +000000000094d780 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22IGlobalStateControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000000d1f90 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E23_nn_sf_sync_OpenSessionENS0_3OutINS0_13SharedPointerINS5_8ISessionEEEvEE +000000000008eff4 g DF .text 0000000000000068 _ZN2nn2os19TryPeekMessageQueueEPmPKNS0_16MessageQueueTypeE +00000000003146c8 g DF .text 000000000000000c _ZN2nn3fgm8DebuggerC2Ev +000000000015cd30 g DF .text 0000000000000004 _ZN2nn2oe24RestartGamePlayRecordingEv +00000000001512e4 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_4nifm6detail12IScanRequestEE19FunctionForBoolTypeEv +0000000000121cbc g DF .text 000000000000002c _ZN2nn7friends12AsyncContextC2Ev +0000000000355ef0 g DF .text 0000000000000054 _ZNKSt3__112ctype_bynameIcE10do_tolowerEPcPKc +0000000000947b20 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail9INotifierENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000000c5158 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_OpenOverlayAppletProxyENS0_3OutINS0_13SharedPointerINS6_19IOverlayAppletProxyEEEvEEmONS0_12NativeHandleE +00000000009a8ba8 g DO .bss 0000000000000008 _ZN2nn2os6detail26g_UserExceptionStackBottomE +00000000001186f0 g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder15GetWaveformTypeEv +00000000003b2e80 g DF .text 0000000000000430 tgamma +0000000000190020 g DF .text 0000000000000074 _ZN2nn5audio31SetAudioOutsProcessMasterVolumeENS_6applet20AppletResourceUserIdEfNS_8TimeSpanE +00000000008048f0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi8EE4MaskE +00000000002040a4 g DF .text 0000000000000098 count_points_cff +00000000002729ac g DF .text 0000000000000024 NvRmStreamPushFalconMethod +00000000000c62ac w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm4ELl0EEEEEELm0ELm8ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm4EEEj +000000000015265c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E21_nn_sf_sync_GetResultEv +00000000002646e8 g DF .text 0000000000000020 multimedia_AllocAlign +00000000003d1b34 g DF .text 0000000000000038 l64a +00000000000b7b3c w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E49_nn_sf_sync_GetBaasUserAvailabilityChangeNotifierENS0_3OutINS0_13SharedPointerINSJ_9INotifierEEEvEE +00000000001a5538 g DF .text 0000000000000004 _ZN2nn5audio6server15SplitterContextC2Ev +0000000000160a18 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E22_nn_sf_sync_SetPinCodeERKNS0_7InArrayIcEE +00000000001bcdcc g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetMoleTypeEi +00000000002349f0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E42_nn_sf_sync_SetNpadPlayerLedBlinkingDeviceENS_6applet20AppletResourceUserIdEjNS_4util10BitFlagSetILi32ENS5_6system10DeviceTypeEEE +00000000001181d8 g DF .text 0000000000000034 _ZN2nn5codec11OpusEncoderD0Ev +000000000005d018 w DF .text 000000000000013c _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm1ELm1EvEEj +0000000000181634 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E28_nn_sf_sync_LoadTimeZoneRuleENS0_3OutINSL_12TimeZoneRuleEvEERKNSL_12LocationNameE +00000000000b1408 g DF .text 0000000000000014 _ZN2nn6socket6detail9GetHErrnoEv +00000000002568d8 g DF .text 0000000000000088 _ZN2nn3web14ShowWebPageArg18SetBootDisplayKindENS0_18WebBootDisplayKindE +0000000000822070 g DO .rodata 0000000000000011 _ZTSSt12bad_any_cast +000000000024cbf8 g DF .text 0000000000000014 _ZN2nn5album12LibraryStateC1Ev +00000000000ce398 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE32_nn_sf_sync_GetDisplayControllerENS0_3OutINS0_13SharedPointerINS6_18IDisplayControllerEEEvEE +00000000000ccd68 w DF .text 0000000000000148 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm1ELl0EEEEEELm0ELm8ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm1EEEj +000000000015defc g DF .text 0000000000000058 _ZN2nn4pctl50DeleteFromFreeCommunicationApplicationListForDebugENS_3ncm13ApplicationIdE +000000000016d0f0 g DF .text 0000000000000070 _ZN2nn8settings6detail29SetErrorReportSharePermissionEi +00000000001a99b8 g DF .text 00000000000000b0 _ZN2nn5audio3dsp14ApplyDepopMix2EPiiii +0000000000152254 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E37_nn_sf_sync_ConfirmSystemAvailabilityEv +00000000000ba6c8 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_7profile14IProfileEditorEEEvi +000000000094c6f0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000007b9420 w DO .rodata 00000000000000be _ZTSN2nn2sf4impl6detail17ImplTemplateBaseTINS0_4hipc6detail12IHipcManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server34HipcServerSessionManagerWithDomain15HipcManagerImplEEESC_S6_EE +00000000002ce00c g DF .text 0000000000000034 _ZN7android8String16C1Ev +00000000007adc64 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u815ConstantMagentaE +00000000007d3e62 g DO .rodata 0000000000000018 silk_CB_lags_stage3_10_ms +00000000003ab034 g DF .text 0000000000000014 pthread_mutexattr_gettype +000000000095bb50 w DO .data 0000000000000018 _ZTIN2nn3hid6detail16NpadJoyRightLifoE +00000000000900f0 g DF .text 000000000000005c _ZN2nn2os12CreateThreadEPNS0_10ThreadTypeEPFvPvES3_S3_mii +00000000000c0e60 g DF .text 0000000000000068 _ZNK2nn7account34NetworkServiceAccountAdministrator23GetRequiredLicenseCacheEPNS0_21NetworkServiceLicenceERKNS_13ApplicationIdE +000000000097b4c8 g DO .data 0000000000000060 _ZTVNSt3__115__codecvt_utf16IDiLb0EEE +00000000001a68b4 g DF .text 0000000000000014 _ZN2nn5audio6server12VoiceContext22UpdateStateByDspSharedEv +00000000003dcbf8 g DF .text 0000000000000038 fgetpos +000000000095d260 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid26IActiveVibrationDeviceListENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_EE +000000000034f094 w DF .text 0000000000000008 _ZNKSt3__18messagesIcE7do_openERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_6localeE +000000000022818c g DF .text 0000000000000088 _ZN2nn3hid6detail17UnbindXpadIdEventEPNS_2os15SystemEventTypeE +000000000022cabc g DF .text 0000000000000048 _ZN2nn3hid23GetSixAxisSensorHandlesEPNS0_19SixAxisSensorHandleES2_NS0_9JoyXpadIdE +000000000022ed90 g DF .text 0000000000000044 _ZN2nn3hid25SendVibrationGcErmCommandERKNS0_21VibrationDeviceHandleERKNS0_21VibrationGcErmCommandE +000000000095bc08 w DO .data 0000000000000020 _ZTVN2nn3hid6detail21NpadSixAxisSensorLifoE +00000000001b8cc0 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw15GetFacelineMakeEv +00000000009798d0 w DO .data 0000000000000028 _ZTINSt3__113basic_ostreamIcNS_11char_traitsIcEEEE +00000000001777a4 g DF .text 0000000000000080 _ZN2nn8settings6detail18GetXpadKeyboardMapEPNS0_20BasicXpadKeyboardMapEi +00000000003611a0 g DF .text 0000000000000040 _ZNSt3__115recursive_mutexD2Ev +00000000007adab8 g DO .rodata 0000000000000004 _ZN2nn4util6detail27AngleIndexThreeQuarterRoundE +0000000000314544 g DF .text 0000000000000008 _ZN2nn3fgm8Debugger10ClearEventEv +000000000034794c w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIcLb1EE13do_neg_formatEv +00000000001740e4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E32_nn_sf_sync_GetBacklightSettingsENS0_3OutINS5_6system17BacklightSettingsEvEE +00000000003c2604 w DF .text 0000000000000010 isdigit_l +00000000000c198c g DF .text 0000000000000028 _ZN2nn7account8NotifierD1Ev +000000000022dfcc g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm4EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +0000000000823d90 w DO .rodata 0000000000000019 _ZTSNSt3__111__money_putIcEE +00000000000b7c5c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E48_nn_sf_sync_CheckNetworkServiceAvailabilityAsyncENS0_3OutINS0_13SharedPointerINSJ_13IAsyncContextEEEvEERKNS5_27SystemProgramIdentificationEm +00000000001d22b4 w DF .text 0000000000000178 _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm10EE27InitializeShimLibraryHolderINS_5visrv2sf23IApplicationRootServiceEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS6_EEE_clESI_ +00000000001b716c g DF .text 0000000000000364 _ZNK2nn3mii6detail11CharInfoRaweqERKS2_ +0000000000286214 g DF .text 0000000000000028 nvgr_get_compressed +00000000000538a0 g DF .text 00000000000004d8 _ZN2nn2fs6detail31GetProgramRegistryServiceObjectEv +000000000009321c g DF .text 00000000000000dc _ZN2nn2os6detail13MultiWaitImpl11WaitAnyImplEbNS_8TimeSpanE +00000000007cb840 w DO .rodata 0000000000000105 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000011780c g DF .text 000000000000003c _ZN2nn5codec19HardwareOpusDecoder8FinalizeEv +00000000001de194 g DF .text 0000000000000004 internal_user_get_outline +0000000000180c54 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINS_7timesrv6detail7service12ISystemClockEEEvi +00000000002ced04 g DF .text 0000000000000044 _ZN7android18initialize_string8Ev +00000000000ae22c g DF .text 0000000000000018 _ZN2nn6socket8resolver3tls6Client8FinalizeEv +0000000000125964 w DF .text 0000000000000044 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E43_nn_sf_sync_SendFriendRequestForApplicationERKNS_7account3UidENSL_23NetworkServiceAccountIdERKNS5_15InAppScreenNameESS_m +000000000014080c g DF .text 0000000000000128 _ZN2nn3nfp10GetTagInfoEPNS0_7TagInfoERKNS0_12DeviceHandleE +0000000000286df8 g DF .text 000000000000000c NvRmGpuRegOpsSessionExec +000000000004b99c g DF .text 0000000000000028 _ZN2nn2fs15RomFsFileSystemD0Ev +000000000003af98 g DF .text 0000000000000008 nnutilZlib_zcalloc +00000000001560c0 g DF .text 0000000000000038 _ZN2nn4nifm22IsNetworkRequestOnHoldEv +000000000015de40 g DF .text 0000000000000064 _ZN2nn4pctl37AddToFreeCommunicationApplicationListENS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyE +00000000002c6f84 g DF .text 00000000000000a4 _ZN7android21SurfaceComposerClient6setCMUERKNS_2spINS_7IBinderEEEif +000000000080caf0 w DO .rodata 00000000000000f3 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_EE +00000000000c7f78 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_GetLastApplicationCaptureImageExENS0_3OutIbvEERKNS0_9OutBufferE +000000000019bf6c g DF .text 0000000000000008 _ZNK2nn5audio6server17AudioRenderSystem17GetMixBufferCountEv +000000000023611c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEES6_E52_nn_sf_sync_GetConsoleSixAxisSensorCalibrationValuesENS0_3OutINS5_3tmp37ConsoleSixAxisSensorCalibrationValuesEvEENS_6applet20AppletResourceUserIdENS5_26ConsoleSixAxisSensorHandleE +000000000023f610 g DF .text 0000000000000048 _ZN22nerd_gillette_internal5otete7jaimev221DecodeHasNextShapeROKERbPKhmPm +00000000002d05a0 g DF .text 00000000000003b0 _ZNK7android7String88walkPathEPS0_ +000000000006fbb8 g DF .text 000000000000004c _ZN2nn4lmem25GetUnitHeapAllocatedCountEPNS0_6detail8HeapHeadE +00000000000b80c0 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_24IManagerForSystemServiceEE12GetProxyInfoEv +0000000000823780 w DO .rodata 0000000000000045 _ZTSNSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000003a7d24 g DF .text 0000000000000008 fdopendir +000000000022ccd0 g DF .text 0000000000000044 _ZN2nn3hid32SetSixAxisSensorFusionParametersERKNS0_19SixAxisSensorHandleEff +00000000001d570c g DF .text 000000000000004c _ZN2nn2vi6detail17IndirectLayerImpl15GetNativeWindowEPPvPNS0_13IndirectLayerEPNS1_18IndirectLayerTableE +00000000000f0a40 g DF .text 0000000000000558 silk_CNG +00000000001bf37c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw12GetFaceColorEv +0000000000175710 w DF .text 00000000000000f4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm16ELm1ELl0EEEEEELm16ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm16ELm1EvEEj +000000000004e654 g DF .text 0000000000000010 _ZN2nn2fs6detail23IsUsedReservedMountNameEPKc +00000000007b8620 w DO .rodata 0000000000000025 _ZTSN2nn2os6detail19MultiWaitHolderBaseE +0000000000145ca0 g DF .text 00000000000000e4 _ZN2nn3ngc6detail12BinaryReader5Read_EPh +0000000000145ed8 g DF .text 0000000000000178 _ZN2nn3ngc6detail12BinaryReader5Read_EPj +000000000035ad04 g DF .text 0000000000000088 _ZNSt3__115numpunct_bynameIcEC1ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEm +00000000001c9564 g DF .text 0000000000000008 _ZN2nn5swkbd27GetRequiredStringBufferSizeEv +0000000000329c60 w DF .text 00000000000001e8 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE6sentryC2ERS3_b +00000000000ca5fc w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24ITransferStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +0000000000146050 g DF .text 00000000000001b8 _ZN2nn3ngc6detail12BinaryReader5Read_EPm +00000000000caf84 w DF .text 0000000000000218 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_20InHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_26InHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000174fe8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E50_nn_sf_sync_SetPushNotificationActivityModeOnSleepEi +0000000000189894 g DF .text 00000000000000f4 _ZN2nn5audio10MixManager7AcquireEPNS0_10SubMixTypeEi +00000000001b61e4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor18GetFacelineWrinkleEv +0000000000944bc0 g DO .data 0000000000000038 _ZTIN2nn2fs6detail27StorageServiceObjectAdapterE +000000000006f36c g DF .text 000000000000004c _ZN2nn4lmem17GetExpHeapGroupIdEPNS0_6detail8HeapHeadE +00000000001cac7c g DF .text 0000000000000024 _ZN2nn5swkbd6detail18InlineKeyboardImpl15SetDisableTouchEb +0000000000145d84 g DF .text 0000000000000154 _ZN2nn3ngc6detail12BinaryReader5Read_EPt +000000000095bf78 w DO .data 0000000000000020 _ZTVN2nn3hid6detail22SixAxisSensorStateLifoE +0000000000121d60 g DF .text 0000000000000044 _ZN2nn7friends12AsyncContext6CancelEv +00000000003264f8 g DF .text 0000000000000060 _ZNSt3__115future_categoryEv +00000000000a1c54 g DF .text 0000000000000004 nnsocketDuplicateSocket +00000000002b3498 g DF .text 0000000000000040 _ZTv0_n24_N7android12ConsumerBaseD0Ev +0000000000286ad0 g DF .text 000000000000000c NvRmGpuMappingGetInfo +00000000002cbd54 g DF .text 0000000000000018 _ZN7android6Region7andSelfERKS0_ +00000000003281b4 g DF .text 0000000000000008 _ZNSt3__121__horizon_thread_data15get_thread_typeEv +00000000001a3cf4 g DF .text 0000000000000034 _ZN2nn5audio6server10MixContextC2Ev +00000000001b3208 g DF .text 0000000000000044 _ZN2nn2ec6detail15ShowShopPageArg27GetRequestRelativeUrlBufferEv +00000000002c9254 g DF .text 0000000000000008 _ZNK7android10FrameStats11isFixedSizeEv +000000000002ec74 g DF .text 0000000000000004 _ZN2nn5image11JpegEncoderD1Ev +00000000000643cc g DF .text 000000000000015c _ZN2nn2fs15RegisterProgramEmmhPKvmS2_m +00000000001d5b64 g DF .text 0000000000000020 _ZN2nn2vi6detail22ServiceReferenceHolder23ResetApplicationServiceEv +000000000095bc28 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_18SixAxisSensorStateELi16ENS1_13AtomicStorageIS3_EEEE +00000000007e1c90 w DO .rodata 0000000000000023 _ZTSN2nn4nifm6detail15INetworkProfileE +000000000009560c g DF .text 0000000000000094 _ZN2nn2os6detail22MultiWaitImplByHorizon20WaitSynchronizationNEiPjil +0000000000154424 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E17GetCmifBaseObjectEv +00000000002ca6bc g DF .text 0000000000000104 _ZN7android22GraphicBufferAllocator5allocEjjiiPPK13native_handlePi +000000000024e71c w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6Object7ReleaseEv +000000000016b1a4 g DF .text 0000000000000060 _ZN2nn8settings6system18GetAllowedSslHostsEPNS1_14AllowedSslHostEm +000000000017a694 g DF .text 0000000000000138 _ZN2nn3ssl6detail18ISslServiceFactory10InitializeEj +0000000000955af0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectE +0000000000294f80 g DF .text 0000000000000008 _ZNK7android7BBinder13isBinderAliveEv +000000000008a7d8 w DF .text 000000000000047c _ZN2nn3mem22NumberLineAllocatorPrv8AddRangeEjj +0000000000176aac w DF .text 00000000000000f4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm12ELm4ELl0EEEEEELm12ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm12ELm4EvEEj +00000000002cfd14 g DF .text 0000000000000060 _ZNK7android7String84findEPKcm +0000000000090524 g DF .text 0000000000000010 _ZN2nn2os25GetCurrentProcessorNumberEv +00000000000cc260 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service26ILibraryAppletSelfAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000001cd150 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf18ISystemRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetDisplayServiceENS0_3OutINS0_13SharedPointerINS6_26IApplicationDisplayServiceEEEvEEj +0000000000171304 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E17GetCmifBaseObjectEv +0000000000361264 g DF .text 000000000000002c _ZNSt3__111timed_mutexC1Ev +000000000036b878 g DF .text 0000000000000020 _ZNSt3__112strstreambuf6freezeEb +0000000000189cc0 g DF .text 0000000000000058 _ZN2nn5audio24PerformanceBufferManager25SetPerformanceFrameBufferEPvm +00000000001bc840 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetEyebrowYEv +00000000001a07ec g DF .text 00000000000000d0 _ZN2nn5audio6server16CommandGenerator24GenerateFinalMixCommandsEv +000000000025b340 g DF .text 000000000000013c hdcp_status +0000000000823160 g DO .rodata 0000000000000023 _ZTSNSt3__117__widen_from_utf8ILm16EEE +00000000003e3b10 g DF .text 000000000000005c wmemset +00000000000a2cc0 g DF .text 000000000000005c _ZN2nn6socket6detail7SendMsgEiPK6msghdri +000000000036b6b4 g DF .text 000000000000007c _ZNSt3__112strstreambufC1EPKhl +0000000000396660 g DF .text 0000000000000014 __cxa_pure_virtual +00000000002c72a8 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient11getRGBRangeERKNS_2spINS_7IBinderEEERi +0000000000063560 g DF .text 0000000000000054 _ZN2nn2fs6detail8AllocateEm +000000000009cdb8 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS0_14IServiceObjectEE19FunctionForBoolTypeEv +0000000000822dc0 g DO .rodata 0000000000000004 _ZNSt3__16locale4timeE +00000000008232b0 g DO .rodata 0000000000000022 _ZTSNSt3__115__codecvt_utf16IDsLb0EEE +0000000000361084 g DF .text 0000000000000004 _ZNSt3__119declare_no_pointersEPcm +000000000006ce60 g DF .text 0000000000000058 _ZN2nn3htc8FinalizeEv +00000000001a5314 g DF .text 00000000000000bc _ZN2nn5audio6server12SplitterInfo15InitializeInfosEPS2_iiPim +00000000003135d8 g DF .text 00000000000000b4 _ZN2nn3fgm7Request10SetAndWaitEjj +00000000001c3498 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw13SetBeardScaleEi +00000000002a03fc g DF .text 0000000000000038 _ZNK7android6Parcel9readInt32EPi +00000000000b51b0 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm0ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm16ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000000459bc g DF .text 000000000000002c _ZN2nn4diag6detail22PrintBacktraceItemImplEmb +0000000000274580 g DF .text 0000000000000008 NvRmChannelSyncPointWaitmexTimeout +000000000019c260 g DF .text 00000000000000b4 _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl29ExecuteAudioRendererRenderingEv +00000000008014c0 w DO .rodata 00000000000000c2 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryIN3nns9hosbinder16IHOSBinderDriverENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001261cc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E36_nn_sf_sync_ResendFacedFriendRequestERKNS_7account3UidENSL_23NetworkServiceAccountIdE +00000000001b575c g DF .text 000000000000000c _ZN2nn2la21CommonArgumentsWriter12SetLaVersionEtt +000000000022b92c g DF .text 0000000000000044 _ZN2nn3hid6system27ApplyNpadSystemCommonPolicyEv +0000000000230e18 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E45_nn_sf_sync_SetShiftGyroscopeCalibrationValueENS5_19SixAxisSensorHandleENS_6applet20AppletResourceUserIdEff +00000000003d1db4 w DF .text 00000000000002d4 __posix_getopt +000000000010983c g DF .text 0000000000000450 opus_pcm_soft_clip +0000000000811c50 w DO .rodata 000000000000002d _ZTSN2nn3ldn6detail26ILocalCommunicationServiceE +00000000001c33d8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetEyebrowYEi +00000000001c31a8 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetCopyableEi +00000000007d8760 w DO .rodata 000000000000002f _ZTSN2nn7friends6detail3ipc20INotificationServiceE +0000000000257d5c g DF .text 0000000000000074 nvcecEnable +00000000003ab1e4 g DF .text 0000000000000004 sem_init +000000000015da4c g DF .text 0000000000000050 _ZN2nn4pctl37RevertRestrictedSystemSettingsEnteredEv +00000000007e8da0 w DO .rodata 00000000000000c8 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001a81ec g DF .text 000000000000003c _ZN2nn5audio3dsp20CommandListProcessor5SetupEPKvm +000000000023ab90 g DF .text 0000000000000044 _ZN2nn8irsensor18RunMomentProcessorERKNS0_14IrCameraHandleERKNS0_21MomentProcessorConfigE +000000000034167c w DF .text 0000000000000620 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_getES4_S4_RNS_8ios_baseERjP2tmcc +00000000002cbc80 g DF .text 00000000000000bc _ZN7android6Region13operationSelfERKS0_i +000000000016b8a0 g DF .text 0000000000000070 _ZN2nn8settings6detail29IsForceMuteOnHeadphoneRemovedEPb +0000000000115498 g DF .text 0000000000000134 opus_multistream_surround_encoder_get_size +000000000015d884 g DF .text 000000000000006c _ZN2nn4pctl34ConfirmLaunchApplicationPermissionENS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyE +00000000000a1888 g DF .text 0000000000000004 _ZN2nn6socket6AcceptEiP8sockaddrPj +0000000000232930 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E31_nn_sf_sync_HasLeftRightBatteryENS0_3OutIbvEESL_j +00000000003e30bc g DF .text 0000000000000040 wcpncpy +000000000006c7e0 g DF .text 0000000000000028 _ZN2nn2fs6detail27StorageServiceObjectAdapterD1Ev +00000000001a59b4 g DF .text 00000000000001b8 _ZN2nn5audio6server9VoiceInfo16UpdateParametersEPNS0_6common17BehaviorParameter9ErrorInfoEPKNS0_9VoiceInfo11InParameterERNS1_10PoolMapperERKNS1_12BehaviorInfoE +000000000013d298 g DF .text 00000000000001d8 _ZN2nn3nfp6client19CreateUserInterfaceEv +00000000003a7d88 g DF .text 000000000000008c readdir +000000000004da1c g DF .text 00000000000000a4 _ZN2nn2fs6detail18FileSystemAccessor16GetFreeSpaceSizeEPlPKc +0000000000162684 w DF .text 00000000000001c0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEEEEELm1ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm4EEENS2_27OutHandleClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEEj +00000000001736a0 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object12AddReferenceEv +000000000019ee8c g DF .text 0000000000000034 _ZN2nn5audio6server11EntryAspectD2Ev +00000000003e6444 g DF .text 00000000000000e0 __nnmusl_DirSeek +0000000000090710 g DF .text 000000000000000c _ZN2nn2os22GetSystemTickFrequencyEv +00000000002a0014 g DF .text 0000000000000010 _ZN7android6Parcel4Blob4initEbPvm +000000000005dfe8 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm16ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi25ELm769EEEEEELm0ELm16ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm16ELm8EEENS2_24BufferClientArgumentTypeEj +00000000003966ac g DF .text 0000000000000054 _ZNSt11logic_errorD1Ev +000000000009bbac g DF .text 000000000000000c _ZNK2nn2sf4hipc6detail25HipcMessageBufferAccessor12GetProcessIdEv +00000000001a2930 g DF .text 0000000000000004 _ZN2nn5audio6server14EffectInfoBase26UpdateForCommandGenerationEv +00000000000b43e8 g DF .text 00000000000000b4 _ZN2nn7account54ProxyProcedureToIntroduceExternalNetworkServiceAccountEPNS0_49ExternalNetworkServiceAccountIntroducingProcedureERKNS0_9SessionIdE +00000000007c0f70 w DO .rodata 000000000000015e _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000ba074 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES6_E36_nn_sf_sync_CompleteUserRegistrationERKNS5_3UidE +000000000095cfc0 w DO .data 0000000000000018 _ZTIN2nn3hid10IHidServerE +00000000003c30a0 w DF .text 0000000000000008 towupper_l +000000000020fab8 g DF .text 0000000000000204 FSS_free_table +000000000005a68c w DF .text 0000000000000210 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEENSI_ILm64ELm8ELl8EEENSI_ILm4ELm4ELl4EEEEEELm72ELm0ELb0EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm1ELm1EvEENSU_ILm64ELm8EvEENSU_ILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +0000000000070f64 g DF .text 0000000000000008 _ZN2nn4lmem6detail19GetUnitHeapUnitSizeEPNS1_8HeapHeadE +00000000003262bc g DF .text 000000000000001c _ZNSt16nested_exceptionD1Ev +00000000000b4334 g DF .text 00000000000000b4 _ZN2nn7account69ProxyProcedureToIntroduceExternalNetworkServiceAccountForRegistrationEPNS0_49ExternalNetworkServiceAccountIntroducingProcedureERKNS0_9SessionIdE +00000000002ba6fc g DF .text 0000000000000008 _ZThn8_N7android17BnSurfaceComposer10onTransactEjRKNS_6ParcelEPS1_j +000000000003b614 g DF .text 0000000000000010 _ZNK2nn4util16BinaryFileHeader13IsEndianValidEv +0000000000133e60 g DF .text 0000000000000068 _ZN2nn4htcs6detail8shutdownENS_2sf13SharedPointerINS_3tma7ISocketEEEiRi +00000000001490c8 g DF .text 0000000000000068 _ZN2nn3ngc6detail2Bp5BuildEPKjj +0000000000175050 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E41_nn_sf_sync_GetErrorReportSharePermissionENS0_3OutIivEE +00000000002d205c g DF .text 0000000000000068 _ZN7android10VectorImpl15release_storageEv +000000000012a5e8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_7friends6detail3ipc20INotificationServiceEEEvi +00000000001d037c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E49_nn_sf_sync_BindSharedLowLevelLayerToManagedLayerEmRKNS_2vi11DisplayNameENS_6applet20AppletResourceUserIdE +0000000000945818 g DO .data 0000000000000038 _ZTVN2nn2os6detail27MultiWaitHolderOfTimerEventE +0000000000294f04 g DF .text 0000000000000008 _ZN7android7IBinder12remoteBinderEv +00000000000b2780 g DF .text 00000000000000c8 _ZN2nn7account6detail22ShowUserSelectorCommonEPNS0_3UidERKNS0_10UiSettingsE +000000000095dc28 w DO .data 0000000000000070 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail20IrSensorSystemServerEEEEEE13ServiceObjectESJ_E6ObjectE +00000000007e4c00 w DO .rodata 00000000000000e5 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +000000000015daf4 g DF .text 0000000000000068 _ZN2nn4pctl22GetSafetyLevelSettingsEPNS0_19RestrictionSettingsENS0_11SafetyLevelE +00000000002d0984 g DF .text 0000000000000138 _ZNK7android7String816getPathExtensionEv +00000000003dca90 g DF .text 0000000000000090 fgetc +000000000018b060 g DF .text 0000000000000008 _ZN2nn5audio19SplitterInfoManager36GetSplitterDestinationWorkBufferSizeEi +00000000007c6470 w DO .rodata 00000000000000fe _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000235254 w DF .text 0000000000000168 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutHandleArgumentInfoILi0ELi1EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutHandleClientArgumentTypeENSK_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000000c9168 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E21_nn_sf_sync_TerminateEv +000000000011e720 g DF .text 0000000000000158 _ZN2nn7friends17SendFriendRequestEPNS0_12AsyncContextERKNS_7account3UidENS3_23NetworkServiceAccountIdENS0_11RequestTypeE +000000000095e480 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail15IMonitorServiceE +0000000000a80c40 w DO .bss 0000000000000010 _ZNSt3__17num_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE2idE +00000000000d6690 g DF .text 0000000000000098 _ZN2nn4bcat17DeliveryCacheFileD1Ev +000000000015cb80 g DF .text 0000000000000058 _ZN2nn2oe15RequestToRebootEv +000000000029eb38 g DF .text 00000000000000bc _ZN7android6Parcel12writeInplaceEm +0000000000122998 g DF .text 000000000000000c _ZN2nn7friends12UserPresenceC1Ev +000000000013e728 g DF .text 0000000000000078 _ZN2nn3nfp8WriteNtfERKNS0_12DeviceHandleEPKvmNS0_12NtfWriteTypeE +0000000000151e88 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E32_nn_sf_sync_RemoveNetworkProfileERKNS_4util4UuidE +00000000001e2840 g DF .text 0000000000000010 FS_get_version +00000000003dcc30 g DF .text 0000000000000178 fgets +0000000000953070 w DO .data 0000000000000018 _ZTIN2nn3nfp6detail5IUserE +0000000000238920 g DF .text 000000000000004c _ZNK2nn8irsensor6detail13StatusManager17GetIrCameraStatusERKNS0_14IrCameraHandleE +0000000000173410 w DF .text 0000000000000158 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi21ELm256EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +0000000000801380 w DO .rodata 000000000000002b _ZTSN2nn5visrv2sf26IApplicationDisplayServiceE +0000000000948b10 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000001ca158 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard23SetDecidedEnterCallbackEPFvPKNS0_15DecidedEnterArgEE +00000000000c8dc8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE21_nn_sf_sync_GetResultEv +00000000001b67f0 g DF .text 0000000000000010 _ZNK2nn3mii6detail15BufferAllocator14GetCurrentSizeEv +0000000000199bf8 g DF .text 00000000000000c4 _ZN2nn5audio20SetAudioInDeviceGainEPNS0_7AudioInEf +00000000002c979c g DF .text 000000000000011c _ZN7android13GraphicBufferC2EP19ANativeWindowBufferb +000000000032f0d4 w DF .text 000000000000005c _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEE4swapERS3_ +00000000007c3680 w DO .rodata 000000000000014b _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail14ISessionObjectENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000000d2024 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +0000000000151c74 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E29_nn_sf_sync_CreateScanRequestENS0_3OutINS0_13SharedPointerINS6_12IScanRequestEEEvEE +000000000016b204 g DF .text 0000000000000044 _ZN2nn8settings6system19GetHostFsMountPointEPNS1_16HostFsMountPointE +0000000000318ca0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetVoltageRangeENS0_3OutIivEESH_SH_i +000000000009133c g DF .text 0000000000000004 nnosInitializeMultiWaitHolderForThread +000000000018159c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E33_nn_sf_sync_GetDeviceLocationNameENS0_3OutINSL_12LocationNameEvEE +000000000022bfcc g DF .text 0000000000000044 _ZN2nn3hid30SetNpadJoyAssignmentModeSingleERKjNS0_17NpadJoyDeviceTypeE +00000000007cf030 w DO .rodata 000000000000011a _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001c6564 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E16_nn_sf_sync_Get1ENS0_3OutIivEERKNS0_8OutArrayINS5_8CharInfoEEEi +00000000000b4960 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_29IAccountServiceForApplicationEE22_nn_sf_sync_GetProfileENS0_3OutINS0_13SharedPointerINS5_7profile8IProfileEEEvEERKNS5_3UidE +00000000007bfb30 w DO .rodata 00000000000001ac _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForAdministratorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6ObjectE +0000000000254218 g DF .text 00000000000000a8 _ZN2nn3web36ShowOfflineHtmlPageArgWithPlayReportC1ERKNS_13ApplicationIdEPKc +0000000000152034 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E39_nn_sf_sync_GetInternetConnectionStatusENS0_3OutINS6_2sf24InternetConnectionStatusEvEE +00000000002cf930 g DF .text 0000000000000134 _ZN7android7String86appendEPKcm +000000000008fcfc g DF .text 0000000000000054 _ZN2nn2os21SdkRecursiveMutexType4LockEv +0000000000190778 g DF .text 000000000000038c _ZN2nn5audio17OpenAudioRendererEPNS0_19AudioRendererHandleERKNS0_22AudioRendererParameterEPvm +00000000003ab0a0 g DF .text 0000000000000004 pthread_attr_setstacksize +0000000000234d08 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E60_nn_sf_sync_AcquireDeviceRegisteredEventForControllerSupportENS0_3OutINS0_12NativeHandleEvEE +00000000007c1240 w DO .rodata 000000000000017b _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEEE +000000000095b7f0 g DO .data 0000000000000030 _ZTVN2nn3hid6detail20SharedMemoryAccessorE +00000000003411d4 w DF .text 00000000000000b8 _ZNKSt3__18time_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEE17__get_weekdaynameERiRS4_S4_RjRKNS_5ctypeIcEE +0000000000334358 w DF .text 0000000000000004 _ZNSt3__17collateIwED2Ev +00000000009ed500 g DO .bss 0000000000000008 _ZN2nn3ssl6detail14ServiceSession16g_ServiceSessionE +00000000000bf220 g DF .text 0000000000000008 _ZN2nn7account33ExternalNetworkServiceAccountInfoC2EPNS0_4baas18IGuestLoginRequestE +000000000018dd3c g DF .text 0000000000000008 _ZN2nn5audio21Axfx2DelayGetMaxDelayEPNS0_14Axfx2DelayLineE +00000000002cdebc g DF .text 0000000000000098 _ZNK7android12SharedBuffer5resetEm +0000000000133f34 g DF .text 0000000000000020 _ZN2nn4htcs12GetLastErrorEv +000000000016f128 g DF .text 00000000000000a8 _ZN2nn8settings6detail18GetSettingsItemKeyEPmPvmRKNS0_5fwdbg23SettingsItemKeyIteratorE +000000000019f4a0 g DF .text 0000000000000630 _ZN2nn5audio6server16CommandGenerator20GenerateVoiceCommandERNS1_9VoiceInfoERNS0_10VoiceStateERNS1_20VoiceChannelResourceEi +00000000003e1ed0 g DF .text 0000000000000090 __strcasecmp_l +00000000000974bc g DF .text 0000000000000008 nnResultSuccess +000000000017b768 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E25_nn_sf_sync_GetCipherInfoEjRKNS0_9OutBufferE +00000000009460c8 w DO .data 0000000000000068 _ZTVN2nn2sf4hipc6server17HipcServerMessageE +00000000001ce8dc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetDisplayGammaENS0_3OutIfvEEm +0000000000187fd8 g DF .text 000000000000004c _ZN2nn5audio22IsI3dl2ReverbRemovableEPKNS0_15I3dl2ReverbTypeE +0000000000199f98 g DF .text 0000000000000004 _ZN2nn5audio32CreateFinalOutputRecorderManagerEv +000000000029e658 g DF .text 000000000000008c _ZN7android6Parcel10writeInt32Ei +00000000002cdd48 g DF .text 0000000000000050 _ZNK7android12SharedBuffer7releaseEj +00000000000b9acc w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE22_nn_sf_sync_GetProfileENS0_3OutINS0_13SharedPointerINS5_7profile8IProfileEEEvEERKNS5_3UidE +00000000009486b0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_EE +00000000000d316c g DF .text 00000000000000a4 _ZN2nn6applet20TryPopFromOutChannelEPNS0_13StorageHandleENS0_19LibraryAppletHandleE +00000000002d2c1c g DF .text 0000000000000068 _ZN7android10VectorImpl3addEv +0000000000295758 g DF .text 00000000000000b0 _ZN7android9BpRefBaseC1ERKNS_2spINS_7IBinderEEE +00000000003341b0 g DF .text 0000000000000004 _ZNSt3__117__widen_from_utf8ILm32EED2Ev +0000000000076940 g DF .text 0000000000000484 nnmem_nlib_memutf16_to_utf8 +000000000033a6dc w DF .text 000000000000048c _ZNKSt3__17num_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE23__do_get_floating_pointIdEES4_S4_S4_RNS_8ios_baseERjRT_ +00000000001b4c5c g DF .text 0000000000000074 _ZN2nn2la27PushLargeStorageToInChannelEPvmb +0000000000187f48 g DF .text 0000000000000048 _ZN2nn5audio17RemoveI3dl2ReverbEPNS0_19AudioRendererConfigEPNS0_15I3dl2ReverbTypeEPNS0_12FinalMixTypeE +000000000009d3a4 g DF .text 0000000000000008 _ZN2nn2sf4hipc6server24HipcServerSessionManager21Process2ManagerInvokeEPNS2_17HipcServerSessionEPvmS6_m +0000000000091ea8 g DF .text 0000000000000060 _ZN2nn2os6detail13ThreadManager26SetZeroToAllThreadsTlsSafeEi +00000000000d0190 g DF .text 0000000000000288 _ZN2nn3apm27SetPerformanceConfigurationENS0_15PerformanceModeENS0_24PerformanceConfigurationE +000000000022fc08 g DF .text 00000000000000b4 _ZN2nn3hid15VibrationPlayer4LoadEPKvm +0000000000283250 g DF .text 000000000000001c NvDdkVicConfigureTransform +00000000001c5888 g DF .text 0000000000000010 _ZNK2nn3mii8Database12BuildDefaultEPNS0_8CharInfoEi +00000000002ce3d4 g DF .text 0000000000000038 _ZN7android8String16C1EPKc +000000000000a798 g DF .text 0000000000000170 _ZN2nn5image6detail4jpeg20jpeg_finish_compressEPNS2_20jpeg_compress_structE +00000000009510d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +000000000023c2b8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E37_nn_sf_sync_RunImageTransferProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleERKNS5_34PackedImageTransferProcessorConfigEONS0_12NativeHandleEm +00000000007adce0 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f14ConstantYellowE +00000000001a76a8 g DF .text 0000000000000040 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImplD1Ev +0000000000008cdc w DF .text 00000000000002cc _ZN2nn6crypto6detail11GcmModeImplINS1_20GcmModeGenericHelperEE13EncryptUpdateEPvmPKvm +00000000001ce920 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetDisplayCmuLumaENS0_3OutIfvEEm +00000000002cb38c g DF .text 0000000000000030 _ZN7android6RegionC2ERKS0_ +00000000000a187c g DF .text 0000000000000004 _ZN2nn6socket8RecvFromEiPvmiP8sockaddrPj +00000000001a7b5c g DF .text 000000000000000c _ZN2nn5audio6server6detail39QueryAudioDeviceOutputNotificationEventEPjRKNS_6applet20AppletResourceUserIdE +00000000001a3868 g DF .text 0000000000000074 _ZNK2nn5audio6server11AddressInfo12GetReferenceEb +00000000001d0220 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_SetDefaultDisplayEm +000000000016ecc4 g DF .text 0000000000000110 _ZN2nn8settings6detail24GetSettingsItemValueSizeEPmPKcS4_ +00000000001750f8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E51_nn_sf_sync_SetConsoleSixAxisSensorAccelerationBiasERKNS5_6system36ConsoleSixAxisSensorAccelerationBiasE +00000000001a7c20 w DF .text 0000000000000004 _ZN2nn2sf22UnmanagedServiceObjectINS_5audio6detail21IAudioRendererManagerENS2_6server24AudioRendererManagerImplEE12AddReferenceEv +00000000007cba50 w DO .rodata 00000000000000fd _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_6grcsrv17IGameMovieTrimmerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_EE +00000000003a8060 g DF .text 000000000000006c at_quick_exit +000000000010c49c g DF .text 0000000000000158 opus_encoder_create +00000000007add00 g DO .rodata 0000000000000010 _ZN2nn4util7Color4f12ConstantCyanE +0000000000122b9c g DF .text 000000000000013c _ZN2nn7friends12UserPresence6CommitEv +00000000002327d8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E42_nn_sf_sync_GetActualVibrationGcErmCommandENS0_3OutINS5_21VibrationGcErmCommandEvEENS_6applet20AppletResourceUserIdENS5_21VibrationDeviceHandleE +0000000000236150 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEES6_E17GetCmifBaseObjectEv +00000000001fadfc g DF .text 0000000000000038 scale_char +0000000000295a80 g DF .text 0000000000000024 _ZN7android9BpRefBase15onLastStrongRefEPKv +00000000000b9a0c w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE12GetProxyInfoEv +00000000000cb710 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E45_nn_sf_sync_SetDefaultHomeButtonLongPressTimeEl +000000000011842c g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder13GetSampleRateEv +000000000017ec1c g DF .text 000000000000006c _ZN2nn4time13ClockSnapshotC1Ev +00000000000bde80 g DF .text 00000000000000e8 _ZN2nn7account27PutBaasChannelResourceAsyncEPNS0_12AsyncContextERKNS0_3UidERKNS_4npns17NotificationTokenE +0000000000186090 g DF .text 000000000000008c _ZN2nn5audio14AddBufferMixerEPNS0_19AudioRendererConfigEPNS0_15BufferMixerTypeEPNS0_10SubMixTypeE +00000000000bcf24 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E30_nn_sf_sync_ApplyResponseAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEERKNS0_7InArrayIcEE +000000000094fbf0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc29IDeliveryCacheProgressServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +00000000002923e0 g DF .text 0000000000000010 NvWsiSetCallbacks +00000000007cb180 w DO .rodata 0000000000000026 _ZTSN2nn2am7service19ILibraryAppletProxyE +000000000011abdc g DF .text 0000000000000050 _ZN2nn3err15ShowErrorRecordENS0_9ErrorCodeENS_4time9PosixTimeE +000000000016afec g DF .text 0000000000000050 _ZN2nn8settings6system14IsUsb30EnabledEv +00000000002a05fc g DF .text 000000000000002c _ZNK7android6Parcel10readIntPtrEv +00000000003abf74 g DF .text 000000000000003c time +000000000014b60c w DF .text 0000000000000004 _ZN2nn3ngc6detail12OutputStreamD2Ev +00000000000906f8 g DF .text 0000000000000010 _ZN2nn2os19GetUsedTlsSlotCountEv +00000000000d18e4 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +00000000003ae7c8 g DF .text 000000000000033c acos +00000000000c5e24 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_GetEventHandleENS0_3OutINS0_12NativeHandleEvEE +0000000000320fa8 w DF .text 00000000000002cc _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIxxEEPxEEbT0_S5_T_ +0000000000175198 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E54_nn_sf_sync_GetConsoleSixAxisSensorAngularVelocityGainENS0_3OutINS5_6system39ConsoleSixAxisSensorAngularVelocityGainEvEE +00000000002325f0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E56_nn_sf_sync_IsUnintendedHomeButtonInputProtectionEnabledENS0_3OutIbvEENS_6applet20AppletResourceUserIdEj +00000000009574c0 w DO .data 0000000000000018 _ZTIN2nn5audio6detail24IAudioInManagerForAppletE +000000000017ccac g DF .text 00000000000000ac _ZN2nn3ssl6detail16SslMemoryManager10InitializeEPcm +0000000000805130 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi74EE4MaskE +0000000000092c24 g DF .text 00000000000000e0 _ZN2nn2os6detail48UpdateSignalStateAndRecalcNextTimeToWakeupUnsafeEPNS0_14TimerEventTypeENS_8TimeSpanE +00000000007c0a40 w DO .rodata 0000000000000165 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEEE +0000000000145bf4 g DF .text 000000000000004c _ZN2nn3ngc6detail12BinaryReader4OpenEPNS1_11InputStreamE +00000000007b32f0 w DO .rodata 0000000000000018 _ZTSN2nn5fssrv2sf8IStorageE +000000000097c140 w DO .data 0000000000000018 _ZTINSt3__114codecvt_bynameIDic11__mbstate_tEE +00000000003ab098 g DF .text 0000000000000004 pthread_attr_setscope +000000000097d3a8 g DO .data 0000000000000010 _ZTINSt3__114error_categoryE +0000000000097108 g DF .text 0000000000000354 _ZN2nn2os6detail20UserExceptionHandlerEv +0000000000318d6c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E22_nn_sf_sync_InitializeEv +00000000000914b8 g DF .text 0000000000000004 nnosUnlinkMultiWaitHolder +00000000001a4d78 g DF .text 0000000000000050 _ZN2nn5audio6server14DeviceSinkInfoC1Ev +000000000026b014 g DF .text 0000000000000010 NvRmSurfacePrepareCompressibleRead +00000000000bd37c w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_14ISessionObjectEEEvi +000000000016cb84 g DF .text 0000000000000070 _ZN2nn8settings6detail19GetConfigurationId1EPNS0_7factory16ConfigurationId1E +00000000003dc7b8 g DF .text 00000000000000c0 fclose +00000000000d3678 g DF .text 0000000000000090 _ZN2nn6applet23CreateLibraryAppletSelfENS_2sf13SharedPointerINS_2am7service26ILibraryAppletSelfAccessorEEENS2_INS4_25IProcessWindingControllerEEE +00000000008039f0 w DO .rodata 0000000000000063 _ZTSN2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEEE +000000000023a174 g DF .text 00000000000000f4 _ZN2nn8irsensor6detail15IrSensorSession21GetImageTransferStateERKNS0_14IrCameraHandleEPNS0_27ImageTransferProcessorStateEPvm +00000000000d3ce4 g DF .text 00000000000000a4 _ZN2nn6applet22TryPopFromContextStackEPNS0_13StorageHandleENS0_23LibraryAppletSelfHandleE +00000000001a4ecc g DF .text 0000000000000004 _ZN2nn5audio6server14DeviceSinkInfo26UpdateForCommandGenerationEv +0000000000314ecc g DF .text 0000000000000080 _ZN2nn4gpio18OpenSessionForTestEPNS0_14GpioPadSessionEi +000000000021ac10 g DF .text 0000000000000030 _ZN2nn3hid6detail12FinalizeNpadEv +00000000000a1994 g DF .text 0000000000000004 _ZN2nn6socket12GetLastErrnoEv +0000000000264670 g DF .text 0000000000000020 glslc_Realloc +0000000000366b30 w DF .text 00000000000000c8 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE7replaceIPKwEENS_9enable_ifIXsr19__is_input_iteratorIT_EE5valueERS5_E4typeENS_11__wrap_iterIS8_EESF_SA_SA_ +000000000018a880 g DF .text 0000000000000030 _ZN2nn5audio11SinkManager4FreeEPNS0_8SinkInfoE +00000000001a3a34 g DF .text 0000000000000144 _ZN2nn5audio6server7MixInfo6UpdateERNS0_6common10EdgeMatrixERKNS0_7MixInfoERKNS1_13EffectContextERKNS1_15SplitterContextERKNS1_12BehaviorInfoE +00000000001b1314 g DF .text 0000000000000048 _ZN2nn2ec13StringToNsUidEPKc +000000000095b958 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS0_13KeyboardStateELi16ENS1_13AtomicStorageIS3_EEEE +000000000023c3ec w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E39_nn_sf_sync_RunImageTransferExProcessorENS_6applet20AppletResourceUserIdENS5_14IrCameraHandleERKNS5_36PackedImageTransferProcessorExConfigEONS0_12NativeHandleEm +000000000023d594 g DF .text 0000000000000094 _ZN22nerd_gillette_internal5otete7jaimev119DecodePacketModeROKERNS0_4ModeEPKhmPm +0000000000313868 g DF .text 0000000000000030 _ZN2nn3fgm7Request10ClearEventEv +000000000094cd30 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service25IProcessWindingControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003c59c4 g DF .text 0000000000000020 ngettext +0000000000174be0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E31_nn_sf_sync_SetShutdownRtcValueEl +0000000000091e5c g DF .text 000000000000004c _ZN2nn2os6detail13ThreadManager16GetThreadContextEPNS0_24ThreadContextInfoAarch64EPKNS0_10ThreadTypeE +00000000000c9108 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_IsCompletedENS0_3OutIbvEE +0000000000367dc0 g DF .text 00000000000001dc _ZNSt3__15stoulERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPmi +0000000000181738 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +0000000000189c10 g DF .text 0000000000000090 _ZN2nn5audio15PerformanceInfo15MoveToNextFrameEv +000000000019d02c w DF .text 0000000000000068 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail12IAudioDeviceES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl15AudioDeviceImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6Object7ReleaseEv +00000000002be734 g DF .text 0000000000000008 _ZThn8_N7android23BnSurfaceComposerClient10onTransactEjRKNS_6ParcelEPS1_j +000000000015107c w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_4nifm6detail8IRequestEE19FunctionForBoolTypeEv +00000000001885d4 g DF .text 0000000000000048 _ZN2nn5audio33SetI3dl2ReverbLateReverbDiffusionEPNS0_15I3dl2ReverbTypeEf +0000000000395dbc g DF .text 0000000000000014 _ZNSt20bad_array_new_lengthC2Ev +0000000000178198 g DF .text 0000000000000004 _ZN2nn3ssl10ConnectionD1Ev +0000000000361088 g DF .text 0000000000000004 _ZNSt3__121undeclare_no_pointersEPcm +0000000000145810 g DF .text 00000000000000b8 _ZNK2nn3ngc6detail11AhoCorasick6ExportEPNS1_12BinaryWriterE +0000000000168620 g DF .text 0000000000000044 _ZN2nn8settings6system19SetShutdownRtcValueEl +00000000003af570 g DF .text 0000000000000040 fdim +00000000002a0350 g DF .text 000000000000006c _ZNK7android6Parcel4readEPvm +00000000003e78f8 w DF .text 0000000000000004 __nnmusl_libc_lock_init +00000000001c5910 g DF .text 0000000000000008 _ZN2nn3mii15PrivateDatabaseC1Ev +0000000000365408 w DF .text 0000000000000050 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEC2ERKS5_mmRKS4_ +00000000001b7610 g DF .text 0000000000000018 _ZN2nn3mii6detail12GetMoleColorENS0_9GammaTypeE +0000000000065d20 w DF .text 000000000000005c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE15DoOpenDirectoryEPNS3_INS4_10IDirectoryENS6_ISA_EEEEPKcNS0_17OpenDirectoryModeE +0000000000368ad0 g DF .text 00000000000001e0 _ZNSt3__14stofERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPm +000000000010c164 g DF .text 0000000000000080 opus_encoder_get_size +00000000001c79dc g DF .text 0000000000000008 _ZNK2nn3mii13AppletManager7GetModeEv +0000000000093c4c g DF .text 0000000000000030 _ZN2nn2os6detail11VammManagerC2Ev +00000000001bcd5c g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetEyeAspectEi +0000000000045000 g DF .text 0000000000000010 _ZN2nn4diag27InitializeLogObserverHolderEPNS0_17LogObserverHolderEPFvRKNS0_11LogMetaDataERKNS0_7LogBodyEPvES9_ +00000000000c5370 w DF .text 0000000000000218 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_20InHandleArgumentInfoILi0ELi1EEEEEELm8ELm0ELb1EEESM_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_26InHandleClientArgumentTypeEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000002c64c8 g DF .text 000000000000009c _ZN7android21SurfaceComposerClient8setFlagsERKNS_2spINS_7IBinderEEEjj +0000000000329338 w DF .text 0000000000000048 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE5uflowEv +0000000000093790 w DF .text 0000000000000004 _ZN2nn2os6detail33MultiWaitHolderOfNativeWaitObject15AddToObjectListEv +000000000032f280 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEb +0000000000347084 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb0EE13do_pos_formatEv +00000000001c5454 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw11GetPadding8Ev +0000000000977f70 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000002fca8 g DF .text 00000000000002ac _ZN2nn5image13ExifExtractor7AnalyzeEv +00000000003303e0 w DF .text 00000000000001bc _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEd +0000000000122520 g DF .text 000000000000002c _ZNK2nn7friends23NintendoNetworkIdFriend14GetMiiImageUrlEPNS0_3UrlE +000000000033059c w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEe +0000000000330224 w DF .text 00000000000001bc _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEf +0000000000230b58 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E36_nn_sf_sync_UnsetMouseAutoPilotStateEv +0000000000273f20 g DF .text 0000000000000008 NvRmChannelGatherFilterEnabled +000000000032f7c4 w DF .text 00000000000001dc _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEi +00000000000b2d48 g DF .text 0000000000000228 _ZN2nn7account12ListAllUsersEPiPNS0_3UidEi +00000000001a7b50 g DF .text 000000000000000c _ZN2nn5audio6server6detail38QueryAudioDeviceInputNotificationEventEPjRKNS_6applet20AppletResourceUserIdE +000000000032f9a0 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEj +000000000034f2c0 w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIwc11__mbstate_tED1Ev +00000000003ab2dc g DF .text 0000000000000998 __strftime_fmt_1 +00000000000d5c8c g DF .text 00000000000000a0 _ZN2nn4bcat17BlockDeliveryTaskENS_13ApplicationIdE +00000000001a7bc0 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_18I3dl2ReverbCommandE +0000000000805900 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout19EnglishUnitedStatesE +0000000000250694 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3ldn6detail26ILocalCommunicationServiceEE19FunctionForBoolTypeEv +000000000032fb54 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEl +00000000001c69b4 w DF .text 0000000000000174 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm88ELm4ELl0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSI_ILm4ELm4ELl4EEENSI_ILm4ELm4ELl8EEEEEELm12ELm88ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm88ELm4EEENS2_23InRawClientArgumentTypeILm4ELm4EvEESW_SW_j +00000000001ddff0 g DF .text 0000000000000060 FSS_get_scale +000000000032fd08 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEm +000000000095e5e0 w DO .data 0000000000000018 _ZTIN2nn3ldn6detail21ISystemServiceCreatorE +0000000000947080 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account29IAccountServiceForApplicationENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +000000000018ba98 g DF .text 000000000000000c _ZNK2nn5audio23SplitterDestinationData12GetMixVolumeEi +000000000014d884 g DF .text 0000000000000054 _ZN2nn3ngc6detail3Sbv16ReleaseAllocatorEv +0000000000194d00 w DF .text 0000000000000188 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi6ELm0EEENSB_ILi1ELi6ELm0EEENSB_ILi2ELi5ELm0EEEEEELm0ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESL_SL_j +000000000032f434 w DF .text 00000000000001dc _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEs +00000000002ce040 g DF .text 0000000000000030 _ZN7android8String16C1ENS0_13StaticLinkageE +000000000032f610 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEt +000000000010c1e4 g DF .text 00000000000002b8 opus_encoder_init +0000000000232520 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E35_nn_sf_sync_MergeSingleJoyAsDualJoyENS_6applet20AppletResourceUserIdEjj +00000000007e2ba0 w DO .rodata 0000000000000113 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +00000000000ba034 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE33_nn_sf_sync_DebugSetUserStateOpenERKNS5_3UidE +0000000000222cb0 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm4EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +00000000000cabd4 w DF .text 00000000000000c0 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21ILibraryAppletCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E39_nn_sf_sync_CreateTransferMemoryStorageENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEEONS0_12NativeHandleElb +0000000000174d24 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_SetBatteryPercentageFlagEb +000000000032febc w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEx +00000000000d91c8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc25IDeliveryCacheFileServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E12GetProxyInfoEv +0000000000330070 w DF .text 00000000000001b4 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEElsEy +00000000000cc6a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E35_nn_sf_sync_GetPopExtraStorageEventENS0_3OutINS0_12NativeHandleEvEE +00000000003e5ab8 g DF .text 0000000000000150 __nnmusl_FileRename +00000000000c4fe8 w DF .text 00000000000000ac _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service30IAllSystemAppletProxiesServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_OpenLibraryAppletProxyOldENS0_3OutINS0_13SharedPointerINS6_19ILibraryAppletProxyEEEvEEmONS0_12NativeHandleE +00000000001a2e48 g DF .text 000000000000001c _ZN2nn5audio6server15I3dl2ReverbInfo26UpdateForCommandGenerationEv +0000000000153e54 w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi26ELm52EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +0000000000189b40 g DF .text 0000000000000010 _ZN2nn5audio15PerformanceInfoC2Ev +000000000002fc90 g DF .text 0000000000000004 _ZN2nn5image13ExifExtractorD0Ev +00000000002c3dc8 g DF .text 000000000000002c _ZNK7android14SurfaceControl13getLayerStateERNS_13layer_state_tE +00000000002aafb0 g DF .text 000000000000006c _ZN7android18BufferItemConsumer7setNameERKNS_7String8E +00000000003248f4 g DF .text 0000000000000054 _ZNSt3__18__c_nodeD0Ev +0000000000320e24 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIxxEEPxEEjT0_S5_S5_S5_S5_T_ +00000000001412d4 g DF .text 0000000000000008 _ZN2nn3ngc15ProfanityFilter11SetMaskModeENS1_8MaskModeE +00000000009439a0 w DO .data 0000000000000018 _ZTIN2nn5fssrv2sf8IStorageE +00000000001d71c8 g DF .text 00000000000000b0 _ZN2nn2vi6buffer11BufferQueue9GetStrideERKNS1_10BufferInfoE +0000000000228de0 g DF .text 0000000000000044 _ZN2nn3hid6system24InitializeFirmwareUpdateEv +0000000000220420 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS1_27NfcXcdDeviceHandleStateImplELi1ENS1_13AtomicStorageIS3_EEED2Ev +00000000003c27d4 g DF .text 0000000000000048 __iswalpha_l +00000000003ab0cc w DF .text 0000000000000004 pthread_exit +0000000000263734 g DF .text 0000000000000018 NvOsConditionWait +000000000034caf4 w DF .text 0000000000000490 _ZNKSt3__19money_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEE6do_putES4_bRNS_8ios_baseEce +00000000000baec8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas28IFloatingRegistrationRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E24_nn_sf_sync_RegisterUserENS0_3OutINS5_3UidEvEE +0000000000127bf4 w DF .text 0000000000000180 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm160ELm1ELl0EEENSC_17InRawArgumentInfoILm160ELm1ELl0EEENSI_ILm4ELm4ELl160EEEEEELm164ELm160ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm160ELm1EEENS2_23InRawClientArgumentTypeILm160ELm1EvEENSU_ILm4ELm4EvEEj +00000000003661f0 w DF .text 0000000000000044 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6insertEmPKw +00000000003a7774 g DF .text 0000000000000000 feclearexcept +00000000007e90b8 g DO .rodata 0000000000000004 _ZN2nn5audio22AudioRendererParameter13VoiceCountMaxE +0000000000094f48 g DF .text 00000000000000dc _ZN2nn2os6detail18DebugImplByHorizon15QueryMemoryInfoEPNS0_10MemoryInfoE +00000000001a3080 g DF .text 0000000000000008 _ZN2nn5audio6server14MemoryPoolInfo13SetDspAddressEm +00000000003a9298 g DF .text 0000000000000004 __sched_cpucount +0000000000348b88 w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIwLb1EE16do_negative_signEv +0000000000091404 g DF .text 0000000000000004 nnosTryWaitSystemEvent +0000000000948588 w DO .data 0000000000000090 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000000bf6b4 g DF .text 000000000000002c _ZNK2nn7account38ExternalNetworkServiceAccountRegistrar26GetNetworkServiceAccountIdEPNS0_23NetworkServiceAccountIdE +00000000000cd8c8 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE12GetProxyInfoEv +0000000000144d04 g DF .text 0000000000000108 _ZN2nn3ngc6detail14ContentsReader13MakeMountPathEPcmNS2_6AcTypeEi +00000000000cf494 w DF .text 0000000000000188 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSG_ILm8ELm8ELl8EEENSC_17InRawArgumentInfoILm1ELm1ELl0EEENSJ_ILm16ELm8ELl8EEEEEELm24ELm16ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEESU_NS2_23InRawClientArgumentTypeILm1ELm1EvEENSV_ILm16ELm8EvEEj +000000000094cf58 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service8IStorageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000804320 w DO .rodata 0000000000000052 _ZTSN2nn3hid6detail8RingLifoINS1_18InputDetectorStateELi1ENS1_13AtomicStorageIS3_EEEE +000000000002a460 g DF .text 0000000000000018 _ZN2nn5image6detail4jpeg23jpeg_open_backing_storeEPNS2_18jpeg_common_structEPNS2_20backing_store_structEl +00000000001b9220 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw9GetMouthYEv +000000000036d624 g DF .text 0000000000000024 _ZNSt3__122__libcpp_thread_get_idEPKNS_10shared_ptrINS_21__horizon_thread_dataEEE +00000000000bc120 w DF .text 0000000000000034 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E31_nn_sf_sync_GetRequestWithThemeENS0_3OutINS5_10RequestUrlEvEENSQ_INS5_11CallbackUriEvEEi +000000000025eb28 g DF .text 0000000000000214 NvUStrlConvertCodePage +00000000003ddd88 g DF .text 0000000000000010 getchar +0000000000805510 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi105EE4MaskE +000000000032ef54 w DF .text 0000000000000084 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEEC2EPNS_15basic_streambufIcS2_EE +00000000000cdf30 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E46_nn_sf_sync_BeginToWatchShortHomeButtonMessageEv +000000000012d9e0 g DF .text 00000000000000d0 _ZN2nn4htcs23CreateHtcsManagerByHipcEv +00000000000ba784 w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile14IProfileEditorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object7ReleaseEv +00000000001effd8 g DF .text 000000000000003c FS_open +0000000000a643a0 g DO .bss 0000000000000008 _ZN7android11IMemoryHeap10descriptorE +00000000002b4f34 g DF .text 0000000000000248 _ZN7android20BnGraphicBufferAlloc10onTransactEjRKNS_6ParcelEPS1_j +000000000017e95c g DF .text 00000000000000a8 _ZN2nn4time21SetDeviceLocationNameERKNS0_12LocationNameE +00000000000a1ba4 g DF .text 0000000000000004 nnsocketOpen +00000000000a9e2c w DF .text 0000000000000204 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSJ_ILi1ELi34ELm0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSM_ILm4ELm4ELl4EEEEEELm8ELm8ELb0EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESX_NS2_24BufferClientArgumentTypeESY_NS2_23InRawClientArgumentTypeILm4ELm4EvEES10_j +0000000000152614 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail12IScanRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E12GetProxyInfoEv +00000000001cd2bc w DF .text 0000000000000188 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESF_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSK_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000080590c g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout6FrenchE +0000000000979318 g DO .data 0000000000000030 _ZTVNSt3__117__assoc_sub_stateE +000000000008ef8c g DF .text 0000000000000068 _ZN2nn2os16PeekMessageQueueEPmPKNS0_16MessageQueueTypeE +00000000000d93fc w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm8ELm8ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +00000000001904a0 g DF .text 000000000000006c _ZN2nn5audio36GetAudioRenderersProcessRecordVolumeEPfNS_6applet20AppletResourceUserIdE +0000000000285ee4 g DF .text 0000000000000020 nvgr_get_stride +00000000009561a0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISteadyClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +0000000000122250 g DF .text 0000000000000008 _ZNK2nn7friends18FriendDetailedInfo17GetLastPlayRecordEv +00000000001a7bcc g DF .text 000000000000003c _ZN2nn5audio6common15DumpCommandListEPKvm +00000000001d544c g DF .text 000000000000002c _ZN2nn2vi13ObjectManager20FindValidLayerHolderEPNS0_5LayerE +0000000000803d90 w DO .rodata 0000000000000051 _ZTSN2nn3hid6detail8RingLifoINS0_16NpadJoyLeftStateELi16ENS1_13AtomicStorageIS3_EEEE +0000000000804c90 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi37EE4MaskE +00000000002593f8 g DF .text 000000000000005c nvdcSetThreadName +00000000003e7704 g DF .text 0000000000000058 __nnmusl_InitializeSemaphore +00000000000b83cc w DF .text 00000000000000cc _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas24IManagerForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E38_nn_sf_sync_CreateAuthorizationRequestENS0_3OutINS0_13SharedPointerINS5_3nas21IAuthorizationRequestEEEvEERKNSS_13NasClientInfoERKNS5_45NintendoAccountAuthorizationRequestParametersEONS0_12NativeHandleEj +00000000001cd874 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E24_nn_sf_sync_CloseDisplayEm +000000000094d830 w DO .data 0000000000000018 _ZTIN2nn2am7service19IApplicationCreatorE +0000000000960cf0 g DO .data 0000000000000028 _ZTIN7android9BpRefBaseE +00000000002968b0 g DF .text 0000000000000038 _ZN7android8BpBinder15onLastStrongRefEPKv +00000000000d6378 g DF .text 000000000000012c _ZN2nn4bcat22DeliveryCacheDirectory4ReadEPiPNS0_27DeliveryCacheDirectoryEntryEi +0000000000109d58 g DF .text 00000000000005ac opus_packet_parse_impl +00000000000be6a8 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES6_E44_nn_sf_sync_UnregisterNotificationTokenAsyncENS0_3OutINS0_13SharedPointerINS5_6detail13IAsyncContextEEEvEERKNS5_3UidE +00000000001d4370 g DF .text 0000000000000008 _ZN2nn2vi17FlipIndirectLayerEPNS0_13IndirectLayerE +00000000009474d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_7account6detail13IAsyncContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000007e8c90 w DO .rodata 0000000000000108 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6aocsrv6detail20IAddOnContentManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESF_E6ObjectE +000000000005fb94 g DF .text 00000000000000cc _ZN2nn2fs6detail30FileSystemServiceObjectAdapter12DoCreateFileEPKcli +000000000015bc80 g DF .text 0000000000000100 _ZN2nn2oe27GetPerformanceConfigurationENS0_15PerformanceModeE +00000000002867f8 g DF .text 000000000000004c NvRmGpuDeviceReadTimeNs +000000000094ca20 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service20IApplicationAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001bd104 g DF .text 000000000000000c _ZN2nn3mii6detail27GetVer3StoreDataDefaultNameEPNS0_8NicknameE +0000000000051960 g DF .text 00000000000000d4 _ZN2nn2fs12MountContentEPKcS2_NS_3ncm6DataIdENS0_11ContentTypeE +00000000000d57dc g DF .text 0000000000000194 _ZN2nn4bcat24RequestSyncDeliveryCacheEPNS0_21DeliveryCacheProgressENS_13ApplicationIdEj +00000000001736a8 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES7_EEEEE13ServiceObjectESH_E6Object7ReleaseEv +00000000001bf694 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw10GetEyeTypeEv +000000000022b260 g DF .text 000000000000004c _ZN2nn3hid24GetSupportedNpadStyleSetEv +00000000003e2520 w DF .text 00000000000000ac strncasecmp_l +00000000000d203c w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm4EE27InitializeShimLibraryHolderINS_3apm18IManagerPrivilegedEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESF_ +000000000022cec0 g DF .text 0000000000000048 _ZN2nn3hid24GetAccelerometerPlayModeEPNS0_21AccelerometerPlayModeERKNS0_19SixAxisSensorHandleE +000000000015dd6c g DF .text 0000000000000078 _ZN2nn4pctl35GetFreeCommunicationApplicationListEPNS0_32FreeCommunicationApplicationInfoEii +000000000025d08c g DF .text 0000000000000028 NvOsFgetc +00000000000cde14 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19IOverlayAppletProxyEE17GetCmifBaseObjectEv +000000000014b8a4 g DF .text 0000000000000018 _ZN2nn3ngc6detail11BitVector3212SetAllocatorEPNS1_16WorkBufAllocatorE +00000000001c56f8 g DF .text 000000000000003c _ZN2nn3mii8Database9IsUpdatedEi +00000000009a9130 g DO .bss 0000000000000008 _ZN2nn2ro6detail15g_pAutoLoadListE +000000000039d04c g DF .text 00000000000000d4 __lttf2 +00000000000c12f4 g DF .text 0000000000000038 _ZN2nn7account42NintendoAccountAuthorizationRequestContextD2Ev +00000000002b42f8 g DF .text 00000000000000ac _ZN7android18GraphicBufferAllocC2Ev +0000000000081a8c g DF .text 0000000000000028 nnmem_nlib_thread_getcpu +0000000000060318 g DF .text 00000000000000c4 _ZN2nn2fs6detail30FileSystemServiceObjectAdapter18DoGetFreeSpaceSizeEPlPKc +00000000007e6ed0 w DO .rodata 0000000000000183 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000329330 w DF .text 0000000000000008 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9underflowEv +000000000017b730 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E31_nn_sf_sync_GetVerifyCertErrorsERKNS0_9OutBufferENS0_3OutIjvEESQ_ +00000000000cc5a4 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E44_nn_sf_sync_GetCallerAppletIdentityInfoStackENS0_3OutIivEERKNS0_8OutArrayINS6_18AppletIdentityInfoEEE +00000000002d31f8 g DF .text 0000000000000034 _ZNK7android10VectorImpl12itemLocationEm +000000000002e5c4 g DF .text 0000000000000010 _ZN2nn5image11JpegDecoder12SetImageDataEPKvm +000000000004ece4 g DF .text 000000000000008c _ZN2nn2fs22GetDirectoryEntryCountEPlNS0_15DirectoryHandleE +00000000000aa84c w DF .text 0000000000000208 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSJ_ILm4ELm4ELl4EEENSL_ILi1ELi33ELm0EEEEEELm8ELm8ELb0EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESX_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeESZ_S10_j +000000000019db88 g DF .text 00000000000000b4 _ZN2nn5audio6server13CommandBuffer22GenerateMixRampCommandEiiffmj +000000000022ca58 g DF .text 0000000000000064 _ZN2nn3hid22GetSixAxisSensorStatesEPNS0_18SixAxisSensorStateEiRKNS0_11BasicXpadIdE +0000000000009e94 w DF .text 0000000000000570 _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE13DecryptUpdateEPvmPKvm +0000000000326298 g DF .text 0000000000000024 _ZSt17current_exceptionv +00000000002cf51c g DF .text 00000000000000c4 _ZN7android7String85setToEPKc +00000000000aff1c g DF .text 0000000000000080 _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfIcEEmPPKT_Rj +000000000018d9f4 g DF .text 0000000000000028 _ZN2nn5audio13DelayLineInitEPNS0_11FXDelayLineEjPi +00000000001c9edc g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard9SetVolumeEf +00000000003336e8 g DF .text 0000000000000490 _ZNSt3__18ios_base4InitC2Ev +0000000000328ecc w DF .text 0000000000000020 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE8in_availEv +0000000000041290 g DF .text 0000000000000008 _ZN2nn4edid24GetAudioFormatBitRateMaxEPiPKNS0_15AudioFormatInfoE +0000000000160774 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_GetSafetyLevelENS0_3OutIivEE +00000000001c6610 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E16_nn_sf_sync_Get2ENS0_3OutIivEERKNS0_8OutArrayINS5_16StoreDataElementEEEi +00000000000916f0 g DF .text 0000000000000008 _ZN2nn2os6detail36GetReadableHandleOfInterProcessEventEPKNS1_21InterProcessEventTypeE +000000000021e720 g DF .text 0000000000000064 _ZN2nn3hid6detail32EnableAssigningSingleOnSlSrPressEv +0000000000062280 g DF .text 0000000000000138 _ZN2nn2fs20GetGameCardErrorInfoEPNS0_17GameCardErrorInfoE +000000000012941c w DF .text 0000000000000168 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl8EEENSG_ILm8ELm8ELl24EEENSG_ILm1ELm1ELl0EEEEEELm32ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSR_ILm8ELm8EvEENSR_ILm1ELm1EvEEj +00000000001ceac8 w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm8ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESN_NSL_23InRawClientArgumentTypeILm8ELm8EvEEj +000000000035bc18 g DF .text 00000000000000a0 _ZNKSt3__120__time_get_c_storageIwE3__xEv +00000000001c66c8 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E16_nn_sf_sync_MoveEiRKNS5_8CreateIdE +00000000002389a0 g DF .text 0000000000000050 _ZNK2nn8irsensor6detail13StatusManager25GetIrCameraInternalStatusERKNS0_14IrCameraHandleE +000000000097a3b8 w DO .data 0000000000000070 _ZTVNSt3__117moneypunct_bynameIcLb1EEE +0000000000167140 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E28_nn_sf_sync_SetOperationModeEl +000000000012bacc g DF .text 00000000000000c4 _ZN2nn2fs41EnsureApplicationBcatDeliveryCacheStorageEPlNS_3ncm13ApplicationIdERKNS_2ns26ApplicationControlPropertyE +000000000024e1d0 g DF .text 0000000000000134 _ZN2nn6capsrv24InitializeForApplicationEv +00000000008240d0 g DO .rodata 0000000000000015 _ZTSNSt3__110istrstreamE +0000000000319d94 g DF .text 000000000000008c _ZN2nn3pwm10InitializeEv +00000000003e6bd0 g DF .text 00000000000000b4 __nnmusl_DirGetCwd +00000000002a18c8 g DF .text 0000000000000080 _ZN7android12ProcessState16setContextObjectERKNS_2spINS_7IBinderEEE +0000000000058574 w DF .text 00000000000001d4 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_21OutObjectArgumentInfoILi0ELi0EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESK_E21ProcessWithOutObjectsEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_27OutObjectClientArgumentTypeENS2_23InRawClientArgumentTypeILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +000000000032e1b8 w DF .text 0000000000000208 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEE7getlineEPwlw +0000000000329950 w DF .text 0000000000000008 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE9underflowEv +00000000000592a0 w DF .text 00000000000001bc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi5ELm0EEEEEELm0ELm0ELb0EEESI_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeEj +000000000080bb90 w DO .rodata 00000000000000ee _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail9HidServerEEEEEE13ServiceObjectE +0000000000363eec w DF .text 00000000000003d8 _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6insertIPKcEENS_9enable_ifIXaasr21__is_forward_iteratorIT_EE5valuesr38__libcpp_string_gets_noexcept_iteratorISA_EE5valueENS_11__wrap_iterIPcEEE4typeENSB_IS8_EESA_SA_ +0000000000099d84 g DF .text 0000000000000094 _ZN2nn2sf24GetCurrentMemoryResourceEv +0000000000214744 g DF .text 00000000000000b4 _ZN2nn3hid6detail10GetXpadIdsEPiPNS0_11BasicXpadIdEi +0000000000949340 w DO .data 0000000000000018 _ZTIN2nn7account24IBaasAccessTokenAccessorE +0000000000236364 g DF .text 0000000000000008 _ZN2nn8irsensor6detail29GetIrCameraHandlePlayerNumberERKNS0_14IrCameraHandleE +0000000000395d88 g DF .text 0000000000000004 _ZNSt9bad_allocD2Ev +00000000001bb67c g DF .text 0000000000000230 _ZN2nn3mii6detail26ReplaceCharInfoIfNecessaryEPNS1_11CharInfoRawE +00000000000c15b8 g DF .text 000000000000008c _ZN2nn7account42NintendoAccountAuthorizationRequestContext9GetResultEv +00000000000ceb6c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E48_nn_sf_sync_RequestFlushGamePlayingMovieForDebugEv +00000000001b6694 g DF .text 0000000000000014 _ZN2nn3mii12GetSkinColorENS0_13FacelineColorENS0_9GammaTypeE +00000000001a8230 g DF .text 0000000000000ca0 _ZN2nn5audio3dsp20CommandListProcessor7ProcessEv +0000000000093798 g DF .text 0000000000000008 _ZNK2nn2os6detail34MultiWaitHolderOfInterProcessEvent10IsSignaledEv +000000000097c120 w DO .data 0000000000000018 _ZTINSt3__114codecvt_bynameIDsc11__mbstate_tEE +00000000007c15a0 w DO .rodata 000000000000015f _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +0000000000a698e8 g DO .bss 0000000000000008 _ZN7android5Fence8NO_FENCEE +00000000000ec340 g DF .text 0000000000000660 remove_doubling +00000000001bcbe8 g DF .text 0000000000000080 _ZN2nn3mii6detail12StoreDataRaw11BuildRandomEPNS1_11UtilityImplERKNS0_10RandomDescE +00000000001ce4c4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E29_nn_sf_sync_GetZOrderCountMaxENS0_3OutIlvEEm +00000000001d25f8 w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_5visrv2sf26IApplicationDisplayServiceEE19FunctionForBoolTypeEv +00000000007ccac0 w DO .rodata 0000000000000101 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IApplicationProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000003154f0 g DF .text 0000000000000050 _ZN2nn4gpio15SetDebounceTimeEPNS0_14GpioPadSessionEi +00000000001603a0 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc30IParentalControlServiceFactoryENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E42_nn_sf_sync_CreateServiceWithoutInitializeENS0_3OutINS0_13SharedPointerINS7_23IParentalControlServiceEEEvEEm +00000000000bb9e8 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E52_nn_sf_sync_ResumeProcedureToLinkWithNintendoAccountENS0_3OutINS0_13SharedPointerINS5_3nas40IOAuthProcedureForNintendoAccountLinkageEEEvEERKNSK_4UuidE +000000000022cb4c g DF .text 0000000000000060 _ZN2nn3hid23GetSixAxisSensorHandlesEPNS0_19SixAxisSensorHandleEiRKjNS_4util10BitFlagSetILi32ENS0_12NpadStyleTagEEE +0000000000029600 g DF .text 0000000000000330 _ZN2nn5image6detail4jpeg14jpeg_idct_6x12EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000948100 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account7profile14IProfileEditorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS4_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectE +00000000007c8490 w DO .rodata 000000000000014e _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service22ILibraryAppletAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000003a7ca4 g DF .text 0000000000000000 __setjmp +00000000008002d0 w DO .rodata 0000000000000168 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +000000000007163c g DF .text 0000000000000008 nnmem_nlib_thread_attr_getptr +000000000094dcd8 w DO .data 0000000000000070 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_6grcsrv17IGameMovieTrimmerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESI_E6ObjectE +00000000001257a8 w DF .text 0000000000000008 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc14IFriendServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object12AddReferenceEv +000000000018af68 g DF .text 00000000000000ac _ZN2nn5audio19SplitterInfoManagerC2Ev +00000000001b6644 g DF .text 0000000000000014 _ZN2nn3mii15GetEyeBlueColorENS0_11CommonColorENS0_9GammaTypeE +00000000000936c8 g DF .text 000000000000005c _ZN2nn2os6detail27MultiWaitHolderOfTimerEvent20RemoveFromObjectListEv +00000000003192a0 w DF .text 0000000000000120 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENSB_ILm4ELm4ELl8EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm12ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_SO_NSM_23InRawClientArgumentTypeILm4ELm4EvEEj +000000000031e7f8 w DF .text 0000000000000184 _ZNSt3__17__sort5IRNS_6__lessIiiEEPiEEjT0_S5_S5_S5_S5_T_ +000000000034f0e8 w DF .text 0000000000000004 _ZNKSt3__18messagesIwE8do_closeEl +000000000002f5b8 g DF .text 0000000000000008 _ZN2nn5image11ExifBuilder17GetWorkBufferSizeEv +00000000001a348c g DF .text 000000000000000c _ZN2nn5audio6server11AddressInfo5SetupENS0_7CpuAddrEm +00000000000d3fb8 g DF .text 0000000000000108 _ZN2nn6applet21CreateTransferStorageEPNS0_13StorageHandleEPvm +000000000019efcc g DF .text 0000000000000034 _ZN2nn5audio6server12DetailAspectD1Ev +000000000036d3c4 g DF .text 0000000000000018 _ZNSt3__132__libcpp_recursive_mutex_destroyEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +00000000001b4cd0 g DF .text 0000000000000088 _ZN2nn2la24PopStorageFromOutChannelEPvm +0000000000295aa4 g DF .text 0000000000000028 _ZTv0_n40_N7android9BpRefBase15onLastStrongRefEPKv +000000000094ff60 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc30IDeliveryCacheDirectoryServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_EE +0000000000164920 g DF .text 0000000000000184 _ZN2nn5prepo6detail7msgpack28WriteUnsignedIntegerAutoSizeEPNS2_17OutputStreamParamEm +00000000003d313c g DF .text 00000000000001b0 wcsrtombs +000000000032944c w DF .text 0000000000000008 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE8overflowEi +000000000081f100 w DO .rodata 00000000000000f3 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8ISessionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000047090 g DF .text 0000000000000060 _ZN2nn2fs6detail8IdString8ToStringINS0_16ImageDirectoryIdEEEPKcT_ +00000000003cb1d0 g DF .text 0000000000000004 ldexp +00000000002556bc g DF .text 00000000000000a4 _ZN2nn3web16ShowSharePageArg6SetUidERKNS_7account3UidE +00000000002c9be0 g DF .text 0000000000000048 _ZN7android13GraphicBuffer9lockYCbCrEjP13android_ycbcr +00000000000b3f30 g DF .text 0000000000000034 _ZN2nn7account32CompleteUserRegistrationForciblyERKNS0_3UidE +00000000002298dc g DF .text 0000000000000044 _ZN2nn3hid5debug25SetKeyboardAutoPilotStateERKNS1_22KeyboardAutoPilotStateE +0000000000340824 w DF .text 0000000000000260 _ZNKSt3__17num_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE6do_putES4_RNS_8ios_baseEwPKv +0000000000066950 g DF .text 0000000000000128 _ZN2nn2fs17MountCacheStorageEPKcNS_3ncm13ApplicationIdE +00000000001331b4 g DF .text 0000000000000060 _ZN2nn4htcs6ListenEii +00000000003a25e8 g DF .text 0000000000000040 __floatunsidf +00000000003e71bc g DF .text 00000000000000e0 _Z33__nnmusl_GetCurrentThreadInternalPPN2nn2os10ThreadTypeEPP14pthread_data_t +00000000001ca004 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard18SetKeytopTranslateEff +0000000000229028 g DF .text 0000000000000044 _ZN2nn3hid6system19BindHomeButtonEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000090f38 g DF .text 0000000000000048 _ZN2nn2os27DefaultUserExceptionHandlerEPNS0_17UserExceptionInfoE +00000000001cd834 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E23_nn_sf_sync_OpenDisplayENS0_3OutImvEERKNS_2vi11DisplayNameE +00000000001b13c4 g DF .text 000000000000004c _ZN2nn2ec30ShowShopApplicationInformationENS_13ApplicationIdERKNS_7account10UserHandleE +00000000003e7ef4 g DF .text 0000000000000030 __nnmusl_pthread_mutexattr_settype +00000000000d9e1c g DF .text 00000000000001b8 denormalise_bands +00000000008230a0 g DO .rodata 0000000000000023 _ZTSNSt3__17codecvtIDsc11__mbstate_tEE +00000000001bcd80 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw11SetEyebrowXEi +00000000001a7b98 g DF .text 0000000000000004 _ZN2nn5audio6common11DumpCommandEPKNS0_21MixRampGroupedCommandE +0000000000823580 w DO .rodata 0000000000000044 _ZTSNSt3__17num_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000007e41d0 w DO .rodata 00000000000000f2 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +00000000009a8ca0 g DO .bss 0000000000000008 _ZN2nn2os6detail16g_OsBootParamterE +00000000001bce8c g DF .text 0000000000000004 _ZN2nn3mii6detail11UtilityImpl25GetRandomSeedBySystemTickEv +000000000014e86c g DF .text 0000000000000124 _ZNK2nn3ngc6detail9SparseSet6ExportEPNS1_12BinaryWriterE +00000000009562a0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +0000000000117e7c g DF .text 0000000000000008 _ZN2nn5codec17GetOpusBitRateMinEi +000000000016bcb0 g DF .text 0000000000000070 _ZN2nn8settings6detail23GetOverlayDispProgramIdEPNS_3ncm9ProgramIdE +0000000000823c60 w DO .rodata 0000000000000046 _ZTSNSt3__19money_getIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000000c66a4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E20_nn_sf_sync_GetEventENS0_3OutINS0_12NativeHandleEvEE +000000000095cce8 w DO .data 00000000000002d0 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6ObjectE +000000000029e088 g DF .text 000000000000000c _ZNK7android6Parcel15setDataPositionEm +000000000017f7c0 g DF .text 0000000000000094 _ZN2nn4time36GetStandardSteadyClockInternalOffsetEv +000000000015a944 w DF .text 0000000000000180 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi22ELm264EEENSD_ILi1ELi21ELm16EEEEEELm0ELm4ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSL_24BufferClientArgumentTypeESO_j +000000000024f008 g DF .text 0000000000000134 _ZN2nn3hid6detail32ShowControllerFirmwareUpdateCoreERKNS0_27ControllerFirmwareUpdateArgERKNS0_6system27ControllerSupportArgPrivateE +00000000003144c8 g DF .text 000000000000007c _ZN2nn3fgm8Debugger4ReadEPNS0_10DebugEntryEjPjS4_S4_ +000000000097a498 w DO .data 0000000000000070 _ZTVNSt3__117moneypunct_bynameIwLb1EEE +0000000000175354 w DF .text 00000000000001c8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi26ELm256EEEEEELm0ELm0ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeEj +0000000000256df8 g DF .text 0000000000000008 _ZNK2nn3web18WebPageReturnValue14GetLastUrlSizeEv +0000000000093b60 g DF .text 0000000000000098 _ZN2nn2os6detail21AddressSpaceAllocator15CheckGuardSpaceEmmm +000000000021a838 g DF .text 00000000000000a4 _ZN2nn3hid6detail29GetNpadHandheldActivationModeEPNS0_26NpadHandheldActivationModeE +0000000000947300 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEEE +00000000000639f8 g DF .text 000000000000012c _ZN2nn2fs8EraseMmcENS0_12MmcPartitionE +00000000001686f8 g DF .text 0000000000000044 _ZN2nn8settings6system25GetUserSystemClockContextEPNS_4time18SystemClockContextE +000000000025b234 g DF .text 0000000000000074 hdcp_close +00000000001a3df0 g DF .text 0000000000000008 _ZNK2nn5audio6server10MixContext15GetFinalMixInfoEv +00000000001bf16c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw9GetHeightEv +00000000003e1544 g DF .text 0000000000000004 index +000000000094bec0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service13ILockAccessorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +0000000000232b64 w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3hid15IAppletResourceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail9HidServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000023c1ac w DF .text 0000000000000038 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail14IrSensorServerEEEEEE13ServiceObjectESJ_E6Object7ReleaseEv +000000000019aa28 g DF .text 0000000000000098 _ZN2nn5audio6server17AudioRenderSystemC1ERNS_2os11SystemEventE +0000000000151230 g DF .text 0000000000000060 _ZN2nn4nifm6detail17ScanRequestClient12IsProcessingEv +0000000000239b44 g DF .text 0000000000000030 _ZN2nn8irsensor6detail15IrSensorSession32SetVersionCheckRequestEnableFlagERKNS0_14IrCameraHandleEb +0000000000942ed8 g DO .data 0000000000000020 _ZTVN2nn2fs6detail18FileSystemAccessorE +0000000000357344 g DF .text 0000000000000100 _ZNKSt3__17codecvtIwc11__mbstate_tE10do_unshiftERS1_PcS4_RS4_ +00000000008239a0 w DO .rodata 0000000000000045 _ZTSNSt3__18time_putIcNS_19ostreambuf_iteratorIcNS_11char_traitsIcEEEEEE +00000000001c3680 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw16SetBirthPlatformEi +00000000009589e8 w DO .data 0000000000000090 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail14IAudioRendererES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl17AudioRendererImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6ObjectE +00000000003aaa60 g DF .text 000000000000012c __fdopen +00000000003dc630 g DF .text 0000000000000078 dprintf +00000000002d21c4 g DF .text 0000000000000020 _ZNK7android10VectorImpl8capacityEv +0000000000134750 g DF .text 0000000000000094 _ZN2nn4htcs6detail25virtual_socket_collection7HasAddrEPKNS0_12SockAddrHtcsE +000000000023987c g DF .text 0000000000000054 _ZNK2nn8irsensor6detail15IrSensorSession15GetPointingLifoERKNS0_14IrCameraHandleE +00000000000945f4 g DF .text 00000000000001c8 _ZN2nn2os6detail11VammManager19AllocateMemoryPagesEmm +0000000000945d98 w DO .data 0000000000000010 _ZTIN2nn2sf4cmif6server23CmifServerDomainManagerE +00000000001b292c g DF .text 00000000000000b4 _ZN2nn2ec6detail12ShowShopPageEPNS1_19ShopPageReturnValueERKNS1_15ShowShopPageArgE +00000000003ddb24 g DF .text 000000000000015c fwrite +0000000000065d7c w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE8DoCommitEv +00000000001bf9ac g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw7GetEyeYEv +0000000000942498 g DO .data 0000000000000020 _ZTVN2nn5image13ExifExtractorE +00000000009a87a8 g DO .bss 00000000000003f0 _ZN2nn2os6detail26g_OsResourceManagerStorageE +00000000000b5bdc w DF .text 0000000000000160 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm1ELm1ELl0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm1ELb1EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm1ELm1EEENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000000cfb8c w DF .text 0000000000000104 _ZN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4Impl18InitializeByHandleINS_2am7service24IApplicationProxyServiceENS0_30MemoryResourceAllocationPolicyEEENS_6ResultEPNS0_13SharedPointerIT_EEPNT0_9AllocatorENS_3svc6HandleE +00000000003b983c g DF .text 00000000000000c0 __shgetc +00000000000cc500 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E37_nn_sf_sync_GetMainAppletIdentityInfoENS0_3OutINS6_18AppletIdentityInfoEvEE +0000000000399c0c g DF .text 0000000000000034 _unw_add_dynamic_fde +00000000000b0c78 g DF .text 00000000000000c8 _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferI11sockaddr_inEElRT_PKhm +00000000003b8740 g DF .text 00000000000000cc memccpy +0000000000187724 g DF .text 000000000000004c _ZN2nn5audio19SetReverbReverbGainEPNS0_10ReverbTypeEf +00000000000d7214 g DF .text 0000000000000060 _ZN2nn4bcat6detail11HandleErrorENS_6ResultE +0000000000118228 g DF .text 0000000000000008 _ZNK2nn5codec11OpusEncoder13IsInitializedEv +000000000006c924 g DF .text 0000000000000058 _ZN2nn2fs6detail27StorageServiceObjectAdapter12OperateRangeEPvmNS0_11OperationIdEllPKvm +0000000000253c40 g DF .text 0000000000000088 _ZN2nn3web22ShowOfflineHtmlPageArg18SetBootDisplayKindENS0_22OfflineBootDisplayKindE +0000000000050a0c g DF .text 0000000000000028 _ZN2nn2fs6detail8RegisterEONSt3__110unique_ptrINS1_18FileSystemAccessorENS2_14default_deleteIS4_EEEE +00000000000c7ee0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_GetLastApplicationCaptureImageERKNS0_9OutBufferE +00000000000acbc8 g DF .text 0000000000000060 _ZN2nn6socket8resolver14FinalizeClientEv +00000000009430e0 w DO .data 0000000000000028 _ZTIN2nn2sf4hipc6client34HipcSimpleClientSessionManagerBase4ImplE +000000000023c1e4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E12GetProxyInfoEv +000000000003d810 g DF .text 00000000000001ec _ZN2nn4util6TinyMt22FinalizeInitializationEv +00000000000960f0 g DF .text 0000000000000048 _ZN2nn2os6detail27InterruptEventImplByHorizon5ClearEv +000000000022237c g DF .text 00000000000000d0 _ZN2nn3hid6detail19GetTouchScreenStateILm12EEENS_6ResultEPNS0_16TouchScreenStateIXT_EEE +00000000009a8bb8 g DO .bss 0000000000000001 _ZN2nn2os6detail41g_UserExceptionHandlerValidityOnDebuggingE +00000000000b7e18 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE17GetCmifBaseObjectEv +000000000008fe64 g DF .text 000000000000005c _ZN2nn2os16AcquireSemaphoreEPNS0_13SemaphoreTypeE +00000000001983a0 g DF .text 0000000000000114 _ZN2nn5audio13CloseAudioOutEPNS0_8AudioOutE +00000000002c5154 g DF .text 0000000000000090 _ZN7android8Composer7setCropERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEERKNS_4RectE +00000000003b9c3c g DF .text 000000000000010c catan +000000000008a700 g DF .text 000000000000000c _ZN2nn3mem19NumberLineAllocator10InitializeEPFPvmS2_ES2_PFvS2_S2_ES2_b +00000000001cb888 g DF .text 0000000000000008 _ZN2nn5swkbd6detail18InlineKeyboardImpl27SetDecidedEnterCallbackUtf8EPFvPKNS0_19DecidedEnterArgUtf8EE +000000000008d930 w DF .text 0000000000000238 _ZN2nn2os6detail23TimedWaitLightEventImplEPNS0_14LightEventTypeENS_8TimeSpanE +000000000008b158 g DF .text 00000000000000b0 _ZN2nn3mem19NumberLineAllocator8AllocateEPii +00000000007c8a50 w DO .rodata 000000000000013f _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service8IStorageENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000001bacd8 g DF .text 000000000000001c _ZN2nn3mii6detail25GetDefaultMiiForMiiEditorENS0_6GenderE +00000000000b61c4 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_13IAsyncContextEEEvi +00000000000d7cec w DF .text 0000000000000330 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm27EE27InitializeShimLibraryHolderINS_4bcat6detail3ipc15IServiceCreatorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPNS0_13SharedPointerIS7_EEE_clESJ_ +00000000000adf18 g DF .text 000000000000016c _ZN2nn6socket8resolver16CancelSocketCallEi +00000000000c22a0 g DF .text 0000000000000044 _ZN2nn7account13ProfileEditorD0Ev +0000000000253cc8 g DF .text 0000000000000114 _ZN2nn3web22ShowOfflineHtmlPageArg17SetKeyRepeatFrameEii +0000000000259a04 g DF .text 0000000000000004 nvdcSetIMPArgs +0000000000316c94 w DF .text 0000000000000160 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSK_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000156870 g DF .text 0000000000000018 _ZN2nn4nifm21SetRequestRawPriorityENS0_13RequestHandleEh +00000000001a568c w DF .text 0000000000000188 _ZN2nn5audio6server9VoiceInfo11InParameterC2Ev +000000000026b08c g DF .text 0000000000000150 NvRmSurfaceGetDecompressionPolicy +00000000000a1a5c g DF .text 0000000000000004 _ZN2nn6socket13GetHostByAddrEPKvjiPKNS0_14ResolverOptionEm +000000000015d9ac g DF .text 0000000000000050 _ZN2nn4pctl29EnterRestrictedSystemSettingsEv +0000000000804fd0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi63EE4MaskE +000000000004e398 g DF .text 000000000000021c _ZN2nn2fs6detail12GetMountNameEPKc +00000000000b774c w DF .text 0000000000000074 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account31IAccountServiceForSystemServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESO_E6Object7ReleaseEv +0000000000218c88 g DF .text 0000000000000238 _ZN2nn3hid6detail27GetSixAxisSensorRightStatesEPiPNS0_18SixAxisSensorStateEiRKNS0_9JoyXpadIdE +00000000000363b4 g DF .text 0000000000000154 nnutilZlib_inflateInit_ +0000000000132f18 g DF .text 000000000000000c _ZN2nn4htcs19InitializeForSystemEPvmi +000000000021a3cc g DF .text 00000000000000a4 _ZN2nn3hid6detail15GetNpadsWithNfcEPiPji +00000000000c61f4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E47_nn_sf_sync_IsInControllerFirmwareUpdateSectionENS0_3OutIbvEE +00000000001de2b4 g DF .text 0000000000000184 FSS_get_glyphmap +0000000000239ab4 g DF .text 0000000000000030 _ZN2nn8irsensor6detail15IrSensorSession39ResetInternalStatusForLibraryAppletCallERKNS0_14IrCameraHandleE +000000000094df60 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service19IOverlayAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001341f8 g DF .text 00000000000000c0 _ZN2nn4htcs6detail25virtual_socket_collection4InitEPvm +000000000094e0a0 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service17IOverlayFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000011820c g DF .text 000000000000001c _ZNK2nn5codec11OpusEncoder17GetWorkBufferSizeEii +00000000003e495c g DF .text 0000000000000028 __month_to_secs +00000000000960a8 g DF .text 0000000000000048 _ZN2nn2os6detail27InterruptEventImplByHorizonD2Ev +0000000000395d40 g DF .text 000000000000001c _ZSt15set_new_handlerPFvvE +00000000003e6ca8 g DF .text 0000000000000004 __nnmusl_FinalizeRecursiveLock +00000000001d8fb8 w DF .text 0000000000000650 _ZNSt3__16__sortIRPFbRKN2nn6fontll15OtfKerningTable11KerningPairES6_EPS4_EEvT0_SB_T_ +0000000000255c20 g DF .text 0000000000000060 _ZNK2nn3web20SharePageReturnValue18GetShareExitReasonEv +0000000000319f14 g DF .text 0000000000000080 _ZN2nn3pwm17OpenSessionForDevEPNS0_14ChannelSessionEi +0000000000104288 g DF .text 00000000000019b0 silk_noise_shape_analysis_FIX +00000000007e90c8 g DO .rodata 0000000000000004 _ZN2nn5audio14DelayParameter15ChannelCountMaxE +0000000000232048 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_ActivateJoySixAxisSensorENS5_9JoyXpadIdE +000000000016da3c g DF .text 0000000000000090 _ZN2nn8settings6detail25GetAvailableLanguageCodesEPiPNS0_12LanguageCodeEi +0000000000169aac g DF .text 0000000000000044 _ZN2nn8settings6system23GetNotificationSettingsEPNS1_20NotificationSettingsE +00000000001d40f0 g DF .text 000000000000012c _ZN2nn2vi17OpenIndirectLayerEPPNS0_13IndirectLayerEm +000000000097be50 w DO .data 0000000000000018 _ZTINSt3__117moneypunct_bynameIcLb0EEE +000000000004c5d8 g DF .text 000000000000000c _ZN2nn2fs15RomFsFileSystem8DoCommitEv +00000000007c58b0 w DO .rodata 00000000000000fd _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service13ILockAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000117ea0 g DF .text 000000000000000c _ZN2nn5codec6detail18GetOpusGlobalMutexEv +000000000018021c g DF .text 000000000000006c _ZN2nn4time6detail7service21ServiceProviderClientD1Ev +000000000097d4c0 g DO .data 0000000000000018 _ZTISt18bad_variant_access +00000000009426d8 w DO .data 0000000000000010 _ZTIN2nn2sf4cmif6client14CmifBaseObjectE +00000000007c9300 w DO .rodata 0000000000000023 _ZTSN2nn2am7service16IStorageAccessorE +00000000008252c0 g DO .rodata 0000000000000022 _ZTSN10__cxxabiv117__class_type_infoE +00000000001d5c0c g DF .text 00000000000000cc _ZN2nn2vi6detail18SystemServiceProxyC1Ev +000000000029f0bc g DF .text 0000000000000094 _ZN7android6Parcel11writeDoubleEd +00000000001b1474 g DF .text 000000000000001c _ZN2nn2ec24ShowShopSubscriptionListENS_13ApplicationIdE +0000000000234d48 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E29_nn_sf_sync_ActivateUniquePadENS_6applet20AppletResourceUserIdENS5_6system11UniquePadIdE +0000000000079a18 g DF .text 0000000000001cb8 nnmem_nlib_vsnprintf_fallback +0000000000a68498 g DO .bss 0000000000000008 _ZN7android22ISurfaceComposerClient10descriptorE +00000000000a1878 g DF .text 0000000000000004 _ZN2nn6socket4RecvEiPvmi +00000000000a6de0 w DF .text 0000000000000228 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENSE_ILi1ELi34ELm0EEENSB_ILm4ELm4ELl8EEENSE_ILi2ELi33ELm0EEEEEELm0ELm12ELb0EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESQ_NSO_24BufferClientArgumentTypeESR_SQ_SR_j +000000000012309c g DF .text 000000000000000c _ZN2nn7friends11UserSettingC2Ev +00000000001d2998 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf19IManagerRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000002140d4 g DF .text 0000000000000078 _ZN2nn3hid6detail28RegisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdEb +00000000000c9ea8 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service8IStorageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E31_nn_sf_sync_OpenTransferStorageENS0_3OutINS0_13SharedPointerINS6_24ITransferStorageAccessorEEEvEE +0000000000324784 g DF .text 0000000000000070 _ZNSt3__18__get_dbEv +00000000002cbe94 g DF .text 00000000000000dc _ZNK7android6Region9operationERKNS_4RectEi +0000000000118fc4 g DF .text 0000000000000010 _ZN2nn5codec6detail18SetBitRateInternalEP11OpusEncoderii +000000000015d160 g DF .text 0000000000000050 _ZN2nn4pctl32NotifyWrongPinCodeInputManyTimesEv +0000000000822300 w DO .rodata 0000000000000057 _ZTSNSt3__120__shared_ptr_pointerIPNS_21__horizon_thread_dataEPFvS2_ENS_9allocatorIS1_EEEE +0000000000065c20 w DF .text 000000000000000c _ZN2nn2fs26ReadOnlyFileSystemTemplateINSt3__110unique_ptrINS0_3fsa11IFileSystemENS2_14default_deleteIS5_EEEEE18DoGetFreeSpaceSizeEPlPKc +000000000006d0a8 g DF .text 000000000000009c _ZN2nn3htc23BindHostConnectionEventEPNS_2os11SystemEventE +000000000016a074 g DF .text 0000000000000044 _ZN2nn8settings6system34GetServiceDiscoveryControlSettingsEPNS1_31ServiceDiscoveryControlSettingsE +0000000000955f08 w DO .data 0000000000000070 _ZTVN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7timesrv6detail7service12ISystemClockENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEEE13ServiceObjectESS_E6ObjectE +00000000002d3440 g DF .text 0000000000000068 _ZN7android16SortedVectorImplC2ERKNS_10VectorImplE +0000000000346fd0 w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb1EE13do_neg_formatEv +00000000000d18b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3apm14ISystemManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E36_nn_sf_sync_ClearLastThrottlingStateEv +00000000002a08f8 g DF .text 000000000000006c _ZNK7android6Parcel17readExceptionCodeEv +0000000000945740 w DO .data 0000000000000018 _ZTIN2nn2os6detail31MultiWaitHolderOfUserWaitObjectE +000000000003bf04 g DF .text 000000000000004c _ZN2nn4util8BitArray2OrEPS1_RKS1_S4_ +000000000018d9a0 g DF .text 0000000000000018 _ZN2nn5audio14DelayLineClearEPNS0_11FXDelayLineE +0000000000362014 g DF .text 0000000000000090 _ZNSt3__119__shared_mutex_base4lockEv +00000000001932a4 w DF .text 0000000000000104 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm4ELm4ELl0EEENSB_ILm8ELm8ELl16EEEEEELm24ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEENSL_ILm4ELm4EvEESM_j +00000000002021ec g DF .text 0000000000000008 FsLtt_getName +000000000021bd40 g DF .text 0000000000000294 _ZN2nn3hid6detail13GetNpadStatesEPiPNS0_11NpadGcStateEiRKj +00000000003273f4 g DF .text 00000000000000ec _ZNSt3__17promiseIvE13set_exceptionESt13exception_ptr +0000000000075518 g DF .text 0000000000000004 nnmem_nlib_memutf8_to_wide +00000000000b33a4 g DF .text 0000000000000040 _ZN2nn7account34IsUserRegistrationRequestPermittedEPb +0000000000141144 g DF .text 000000000000007c _ZN2nn3ngc15ProfanityFilterD2Ev +0000000000954cd0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +00000000001da2e8 g DF .text 00000000000000f4 _ZN2nn6fontll18ScalableFontEngine21AcquireOtfKerningLastEPKNS0_15OtfKerningTableEjj +000000000006fc10 g DF .text 000000000000004c _ZN2nn4lmem12DumpUnitHeapEPNS0_6detail8HeapHeadE +00000000007f08e0 w DO .rodata 0000000000000115 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4impl6detail16ImplTemplateBaseINS_5audio6detail12IAudioDeviceES8_NS1_18EmplacedImplHolderINS6_6server24AudioRendererManagerImpl15AudioDeviceImplEEESD_EENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE6ObjectE +00000000002cf364 g DF .text 0000000000000118 _ZN7android7String813appendFormatVEPKcSt9__va_list +00000000001890f4 g DF .text 0000000000000014 _ZN2nn5audio14MemoryPoolInfoC1Ev +00000000001c613c w DF .text 0000000000000004 _ZNK2nn2sf13SharedPointerINS_3mii6detail14IStaticServiceEE19FunctionForBoolTypeEv +00000000001c9f2c g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard15SetUserWordInfoERKNS0_12UserWordInfoE +0000000000232568 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E32_nn_sf_sync_StopLrAssignmentModeENS_6applet20AppletResourceUserIdE +0000000000365a5c w DF .text 00000000000000b0 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9push_backEw +000000000015e828 g DF .text 0000000000000050 _ZN2nn4pctl14StartPlayTimerEv +0000000000187b30 g DF .text 000000000000004c _ZN2nn5audio32SetReverbHighFrequencyDecayRatioEPNS0_10ReverbTypeEf +00000000000adef4 g DF .text 0000000000000024 _ZN2nn6socket8resolver19RequestCancelHandleEv +00000000001c96ec g DF .text 0000000000000064 _ZN2nn5swkbd28SetLeftOptionalSymbolKeyUtf8EPNS0_14KeyboardConfigEPKc +00000000002a128c g DF .text 0000000000000008 _ZNK7android6Parcel15ipcObjectsCountEv +000000000036b1fc w DF .text 0000000000000100 _ZNSt3__1plIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS9_PKS6_ +00000000001b3360 g DF .text 0000000000000028 _ZN2nn2ec6detail22GetNsUidLengthAsStringENS0_5NsUidE +00000000002293f0 g DF .text 0000000000000090 _ZN2nn3hid6system16ActivateIrSensorEjNS_6applet20AppletResourceUserIdE +000000000031bb34 w DF .text 0000000000000548 _ZNSt3__16__sortIRNS_6__lessIaaEEPaEEvT0_S5_T_ +000000000016feb0 g DF .text 0000000000000070 _ZN2nn8settings6detail12GetQuestFlagEPb +00000000002593e0 g DF .text 0000000000000010 nvdcInitAsyncEvents +0000000000362320 g DF .text 0000000000000048 _ZNSt3__118shared_timed_mutex8try_lockEv +00000000000c27e0 g DF .text 000000000000004c _ZN2nn2am21GetOverlayAppletProxyEv +000000000097a8d0 g DO .data 0000000000000040 _ZTVNSt3__114collate_bynameIwEE +0000000000119560 w DF .text 00000000000001d8 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_17InRawArgumentInfoILm8ELm4ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEENSD_ILm4ELm4ELl8EEEEEELm12ELm0ELb0EEESI_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSN_23InRawClientArgumentTypeILm8ELm4EvEENSN_26InHandleClientArgumentTypeENSP_ILm4ELm4EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001c5ebc g DF .text 0000000000000080 _ZN2nn3mii6detail21ServiceProviderClientD1Ev +00000000008223ec g DO .rodata 0000000000000004 _ZNSt3__18ios_base2inE +0000000000256ca8 g DF .text 0000000000000090 _ZN2nn3web14ShowWebPageArg19SetPageCacheEnabledEb +0000000000362b28 w DF .text 00000000000000cc _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ERKS5_mmRKS4_ +00000000001d3e40 g DF .text 00000000000000e0 _ZN2nn2vi16GetIndirectImageEPmS1_Pvmmii +00000000001fa684 g DF .text 000000000000005c fsg_SetDefaults +000000000006312c g DF .text 0000000000000044 _ZN2nn2fs6detail27InitializeFileSystemLibraryEv +00000000001cba3c g DF .text 0000000000000014 _ZN2nn5swkbd21InlineKeyboardCustomS33SetDirectionalButtonAssignEnabledEb +00000000007c0460 w DO .rodata 00000000000001a3 _ZTSN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account7profile14IProfileEditorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6ObjectE +00000000003470e0 w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb1EE14do_curr_symbolEv +000000000033b4a8 w DF .text 0000000000000340 _ZNSt3__19__num_getIwE17__stage2_int_loopEwiPcRS2_RjwRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPjRSD_Pw +000000000029dd38 g DF .text 0000000000000008 _ZNK7android6Parcel12dataCapacityEv +0000000000286480 g DF .text 0000000000000030 nvgr_override_property +00000000001d15ac w DF .text 0000000000000110 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl8EEENSB_ILm8ELm8ELl16EEENSB_ILm8ELm8ELl24EEENSB_ILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEEEEELm32ELm0ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESO_SO_NSN_ILm4ELm4EvEESP_j +0000000000964b30 g DO .data 0000000000000058 _ZTVN7android12MemoryDealerE +00000000001c564c g DF .text 0000000000000018 _ZN2nn3mii8DatabaseD2Ev +0000000000190094 g DF .text 000000000000006c _ZN2nn5audio31GetAudioOutsProcessRecordVolumeEPfNS_6applet20AppletResourceUserIdE +00000000002c9974 g DF .text 0000000000000078 _ZN7android13GraphicBuffer11free_handleEv +00000000003dbe1c g DF .text 0000000000000058 tdestroy +00000000003de678 g DF .text 0000000000000078 sscanf +0000000000294e7c g DF .text 0000000000000004 _ZN7android7IBinderD2Ev +000000000015dc18 g DF .text 0000000000000058 _ZN2nn4pctl28SetDefaultRatingOrganizationENS_2ns18RatingOrganizationE +00000000001a792c g DF .text 0000000000000044 _ZN2nn5audio6server24AudioRendererManagerImpl15AudioDeviceImpl30GetAudioDeviceOutputVolumeAutoERKNS_2sf8InBufferENS4_3OutIfvEE +000000000097e488 g DO .data 0000000000000038 _ZTVN10__cxxabiv117__pbase_type_infoE +000000000097da20 g DO .data 0000000000000018 _ZTIN10__cxxabiv120__function_type_infoE +000000000029b8ec g DF .text 000000000000008c _ZN7android10AllocationC2ERKNS_2spINS_12MemoryDealerEEERKNS1_INS_11IMemoryHeapEEElm +0000000000087f48 g DF .text 0000000000000174 _ZN2nn7nlibsdk4heap14TlsHeapCentral12GetMemStats_EPNS1_15TlsHeapMemStatsE +00000000001b8a10 g DF .text 0000000000000020 _ZNK2nn3mii6detail11CoreDataRaw27IsValidWithoutEmptyNicknameEv +000000000004b9c4 g DF .text 0000000000000008 _ZN2nn2fs15RomFsFileSystem14GetBaseStorageEv +00000000000d1ed8 w DF .text 00000000000000b0 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6Object7ReleaseEv +000000000014f038 g DF .text 00000000000000c4 _ZN2nn3ngc6detail15CompressedArray4SwapERS2_ +0000000000017a2c g DF .text 00000000000000a4 _ZN2nn5image6detail4jpeg16jpeg_read_headerEPNS2_22jpeg_decompress_structEb +000000000097be90 w DO .data 0000000000000018 _ZTINSt3__117moneypunct_bynameIwLb0EEE +000000000014b664 g DF .text 0000000000000024 _ZN2nn3ngc6detail17MemoryInputStreamC2EPKvm +00000000003c2ac0 w DF .text 0000000000000004 wctype_l +000000000034702c w DF .text 000000000000000c _ZNKSt3__110moneypunctIwLb0EE16do_positive_signEv +00000000000d6020 g DF .text 0000000000000008 _ZN2nn4bcat22DeliveryCacheDirectoryC1Ev +00000000001572ec g DF .text 0000000000000010 _ZN2nn4nifm6detail6Base6416FromBase64StringEPmPvmPKcNS2_4ModeE +00000000001527ec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E27_nn_sf_sync_GetRequestStateENS0_3OutIivEE +00000000007c7ec0 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000001d63f4 g DF .text 000000000000019c _ZN2nn2vi6detail18SystemServiceProxy25InitializeIndirectDisplayEv +00000000000cc89c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service26ILibraryAppletSelfAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001889e8 g DF .text 0000000000000048 _ZN2nn5audio13EffectManagerC1EiPNS0_10EffectInfoE +000000000003d354 g DF .text 0000000000000148 _ZN2nn4util10SwapEndianEPNS0_9ResEndianEPNS0_10StringPoolE +0000000000122488 g DF .text 0000000000000048 _ZNK2nn7friends13FriendRequest14GetMiiImageUrlEPNS0_3UrlE +00000000000916dc g DF .text 0000000000000014 _ZN2nn2os6detail22ClearInterProcessEventEPNS1_21InterProcessEventTypeE +00000000001c6508 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E20_nn_sf_sync_GetCountENS0_3OutIivEEi +00000000002280dc g DF .text 00000000000000b0 _ZN2nn3hid6detail15BindXpadIdEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +0000000000359a78 g DF .text 0000000000000008 _ZNKSt3__115__codecvt_utf16IDiLb0EE11do_encodingEv +000000000003d5a4 g DF .text 0000000000000084 _ZN2nn4util43InitializeStreamingDecompressDeflateContextEPNS0_30StreamingDecompressZlibContextE +00000000003c2d28 g DF .text 0000000000000038 iswspace +0000000000264d58 g DF .text 0000000000000054 _ZN2nv22SetGraphicsServiceNameEPKc +0000000000133214 g DF .text 0000000000000070 _ZN2nn4htcs4RecvEiPvmi +00000000003a7fc4 w DF .text 0000000000000004 __funcs_on_exit +00000000000abf44 w DF .text 0000000000000210 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSG_ILm4ELm4ELl4EEENSC_17InRawArgumentInfoILm4ELm4ELl0EEENSC_18BufferArgumentInfoILi0ELi33ELm0EEENSJ_ILm4ELm4ELl4EEENSL_ILi1ELi33ELm0EEENSJ_ILm4ELm4ELl8EEEEEELm12ELm8ELb0EEESQ_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEESY_NS2_23InRawClientArgumentTypeILm4ELm4EvEENS2_24BufferClientArgumentTypeES10_S11_S10_j +0000000000231eb8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E28_nn_sf_sync_ActivateKeyboardENS_6applet20AppletResourceUserIdE +00000000001a7cd8 w DF .text 0000000000000038 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail21IAudioRendererManagerES6_NS0_6detail27UnmanagedEmplacedImplHolderINS4_6server24AudioRendererManagerImplEEESB_S6_E33_nn_sf_sync_GetAudioDeviceServiceENS0_3OutINS0_13SharedPointerINS5_12IAudioDeviceEEEvEENS_6applet20AppletResourceUserIdE +00000000001543b0 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15INetworkProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E18_nn_sf_sync_UpdateENS0_3OutINS_4util4UuidEvEERKNS6_2sf18NetworkProfileDataE +000000000005f828 g DF .text 0000000000000028 _ZN2nn2fs6detail24FileServiceObjectAdapterD1Ev +000000000094bd50 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000016a7ac g DF .text 0000000000000078 _ZN2nn8settings7factory19GetSpeakerParameterEPNS1_16SpeakerParameterE +00000000001d5678 g DF .text 0000000000000094 _ZN2nn2vi6detail17IndirectLayerImpl27UnregisterIndirectLayerImplEPNS0_13IndirectLayerEPNS1_18IndirectLayerTableE +0000000000263958 g DF .text 000000000000002c NvOsDebugPrintf +000000000022df00 g DF .text 0000000000000044 _ZN2nn3hid5debug28SetTouchScreenAutoPilotStateILm1EEEvRKNS1_25TouchScreenAutoPilotStateIXT_EEE +00000000000c9ce8 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_22ILibraryAppletAccessorEE17GetCmifBaseObjectEv +000000000019c1a4 g DF .text 0000000000000034 _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl13RequestUpdateERKNS_2sf9OutBufferES7_RKNS4_8InBufferE +00000000007c5410 w DO .rodata 0000000000000102 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18ICommonStateGetterENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +00000000002ccda8 g DF .text 00000000000000cc _ZN7android6Region17boolean_operationEiRS0_RKS0_RKNS_4RectEii +0000000000804b30 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi26EE4MaskE +00000000001cabc0 g DF .text 0000000000000030 _ZN2nn5swkbd6detail18InlineKeyboardImpl18SetKeytopTranslateEff +00000000001d0878 w DF .text 000000000000011c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEENSD_ILm8ELm8ELl16EEEEEELm24ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSM_23InRawClientArgumentTypeILm8ELm8EvEENSP_ILm4ELm4EvEESQ_j +00000000007b1020 w DO .rodata 000000000000001a _ZTSN2nn2fs3fsa11IFileSystemE +00000000000688c4 g DF .text 0000000000000124 _ZN2nn2fs18GetSaveDataOwnerIdEPmm +00000000000bb800 w DF .text 0000000000000090 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas14IAdministratorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEES7_E30_nn_sf_sync_UploadProfileAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEE +0000000000810e90 w DO .rodata 00000000000000c5 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000117858 g DF .text 0000000000000008 _ZN2nn5codec19HardwareOpusDecoder6DecodeEPmPiPPsimPKvm +00000000001b5724 g DF .text 0000000000000034 _ZN2nn2la21CommonArgumentsWriterC1Ej +00000000001bc814 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw11GetEyeScaleEv +000000000009343c w DF .text 0000000000000008 _ZNK2nn2os6detail31MultiWaitHolderOfUserWaitObject15GetNativeHandleEPj +00000000000a5a5c g DF .text 00000000000001c4 _ZN2nn6socket6detail25CreateClientServiceByHipcEiPKc +00000000007b0de0 w DO .rodata 0000000000000025 _ZTSN2nn2sf4cmif6client14CmifBaseObjectE +000000000007195c g DF .text 000000000000007c nnmem_nlib_rwlock_tryrdlock_for +000000000016e6b4 g DF .text 0000000000000070 _ZN2nn8settings6detail16GetPtmBatteryLotEPNS0_7factory10BatteryLotE +00000000002c461c g DF .text 00000000000000a4 _ZN7android8Composer17getDisplaySurfaceERKNS_2spINS_7IBinderEEERNS1_INS_22IGraphicBufferProducerEEERNS1_INS_22IGraphicBufferConsumerEEE +0000000000038370 g DF .text 000000000000003c nnutilZlib_inflateGetHeader +000000000006ae00 g DF .text 0000000000000008 _ZN2nn2fs30SaveDataTransferSizeCalculatorC1Ev +00000000000827e8 w DF .text 00000000000000b4 _ZN2nn7nlibsdk4heap14TlsHeapCentral15GetClassFromPtrEPKv +000000000017125c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings22IFactorySettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E34_nn_sf_sync_GetGameCardCertificateENS0_3OutINS5_7factory19GameCardCertificateEvEE +0000000000077b64 g DF .text 00000000000001b0 nnmem_nlib_fd_writev +0000000000360e8c g DF .text 0000000000000044 _ZNSt3__119__shared_weak_count4lockEv +000000000019a268 g DF .text 00000000000000f8 _ZN2nn5audio23OpenFinalOutputRecorderEPNS0_19FinalOutputRecorderEPNS_2os11SystemEventERKNS0_28FinalOutputRecorderParameterE +000000000004ac94 g DF .text 00000000000000fc _ZN2nn2fs11FileStorage4ReadElPvm +00000000002276ac g DF .text 000000000000009c _ZN2nn3hid6detail22GetVibrationDeviceInfoEPNS0_19VibrationDeviceInfoERKNS0_21VibrationDeviceHandleE +00000000003e3c94 g DF .text 0000000000000038 ctime_r +0000000000228d48 g DF .text 0000000000000018 _ZN2nn3hid5debug28StartFirmwareUpdateForRevertENS0_6system11UniquePadIdE +00000000002c9e08 g DF .text 0000000000000018 _ZN7android13GraphicBuffer11unlockAsyncEPi +0000000000365b0c w DF .text 00000000000000e0 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6appendEPKwm +00000000000ed904 g DF .text 00000000000000c4 unquant_fine_energy +00000000001bfed4 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw8GetNoseYEv +000000000035a804 g DF .text 0000000000000024 _ZNSt3__117__widen_from_utf8ILm16EED0Ev +000000000036cc04 g DF .text 00000000000000d4 _ZNSt3__112system_errorC1EiRKNS_14error_categoryE +0000000000091350 g DF .text 0000000000000004 nnosTimedAcquireSemaphore +000000000019c430 g DF .text 0000000000000088 _ZN2nn5audio6server24AudioRendererManagerImplC2Ev +0000000000297154 g DF .text 00000000000000b8 _ZN7android8BpMemoryC1ERKNS_2spINS_7IBinderEEE +0000000000041934 g DF .text 0000000000000074 _ZN2nn4edid6detail19GetManufacturerCodeEPNS0_11DisplayInfoEt +00000000000ac310 g DF .text 0000000000000048 _ZN2nn6socket6detail11socketNtoaRE7in_addrPcm +0000000000803950 w DO .rodata 000000000000001f _ZTSN2nn3hid6detail12DebugPadLifoE +000000000012a898 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc28IDaemonSuspendSessionServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +000000000021eb64 g DF .text 00000000000000c4 _ZN2nn3hid6detail41BindPlayReportRegisteredDeviceUpdateEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +000000000012a8a0 w DF .text 0000000000000008 _ZZN2nn2sf40SimpleAllInOneHipcSubDomainClientManagerILm14EE27InitializeShimLibraryHolderINS_7friends6detail3ipc15IServiceCreatorEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESH_ +0000000000181748 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E17GetCmifBaseObjectEv +000000000032f060 w DF .text 0000000000000008 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEED1Ev +000000000022afcc g DF .text 000000000000009c _ZN2nn3hid6system11ActivateNfcEj +000000000022f3e8 g DF .text 000000000000007c _ZNK2nn3hid13VibrationNode15GetConnectionToEPKS1_ +00000000001c3328 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw11SetEyeScaleEi +0000000000262b28 g DF .text 00000000000000ac NvOsHeapAllocatorAlloc +000000000016817c g DF .text 0000000000000048 _ZN2nn8settings6system19SetBluetoothEnabledEb +00000000003621f4 g DF .text 0000000000000060 _ZNSt3__119__shared_mutex_base13unlock_sharedEv +0000000000075da0 g DF .text 0000000000000090 nnmem_nlib_utf16nlen_generic +00000000001d12b4 w DF .text 000000000000017c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi6ELm0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSF_ILm8ELm8ELl8EEEEEELm16ELm8ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSN_24BufferClientArgumentTypeENSN_23InRawClientArgumentTypeILm8ELm8EvEESS_j +00000000001bc890 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw8GetMoleXEv +0000000000368718 g DF .text 00000000000001e0 _ZNSt3__16stoullERKNS_12basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEEEPmi +000000000015ebe8 g DF .text 0000000000000008 _ZN2nn4pctl18PairingAccountInfoC1Ev +00000000008237d0 w DO .rodata 0000000000000013 _ZTSNSt3__19time_baseE +00000000007adc68 g DO .rodata 0000000000000004 _ZN2nn4util8Color4u812ConstantCyanE +0000000000082088 g DF .text 000000000000002c nnmem_nlib_rmdir +00000000000ba014 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account31IAccountServiceForSystemServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForAdministratorEE34_nn_sf_sync_DebugSetUserStateCloseERKNS5_3UidE +000000000008f228 g DF .text 0000000000000024 _ZN2nn2os19LinkMultiWaitHolderEPNS0_13MultiWaitTypeEPNS0_19MultiWaitHolderTypeE +0000000000230a48 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E30_nn_sf_sync_DeactivateDebugPadEv +00000000000fc110 g DF .text 00000000000007b8 silk_encode_pulses +00000000002987a8 g DF .text 000000000000000c _ZNK7android11IMemoryHeap22getInterfaceDescriptorEv +00000000000cb730 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_UpdateDefaultDisplayResolutionEv +000000000016b03c g DF .text 0000000000000048 _ZN2nn8settings6system15SetUsb30EnabledEb +00000000001ca1d0 g DF .text 0000000000000100 _ZN2nn5swkbd6detail18InlineKeyboardImplC2Ev +000000000012e138 w DF .text 000000000000013c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm4ELm4ELl4EEENS7_17InRawArgumentInfoILm4ELm4ELl68EEENSE_ILm66ELm2ELl0EEEEEELm72ELm8ELb0EEESH_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEESO_NSM_23InRawClientArgumentTypeILm4ELm4EvEENSP_ILm66ELm2EvEEj +000000000017b0e0 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E21_nn_sf_sync_ImportCrlENS0_3OutImvEERKNS0_8InBufferE +0000000000236bc4 g DF .text 00000000000000a0 _ZN2nn8irsensor6detail23StopImageProcessorAsyncERKNS0_14IrCameraHandleE +0000000000230aa8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E33_nn_sf_sync_DeactivateTouchScreenEv +00000000008238a0 w DO .rodata 000000000000004d _ZTSNSt3__115time_get_bynameIcNS_19istreambuf_iteratorIcNS_11char_traitsIcEEEEEE +0000000000199cbc g DF .text 00000000000000e8 _ZN2nn5audio20GetAudioInDeviceGainEPKNS0_7AudioInE +00000000000093d4 w DF .text 00000000000000fc _ZN2nn6crypto6detail11GcmModeImplINS1_19GcmModeAes128HelperEE5ResetEPKvm +000000000018dd44 g DF .text 0000000000000008 _ZN2nn5audio18Axfx2DelayGetDelayEPNS0_14Axfx2DelayLineE +00000000001d053c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E45_nn_sf_sync_RegisterSharedBufferImporterAruidENS_2vi7fbshare18SharedBufferHandleENS_6applet20AppletResourceUserIdE +0000000000805934 g DO .rodata 0000000000000004 _ZN2nn3hid14KeyboardLayout7SpanishE +00000000000910c4 g DF .text 0000000000000064 _ZN2nn2os18GetThreadStackInfoEPmS1_PKNS0_10ThreadTypeE +0000000000015ccc g DF .text 00000000000002ec _ZN2nn5image6detail4jpeg19jpeg_set_colorspaceEPNS2_20jpeg_compress_structENS2_13J_COLOR_SPACEE +00000000009493d0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_7account24IBaasAccessTokenAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS8_18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001b1590 g DF .text 0000000000000024 _ZN2nn2ec37ShowShopApplicationInformationForMenuENS_13ApplicationIdERKNS_7account3UidENS0_8SourceIdEPKc +000000000009cea4 g DF .text 0000000000000160 _ZN2nn2sf4hipc6server28HipcServerSessionManagerBase18ReceiveRequestBaseEPNS2_21HipcServerSessionBaseEPvmS6_m +000000000017fac0 g DF .text 0000000000000094 _ZN2nn4time51IsStandardUserSystemClockAutomaticCorrectionEnabledEv +0000000000822394 g DO .rodata 0000000000000004 _ZNSt3__18ios_base3hexE +000000000013e630 g DF .text 0000000000000088 _ZN2nn3nfp14ReadBackupDataEPvPmm +0000000000947930 w DO .data 0000000000000018 _ZTIN2nn7account31IAccountServiceForSystemServiceE +00000000001bcddc g DF .text 0000000000000008 _ZN2nn3mii6detail12StoreDataRaw13UpdateDataCrcEv +00000000000beb00 w DF .text 0000000000000164 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm8ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEEEEELm16ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm8EEENS2_23InRawClientArgumentTypeILm16ELm8EvEEj +0000000000189ca0 g DF .text 0000000000000018 _ZN2nn5audio24PerformanceBufferManagerC1Ev +00000000002a65bc g DF .text 0000000000000060 _ZNK7android22IGraphicBufferConsumer10BufferItem16getFlattenedSizeEv +00000000002b878c g DF .text 000000000000000c _ZNK7android16ISurfaceComposer22getInterfaceDescriptorEv +000000000014b630 g DF .text 0000000000000034 _ZN2nn3ngc6detail17MemoryInputStreamD0Ev +0000000000348b9c w DF .text 0000000000000008 _ZNKSt3__117moneypunct_bynameIwLb1EE13do_pos_formatEv +0000000000120160 g DF .text 0000000000000164 _ZN2nn7friends19GetProfileExtraListEPNS0_12AsyncContextEPNS0_12ProfileExtraERKNS_7account3UidEPKNS5_23NetworkServiceAccountIdEi +00000000002741cc g DF .text 00000000000000c4 NvRmChannelSyncPointWaitexTimeout +00000000002b44b0 g DF .text 0000000000000048 _ZThn8_N7android18GraphicBufferAllocD1Ev +00000000002aa7bc g DF .text 0000000000000008 _ZNK7android10BufferItem10getPodSizeEv +0000000000825350 g DO .rodata 0000000000000025 _ZTSN10__cxxabiv120__function_type_infoE +00000000003e7abc g DF .text 0000000000000018 __nnmusl_pthread_barrier_wait +000000000013ecf8 g DF .text 0000000000000078 _ZN2nn3nfp8FinalizeEv +0000000000167ecc g DF .text 0000000000000044 _ZN2nn8settings6system20GetBacklightSettingsEPNS1_19BacklightSettingsExE +00000000001849d0 w DF .text 000000000000004c _ZZN2nn2sf31SimpleAllInOneHipcClientManagerILm17EE27InitializeShimLibraryHolderINS_6aocsrv6detail20IAddOnContentManagerEEENS_6ResultEPNS0_23ShimLibraryObjectHolderIT_EEPKcPNS_14MemoryResourceEENUlPvE_8__invokeESG_ +000000000003b640 g DF .text 0000000000000010 _ZNK2nn4util16BinaryFileHeader15IsEndianReverseEv +000000000017f100 g DF .text 0000000000000008 _ZN2nn4time27EphemeralNetworkSystemClock9to_time_tERKNSt3__16chrono10time_pointINS0_17SystemClockTraitsENS3_8durationIlNS2_5ratioILl1ELl1EEEEEEE +00000000002390c8 g DF .text 0000000000000004 _ZN2nn8irsensor6detail19StatusManagerHolderD2Ev +00000000001bcd20 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw9SetGenderEi +0000000000825560 g DO .rodata 0000000000000021 _ZTSN10__cxxabiv116__enum_type_infoE +00000000001398ec g DF .text 00000000000000b0 _ZN2nn3nfc12IsNfcEnabledEv +00000000001d5850 g DF .text 00000000000000bc _ZN2nn2vi6detail18IndirectLayerTable8AllocateEPi +0000000000a80d10 w DO .bss 0000000000000010 _ZNSt3__19money_putIwNS_19ostreambuf_iteratorIwNS_11char_traitsIwEEEEE2idE +000000000006a5b0 g DF .text 000000000000022c _ZN2nn2fs32WriteSaveDataThumbnailFileHeaderEmNS0_6UserIdEPKvm +00000000007c2010 w DO .rodata 0000000000000169 _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account3nas40IOAuthProcedureForNintendoAccountLinkageENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +00000000003a68bc g DF .text 0000000000000074 __atomic_fetch_add_16 +00000000001342b8 g DF .text 0000000000000198 _ZN2nn4htcs6detail25virtual_socket_collection12CreateSocketENS_2sf13SharedPointerINS_3tma7ISocketEEERi +000000000006fa28 g DF .text 000000000000004c _ZN2nn4lmem18InvalidateUnitHeapEPNS0_6detail8HeapHeadE +0000000000185d38 g DF .text 00000000000002a0 _ZN2nn5audio15BehaviorManager11CheckErrorsEv +0000000000318e18 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E25_nn_sf_sync_ChangeVoltageENS5_18PowerControlTargetEi +00000000007e7870 w DO .rodata 000000000000017b _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISteadyClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_EE +00000000003a2b84 g DF .text 0000000000000064 __modti3 +0000000000129e80 w DF .text 00000000000001f0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm16ELm8ELl104EEENSG_ILm8ELm8ELl120EEENSG_ILm4ELm4ELl96EEENSG_ILm32ELm1ELl0EEENSG_ILm16ELm1ELl32EEENSG_ILm32ELm1ELl48EEENSG_ILm16ELm1ELl80EEEEEELm128ELm0ELb0EEESO_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm16ELm8EvEENSV_ILm8ELm8EvEENSV_ILm4ELm4EvEENSV_ILm32ELm1EvEENSV_ILm16ELm1EvEESZ_S10_j +00000000001d485c g DF .text 0000000000000090 _ZN2nn2vi15GetNativeWindowEPPvPNS0_5LayerE +000000000032ca28 w DF .text 0000000000000200 _ZNSt3__113basic_istreamIwNS_11char_traitsIwEEErsEPNS_15basic_streambufIwS2_EE +00000000000512a0 g DF .text 000000000000001c _ZN2nn2fs8MountBisEPKcNS0_14BisPartitionIdE +00000000000bae50 w DF .text 0000000000000028 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas18IGuestLoginRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_28IFloatingRegistrationRequestEE23_nn_sf_sync_GetNicknameERKNS0_8OutArrayIcEE +00000000001a28e8 g DF .text 000000000000003c _ZNK2nn5audio6server14EffectInfoBase11StoreStatusEPNS0_10EffectInfo9OutStatusEb +00000000001f0044 g DF .text 0000000000000038 FS_seek +00000000003595ac g DF .text 00000000000000a0 _ZNKSt3__115__codecvt_utf16IDsLb0EE9do_lengthER11__mbstate_tPKcS5_m +0000000000175e04 w DF .text 00000000000001fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_18BufferArgumentInfoILi0ELi25ELm72EEENSD_ILi1ELi25ELm72EEEEEELm0ELm8ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSL_24BufferClientArgumentTypeESO_j +0000000000048008 g DF .text 0000000000000088 _ZN2nn2fs24HierarchicalRomFileTable24ConvertPathToDirectoryIdEPiPKc +0000000000091388 g DF .text 0000000000000004 nnosInitializeMultiWaitHolderForTimerEvent +000000000097a6a8 w DO .data 0000000000000040 _ZTVNSt3__115messages_bynameIwEE +000000000036dea0 g DF .text 0000000000000008 _ZNSt13__libcxx_shim19__libcxx_shim_ver_115__set_tls_valueENS0_11__tls_key_tEm +0000000000175158 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E51_nn_sf_sync_GetConsoleSixAxisSensorAccelerationGainENS0_3OutINS5_6system36ConsoleSixAxisSensorAccelerationGainEvEE +0000000000262e7c g DF .text 0000000000000004 NvOsDebugString +00000000001bcdd0 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw12SetMoleScaleEi +00000000002991d8 g DF .text 000000000000038c _ZN7android9HeapCache9find_heapERKNS_2spINS_7IBinderEEE +000000000032bb34 w DF .text 00000000000000f4 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEE4peekEv +0000000000333314 g DF .text 000000000000003c _ZNSt3__18ios_base7failureC2ERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEERKNS_10error_codeE +00000000003c4ddc g DF .text 00000000000002d4 __newlocale +00000000002d37b8 g DF .text 00000000000001ec _ZN7android16SortedVectorImpl5mergeERKS0_ +000000000018a62c g DF .text 00000000000000d4 _ZN2nn5audio22ReadCircularBufferSinkEPNS0_22CircularBufferSinkTypeEPvm +00000000000bd218 w DF .text 000000000000009c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE30_nn_sf_sync_ApplyResponseAsyncENS0_3OutINS0_13SharedPointerINSK_13IAsyncContextEEEvEERKNS0_7InArrayIcEE +00000000002cc51c g DF .text 0000000000000008 _ZNK7android6Region9intersectERKS0_ii +00000000007cbd30 w DO .rodata 000000000000010b _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_2am7service19IOverlayAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001d24e4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf23IApplicationRootServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +0000000000076600 g DF .text 0000000000000340 nnmem_nlib_utf16_to_utf8 +000000000009d004 g DF .text 0000000000000168 _ZN2nn2sf4hipc6server28HipcServerSessionManagerBase14ProcessRequestEPNS2_21HipcServerSessionBaseEPvm +00000000001beb3c g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw9GetNgWordEv +0000000000820ac0 w DO .rodata 00000000000000bc _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3pcv6detail11IPcvServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +00000000001ca0a0 g DF .text 0000000000000038 _ZN2nn5swkbd14InlineKeyboard4CalcEv +000000000082401e g DO .rodata 0000000000000001 _ZNSt3__110defer_lockE +00000000001365d0 g DF .text 000000000000001c _ZN2nn2lm10InitializeEv +0000000000150008 w DF .text 0000000000000190 _ZN2nn3ngc6detail16CalcSelect0TemplIjEEijjPKT_PKjPKh +000000000015a36c w DF .text 0000000000000178 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi5ELm0EEENSB_ILi1ELi6ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm0ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESM_NSL_23InRawClientArgumentTypeILm4ELm4EvEEj +0000000000257d04 g DF .text 0000000000000058 nvcecClose +000000000097bf30 w DO .data 0000000000000038 _ZTINSt3__19money_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEEE +000000000009eaf4 w DF .text 00000000000000d8 _ZN2nn2sf4hipc6server18Hipc2ServerMessage12SetOutObjectEiONS0_4cmif6server20CmifServerObjectInfoE +000000000022faf4 g DF .text 0000000000000014 _ZN2nn3hid23VibrationNodeConnectionD2Ev +0000000000329610 w DF .text 0000000000000030 _ZNSt3__115basic_streambufIwNS_11char_traitsIwEEE7sungetcEv +0000000000144c30 g DF .text 0000000000000004 _ZN2nn3ngc6detail14ContentsReaderD1Ev +00000000003c6448 g DF .text 0000000000000104 asinhf +00000000000b1d38 g DF .text 0000000000000034 _ZN2nn7account27GetUiResultFromContextStackEPNS0_11UiReturnArgENS_6applet13StorageHandleE +0000000000182dc0 g DF .text 0000000000000078 _ZN2nn3ntc4shim30SuspendAutonomicTimeCorrectionEv +000000000029dd30 g DF .text 0000000000000008 _ZNK7android6Parcel12dataPositionEv +000000000002fc70 g DF .text 000000000000001c _ZN2nn5image13ExifExtractorC2EPvm +0000000000151ee0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E31_nn_sf_sync_GetCurrentIpAddressENS0_3OutINS5_11IpV4AddressEvEE +00000000003c654c g DF .text 000000000000001c asinhl +000000000005e65c w DF .text 00000000000001d8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm1ELm1ELl0EEENSG_ILm8ELm8ELl8EEENSC_18BufferArgumentInfoILi0ELi6ELm0EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm1ELm1EvEENSS_ILm8ELm8EvEENS2_24BufferClientArgumentTypeEj +000000000014d228 g DF .text 000000000000007c _ZNK2nn3ngc6detail3Set7Select0Ej +0000000000346f8c w DF .text 000000000000000c _ZNKSt3__110moneypunctIcLb1EE14do_curr_symbolEv +0000000000805710 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi139EE4MaskE +000000000016997c g DF .text 0000000000000050 _ZN2nn8settings6system31GetConsoleInformationUploadFlagEv +000000000035b2bc g DF .text 0000000000000184 _ZNKSt3__120__time_get_c_storageIcE7__weeksEv +0000000000158aa4 g DF .text 00000000000000cc _ZN2nn3nsd6detail3ipc14GetSettingNameEPNS0_11SettingNameE +0000000000218204 g DF .text 00000000000001a0 _ZN2nn3hid6detail20GetJoyXpadRightStateEPNS0_12JoyXpadStateERKNS0_9JoyXpadIdE +0000000000091374 g DF .text 0000000000000004 nnosStopTimerEvent +00000000007b86b0 g DO .rodata 000000000000002d _ZTSN2nn2os6detail27MultiWaitHolderOfTimerEventE +00000000003a44c8 g DF .text 0000000000000008 __parityti2 +0000000000942e88 w DO .data 0000000000000010 _ZTIN2nn2fs3fsa10IDirectoryE +00000000000c196c g DF .text 0000000000000020 _ZN2nn7account8NotifierC1EOS1_ +0000000000151474 g DF .text 000000000000006c _ZN2nn4nifm6detail21ServiceProviderClientD1Ev +000000000095d780 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid19IHidTemporaryServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail18HidTemporaryServerEEEEES6_EE +00000000003557f0 g DF .text 00000000000000dc _ZNKSt3__15ctypeIcE10do_toupperEPcPKc +0000000000820ec0 w DO .rodata 00000000000000bb _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +000000000034f2e8 w DF .text 0000000000000004 _ZNSt3__114codecvt_bynameIDsc11__mbstate_tED2Ev +00000000000b0038 g DF .text 000000000000008c _ZN2nn6socket8resolver10serializer13DNSSerializer10FromBufferIcEElRPT_PKhm +000000000019c080 g DF .text 000000000000002c _ZN2nn5audio6server24AudioRendererManagerImpl17AudioRendererImpl14GetSampleCountENS_2sf3OutIivEE +0000000000180350 g DF .text 00000000000000c8 _ZN2nn4time6detail7service21ServiceProviderClient34GetAdminStaticServiceSharedPointerEPNS_2sf13SharedPointerINS_7timesrv6detail7service14IStaticServiceEEE +000000000036d2e4 g DF .text 0000000000000034 _ZNSt3__115__thread_structC1Ev +00000000000b7834 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account19IAccountServiceBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_31IAccountServiceForSystemServiceEE25_nn_sf_sync_ListOpenUsersERKNS0_8OutArrayINS5_3UidEEE +00000000001b6254 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor15GetEyebrowScaleEv +000000000095d968 g DO .data 0000000000000010 _ZTIN2nn8irsensor6detail7SessionE +000000000097bad8 w DO .data 0000000000000010 _ZTINSt3__120__time_get_c_storageIcEE +000000000019050c g DF .text 0000000000000074 _ZN2nn5audio36SetAudioRenderersProcessRecordVolumeENS_6applet20AppletResourceUserIdEfNS_8TimeSpanE +0000000000358558 g DF .text 000000000000001c _ZNKSt3__17codecvtIDic11__mbstate_tE9do_lengthERS1_PKcS5_m +00000000000c8da8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15IAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_20IApplicationAccessorEE21_nn_sf_sync_TerminateEv +0000000000125b30 w DF .text 000000000000004c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E26_nn_sf_sync_AddPlayHistoryERKNS_7account3UidERKNS5_26PlayHistoryRegistrationKeyERKNS5_15InAppScreenNameESU_m +0000000000232aa4 w DF .text 00000000000000b8 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS0_4hipc6client18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_3hid6detail9HidServerEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSE_15IAppletResourceEEEvi +00000000003a70ec g DF .text 0000000000000088 __atomic_fetch_xor_1 +00000000003a7174 g DF .text 0000000000000088 __atomic_fetch_xor_2 +000000000016e484 g DF .text 0000000000000070 _ZN2nn8settings6detail16GetNfcEnableFlagEPb +0000000000355f44 g DF .text 000000000000015c _ZNSt3__112ctype_bynameIwEC2EPKcm +0000000000125ca8 w DF .text 0000000000000040 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E32_nn_sf_sync_GetFriendRequestListENS0_3OutIivEERKNS0_8OutArrayINS6_17FriendRequestImplEEERKNS_7account3UidEii +0000000000156e18 g DF .text 0000000000000018 _ZN2nn4nifm7Request9GetResultEv +0000000000183928 g DF .text 0000000000000084 _ZN2nn3aoc16ListAddOnContentEPiii +00000000003a71fc g DF .text 0000000000000088 __atomic_fetch_xor_4 +000000000018f690 g DF .text 0000000000000014 _ZN2nn5audio33GetRequiredBufferSizeForResamplerEi +00000000001bcd98 g DF .text 0000000000000004 _ZN2nn3mii6detail12StoreDataRaw13SetMouthColorEi +00000000001663e0 g DF .text 0000000000000020 _ZN2nn5prepo6detail19PlayReportGenerator16GetKeyValueCountEPKhm +000000000006b35c g DF .text 0000000000000008 _ZN2nn2fs16SaveDataImporter15GetSaveDataInfoEv +00000000007bd020 w DO .rodata 000000000000016f _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_22IManagerForApplicationEEE +00000000001a1f20 g DF .text 00000000000000c8 _ZN2nn5audio6server18PerformanceManager10InitializeEPvmRKNS0_6detail30AudioRendererParameterInternalERKNS1_14MemoryPoolInfoE +0000000000094ad4 g DF .text 000000000000006c _ZN2nn2os6detail11VammManager36GetVirtualAddressMemoryResourceUsageEv +00000000001c3368 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw7SetEyeYEi +00000000003a7284 g DF .text 0000000000000088 __atomic_fetch_xor_8 +00000000001ce7cc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_GetDisplayContentTypeENS0_3OutIjvEEm +00000000000956e8 g DF .text 00000000000000e4 _ZN2nn2os6detail26ThreadManagerImplByHorizonC1EPNS0_10ThreadTypeE +00000000001888d4 g DF .text 00000000000000ac _ZN2nn5audio21LoadI3dl2ReverbPresetEPNS0_23I3dl2ReverbParameterSetENS0_15I3dl2ReverbType6PresetE +000000000002a4b8 g DF .text 0000000000000054 _ZN2nn5image6detail4jpeg17jcopy_sample_rowsEPPhiS4_iii +00000000001a7c10 g DF .text 0000000000000010 _ZN2nn5audio31CreateAudioRendererManagerByDfcEv +000000000025598c g DF .text 0000000000000104 _ZN2nn3web16ShowSharePageArg24SetAdditionalCommentTextEPKc +00000000001255a8 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E37_nn_sf_sync_CreateNotificationServiceENS0_3OutINS0_13SharedPointerINS7_20INotificationServiceEEEvEERKNS_7account3UidE +0000000000117fc4 g DF .text 0000000000000008 _ZN2nn5codec11OpusDecoder6DecodeEPmPiPPsimPKvm +0000000000151f00 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E36_nn_sf_sync_GetCurrentAccessPointOldENS0_3OutINS6_2sf18AccessPointDataOldEvEE +00000000002517fc w DF .text 0000000000000220 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi34ELm0EEENS7_18OutRawArgumentInfoILm2ELm2ELl0EEENS7_17InRawArgumentInfoILm96ELm8ELl8EEENSF_ILm2ELm2ELl0EEEEEELm104ELm2ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeENSN_24OutRawClientArgumentTypeILm2ELm2EEENSN_23InRawClientArgumentTypeILm96ELm8EvEENSR_ILm2ELm2EvEEj +00000000003619cc w DF .text 000000000000002c _ZnwmRKSt9nothrow_t +00000000001b7770 g DF .text 0000000000000010 _ZN2nn3mii6detail21GetGlassColorFromVer3ENS1_14Ver3GlassColorE +000000000022e5dc g DF .text 0000000000000050 _ZN2nn3hid6system39IsSixAxisSensorUserCalibrationSupportedERKNS1_25UniqueSixAxisSensorHandleE +000000000097b170 g DO .data 0000000000000038 _ZTINSt3__17codecvtIwc11__mbstate_tEE +0000000000313fe8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3fgm2sf8IRequestENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E15_nn_sf_sync_GetENS0_3OutIjvEE +00000000003655f0 w DF .text 0000000000000064 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE6resizeEmw +0000000000298be4 g DF .text 0000000000000040 _ZN7android12BnMemoryHeapD1Ev +00000000001d03fc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E57_nn_sf_sync_DisconnectSharedLowLevelLayerFromSharedBufferEm +00000000001b9edc g DF .text 0000000000000048 _ZN2nn3mii6detail11CoreDataRaw9SetMouthYEi +00000000001c7a04 g DF .text 0000000000000008 _ZNK2nn3mii13AppletManager22GetValidUuidArrayCountEv +000000000017498c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E36_nn_sf_sync_GetWirelessLanEnableFlagENS0_3OutIbvEE +00000000003241ec g DF .text 0000000000000088 _ZNSt3__125notify_all_at_thread_exitERNS_18condition_variableENS_11unique_lockINS_5mutexEEE +0000000000396a44 g DF .text 000000000000005c _ZNSt15underflow_errorD0Ev +00000000003e52d0 g DF .text 0000000000000098 __nnmusl_FileClose +000000000013e840 g DF .text 000000000000014c _ZN2nn3nfp19AttachActivateEventEPNS_2os15SystemEventTypeERKNS0_12DeviceHandleE +0000000000945d08 w DO .data 0000000000000010 _ZTIN2nn2sf4cmif6server16CmifServerDomainE +00000000001c8f0c g DF .text 0000000000000038 _ZN2nn5swkbd18MakePresetPasswordEPNS0_14KeyboardConfigE +0000000000201f2c g DF .text 0000000000000038 FsLttComponent_getAdjustment +000000000034751c w DF .text 000000000000000c _ZNKSt3__117moneypunct_bynameIcLb0EE14do_curr_symbolEv +0000000000151290 g DF .text 000000000000004c _ZN2nn4nifm6detail17ScanRequestClient9GetResultEv +000000000016aadc g DF .text 0000000000000044 _ZN2nn8settings6system17GetDeviceNickNameEPNS1_14DeviceNickNameE +000000000005f5c8 w DF .text 0000000000000208 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl8EEENSG_ILm8ELm8ELl16EEENSG_ILm1ELm1ELl0EEENSC_18BufferArgumentInfoILi0ELi5ELm0EEENSG_ILm8ELm8ELl24EEENSK_ILi1ELi5ELm0EEENSG_ILm8ELm8ELl32EEEEEELm40ELm0ELb0EEESP_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEESX_NSW_ILm1ELm1EvEENS2_24BufferClientArgumentTypeESX_SZ_SX_j +000000000095a2c0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_5visrv2sf21ISystemDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectE +0000000000090890 g DF .text 0000000000000040 _ZN2nn2os18AttachSharedMemoryEPNS0_16SharedMemoryTypeEmjb +0000000000246fdc g DF .text 0000000000000c50 _ZN22nerd_gillette_internal5otete7jaimev123EncodeFullSilhouetteROKERNS0_17MaxSizedBitStreamILm300EEENS_20ContiguousMemoryViewIKNS_15NumericalVectorIsLm2EEELb0EEERKNS1_23FullSilhouetteCodecDataE +00000000001cab20 g DF .text 0000000000000040 _ZN2nn5swkbd6detail18InlineKeyboardImpl17UnsetCustomizeDicEv +00000000003dd3e4 g DF .text 000000000000010c fread +00000000007e39d0 w DO .rodata 0000000000000026 _ZTSN2nn5prepo6detail3ipc13IPrepoServiceE +00000000001716c4 w DF .text 00000000000001e0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi10ELm0EEEEEELm0ELm4ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSK_24BufferClientArgumentTypeEj +00000000003e7660 g DF .text 0000000000000018 __nnmusl_WaitConditionVariable +0000000000228cec g DF .text 0000000000000044 _ZN2nn3hid5debug24InitializeFirmwareUpdateEv +0000000000042278 g DF .text 0000000000000068 _ZN2nn4edid6detail27GetDetailedTimingStereoModeEh +00000000000bd7f8 g DF .text 0000000000000028 _ZN2nn7account12AsyncContextC1EPNS0_6detail13IAsyncContextERKNS0_3UidE +000000000022b7d4 g DF .text 0000000000000008 _ZN2nn3hid6system19GetNpadBatteryLevelERKj +000000000000de94 g DF .text 000000000000006c _ZN2nn5image6detail4jpeg18jinit_huff_encoderEPNS2_20jpeg_compress_structE +00000000001b4718 g DF .text 0000000000000010 _ZN2nn2la26LibraryAppletCreateHookArg10InitializeENS_6applet8AppletIdENS2_17LibraryAppletModeEb +00000000001c7728 g DF .text 0000000000000024 _ZNK2nn3mii11AppletInput7IsValidEv +00000000001d3a00 g DF .text 0000000000000070 _ZN2nn2vi14SetDisplayModeEPNS0_7DisplayEPKNS0_15DisplayModeInfoE +000000000095bdd0 w DO .data 0000000000000018 _ZTIN2nn3hid6detail11GestureLifoE +0000000000221880 g DF .text 0000000000000060 _ZN2nn3hid6detail30UnsetTouchScreenAutoPilotStateEv +00000000000c654c w DF .text 00000000000000ac _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_30MemoryResourceAllocationPolicyENS_14MemoryResourceEE14AllocateObjectINS_2am7service13ILockAccessorEEEvi +0000000000238640 g DF .text 0000000000000078 _ZN2nn8irsensor6detail22EnableAppletToGetInputERKNS_6applet20AppletResourceUserIdEb +0000000000197eb0 g DF .text 0000000000000004 _ZN2nn5audio16StartDspProfilerEPNS0_20DspProfilerParameterE +0000000000137548 g DF .text 0000000000000028 _ZN2nn3nfc6client24IsCreatedSystemInterfaceEv +0000000000231ed8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E36_nn_sf_sync_AcquireXpadIdEventHandleENS0_3OutINS0_12NativeHandleEvEEm +000000000039668c g DF .text 0000000000000004 _ZNSt9exceptionD0Ev +00000000000a0240 g DF .text 0000000000000048 _ZN2nn2sf4hipc24CloseClientRequestHandleENS_3svc6HandleE +000000000021c964 g DF .text 00000000000000d8 _ZN2nn3hid6detail26GetAccelerometerParametersEPfS2_NS0_19SixAxisSensorHandleE +0000000000825380 g DO .rodata 000000000000002e _ZTSN10__cxxabiv129__pointer_to_member_type_infoE +0000000000187214 g DF .text 0000000000000020 _ZN2nn5audio20WriteAuxReturnBufferEPNS0_7AuxTypeEPKii +00000000001bcfcc g DF .text 000000000000002c _ZN2nn3mii6detail11UtilityImpl14GetRandomUint8Ev +000000000025c0fc g DF .text 0000000000000050 NvMemoryProfilerEndRealloc +00000000001d107c w DF .text 000000000000010c _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm8ELm8ELl16EEENSB_ILm8ELm8ELl24EEENSB_ILm16ELm4ELl0EEEEEELm32ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm8ELm8EvEESM_NSL_ILm16ELm4EvEEj +0000000000091484 g DF .text 0000000000000004 nnosTryReceiveMessageQueue +0000000000319a68 w DF .text 0000000000000008 _ZThn16_N2nn2sf4cmif6client6detail13CmifProxyImplINS_3pcv17IImmediateManagerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES6_E17GetCmifBaseObjectEv +00000000000b2744 g DF .text 000000000000003c _ZN2nn7account6detail15StartPselAppletERKNS0_10UiSettingsEPKvm +00000000001086f0 g DF .text 00000000000002c4 silk_schur64 +000000000015ca78 g DF .text 0000000000000058 _ZN2nn2oe17GetDisplayVersionEPNS0_14DisplayVersionE +000000000029dc94 g DF .text 0000000000000068 _ZN7android6Parcel14freeDataNoInitEv +0000000000179da0 g DF .text 0000000000000018 nnsslFinalize +000000000000a908 g DF .text 00000000000000a8 _ZN2nn5image6detail4jpeg17jpeg_write_markerEPNS2_20jpeg_compress_structEiPKhj +000000000097b348 g DO .data 0000000000000060 _ZTVNSt3__115__codecvt_utf16IwLb1EEE +00000000002049c8 g DF .text 0000000000000db8 embolden_outline +0000000000004d70 g D .text 00000000000000d0 nndetailCryptoBignumAddWords +0000000000396814 g DF .text 0000000000000008 _ZNKSt13runtime_error4whatEv +0000000000399ae8 g DF .text 0000000000000038 unw_get_proc_info +00000000001c73cc g DF .text 000000000000006c _ZN2nn3mii9AppendMiiEPi +0000000000202674 g DF .text 0000000000000280 FsLtt_load +000000000022ead8 g DF .text 0000000000000044 _ZN2nn3hid25InitializeVibrationDeviceERKNS0_21VibrationDeviceHandleE +000000000012d638 g DF .text 0000000000000058 _ZN2nn2fs32WriteSaveDataThumbnailFileHeaderEmRKNS_7account3UidEPKvm +0000000000192d58 w DF .text 00000000000002e4 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_21OutObjectArgumentInfoILi0ELi0EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_17InRawArgumentInfoILm8ELm4ELl0EEENS7_20InHandleArgumentInfoILi0ELi1EEENS7_18OutRawArgumentInfoILm16ELm4ELl0EEENSD_ILi1ELi34ELm0EEENSF_ILm8ELm8ELl8EEEEEELm16ELm16ELb1EEESN_E21ProcessWithOutObjectsEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client27OutObjectClientArgumentTypeENSS_24BufferClientArgumentTypeENSS_23InRawClientArgumentTypeILm8ELm4EvEENSS_26InHandleClientArgumentTypeENSS_24OutRawClientArgumentTypeILm16ELm4EEESU_NSV_ILm8ELm8EvEEjPNS0_13SharedPointerINS0_14IServiceObjectEEE +00000000001858a8 g DF .text 000000000000006c _ZN2nn5audio24InitializeAuxI3dl2ReverbEPNS0_18AuxI3dl2ReverbTypeEPvmii +0000000000150c00 g DF .text 0000000000000024 _ZNK2nn4nifm6detail13RequestClient11GetSubmitIdEPj +00000000002170b0 g DF .text 00000000000000c8 _ZN2nn3hid6detail19BindHomeButtonEventEPNS_2os15SystemEventTypeENS2_14EventClearModeE +000000000095b880 w DO .data 0000000000000018 _ZTIN2nn3hid6detail12DebugPadLifoE +00000000002d1540 g DF .text 0000000000000038 _ZNK7android6Thread9isRunningEv +00000000003dcb20 g DF .text 00000000000000d8 fgetln +00000000007b1b80 w DO .rodata 00000000000000b3 _ZTSN2nn2sf4cmif6client23CmifDomainClientMessageINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEEE15ProxyBaseObjectE +0000000000091304 g DF .text 0000000000000004 nnosWaitThread +00000000000eaf4c g DF .text 00000000000002a0 clt_mdct_backward_c +0000000000165d34 g DF .text 000000000000007c _ZN2nn5prepo6detail9VerifyKeyEPmPKc +00000000000cc1a4 w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_19ILibraryAppletProxyEE17GetCmifBaseObjectEv +00000000000c80b0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IDisplayControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E49_nn_sf_sync_AcquireLastApplicationCaptureBufferExENS0_3OutIbvEENSK_INS0_12NativeHandleEvEE +00000000001745e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E41_nn_sf_sync_IsForceMuteOnHeadphoneRemovedENS0_3OutIbvEE +00000000001b6cd4 g DF .text 0000000000000288 _ZN2nn3mii6detail11CharInfoRaw19SetFromStoreDataRawERKNS1_12StoreDataRawE +00000000008224e0 w DO .rodata 0000000000000031 _ZTSNSt3__115basic_streambufIwNS_11char_traitsIwEEEE +00000000003a2628 g DF .text 0000000000000078 __floatunsisf +00000000003cb1d4 g DF .text 0000000000000004 ldexpf +0000000000238f40 g DF .text 0000000000000040 _ZNK2nn8irsensor6detail13StatusManager17GetTeraPluginLifoERKNS0_14IrCameraHandleE +000000000022ffb8 g DF .text 0000000000000008 _ZNK2nn3hid15VibrationPlayer15GetLoopIntervalEv +00000000001bb5ac g DF .text 000000000000000c _ZN2nn3mii6detail18GetDefaultNicknameEPNS0_8NicknameE +00000000001c8ed8 g DF .text 0000000000000034 _ZN2nn5swkbd17MakePresetDefaultEPNS0_14KeyboardConfigE +00000000007cbe40 w DO .rodata 00000000000000fc _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_2am7service19IOverlayAppletProxyENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +0000000000117e48 g DF .text 0000000000000034 _ZN2nn5codec30HardwareOpusMultiStreamDecoder10SetContextEPKvm +00000000001ca188 g DF .text 0000000000000010 _ZN2nn5swkbd14InlineKeyboard31SetReleasedUserWordInfoCallbackEPFvvE +00000000003cb1d8 g DF .text 0000000000000004 ldexpl +00000000001d4fcc g DF .text 000000000000002c _ZN2nn2vi14FinalizeMemoryEv +000000000021db88 g DF .text 0000000000000098 _ZN2nn3hid6detail33SetShiftGyroscopeCalibrationValueERKNS0_19SixAxisSensorHandleEff +00000000001bd024 g DF .text 000000000000002c _ZN2nn3mii6detail11UtilityImpl15GetRandomUint16Ev +0000000000226190 g DF .text 0000000000000130 _ZN2nn3hid6detail24GetUniquePadSerialNumberEPNS0_6system21UniquePadSerialNumberENS2_11UniquePadIdE +0000000000823560 g DO .rodata 000000000000001d _ZTSNSt3__115numpunct_bynameIwEE +0000000000230bfc w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid15IHidDebugServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14HidDebugServerEEEEES6_E33_nn_sf_sync_SetXpadAutoPilotStateENS5_11BasicXpadIdERKNS5_5debug23BasicXpadAutoPilotStateE +00000000007f6070 g DO .rodata 0000000000000120 _ZN2nn3mii6detail18FavoriteColorTableE +00000000000c0240 g DF .text 0000000000000190 _ZN2nn7account28NetworkServiceAccountManager41CreateNintendoAccountAuthorizationRequestEPNS0_42NintendoAccountAuthorizationRequestContextEmPKcmRKNS0_45NintendoAccountAuthorizationRequestParametersEPvm +0000000000174a98 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E25_nn_sf_sync_SetLdnChannelEi +00000000000a1404 g DF .text 0000000000000020 _ZN2nn2sm18FinalizeForManagerEv +000000000022d328 g DF .text 0000000000000044 _ZN2nn3hid5debug19FinalizeSleepButtonEv +000000000094ba30 w DO .data 0000000000000018 _ZTIN2nn2am7service18IAppletProxyCommonE +0000000000126268 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E23_nn_sf_sync_UnblockUserERKNS_7account3UidENSL_23NetworkServiceAccountIdE +0000000000135eb8 g DF .text 0000000000000008 _ZNK2nn2lm6detail15LogPacketHeader12GetProcessIdEv +00000000002c9270 g DF .text 0000000000000098 _ZNK7android10FrameStats7flattenEPvm +0000000000061354 g DF .text 000000000000012c _ZN2nn2fs20GetGameCardAttributeEPNS0_17GameCardAttributeEj +000000000095bc78 w DO .data 0000000000000010 _ZTIN2nn3hid6detail8RingLifoINS1_27NfcXcdDeviceHandleStateImplELi1ENS1_13AtomicStorageIS3_EEEE +0000000000396288 g DF .text 00000000000000b8 __cxa_vec_dtor +0000000000239230 g DF .text 0000000000000034 _ZN2nn8irsensor6detail20InternalErrorHandlerC1Ev +00000000001254b4 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7friends6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6Object7ReleaseEv +0000000000945fb8 g DO .data 0000000000000078 _ZTVN2nn2sf4hipc6server24HipcServerSessionManagerE +00000000001baf98 g DF .text 0000000000000008 _ZNK2nn3mii6detail24NfpStoreDataExtentionRaw15GetEyebrowColorEv +00000000003c2ad4 g DF .text 0000000000000010 __iswdigit_l +00000000003a9868 g DF .text 0000000000000024 __ofl_lock +00000000001bec44 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw13GetFontRegionEv +000000000039dbb0 g DF .text 0000000000000070 __floatunsitf +0000000000151950 w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4nifm6detail14IStaticServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS7_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectESO_E6Object12AddReferenceEv +0000000000051d40 g DF .text 00000000000001f0 _ZN2nn2fs19MountContentStorageEPKcNS0_16ContentStorageIdE +0000000000030a1c g DF .text 000000000000000c nnutilZlib_get_crc_table +00000000003d342c g DF .text 0000000000000024 mrand48 +00000000001cac14 g DF .text 0000000000000020 _ZN2nn5swkbd6detail18InlineKeyboardImpl15SetBalloonScaleEf +00000000001c09b4 g DF .text 00000000000027e4 _ZN2nn3mii6detail16Ver3StoreDataRaw10SetDefaultEPNS1_11UtilityImplE +0000000000395d5c g DF .text 0000000000000018 _ZSt15get_new_handlerv +00000000001181c4 g DF .text 0000000000000014 _ZN2nn5codec11OpusEncoderD1Ev +0000000000117848 g DF .text 0000000000000008 _ZNK2nn5codec19HardwareOpusDecoder13GetSampleRateEv +00000000008039c0 w DO .rodata 0000000000000022 _ZTSN2nn3hid6detail15TouchScreenLifoE +00000000001815bc w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service16ITimeZoneServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E33_nn_sf_sync_SetDeviceLocationNameERKNSL_12LocationNameE +000000000022c3a4 g DF .text 0000000000000064 _ZN2nn3hid13GetNpadStatesEPNS0_16NpadJoyDualStateEiRKj +00000000008234a0 g DO .rodata 0000000000000012 _ZTSNSt3__15ctypeIcEE +000000000032a1f4 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERb +000000000023aa60 g DF .text 000000000000005c _ZN2nn8irsensor23GetImageProcessorStatusERKNS0_14IrCameraHandleE +000000000032ad98 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERd +000000000032aeb4 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERe +00000000000d2ddc g DF .text 000000000000009c _ZN2nn6applet21JoinLibraryAppletImplENS0_19LibraryAppletHandleE +000000000024cbf8 g DF .text 0000000000000014 _ZN2nn5album12LibraryStateC2Ev +000000000096e548 g DO .data 00000000000000a8 _ZTVN7android19IGraphicBufferAllocE +00000000002aac98 g DF .text 00000000000000f8 _ZN7android18BufferItemConsumerC2ERKNS_2spINS_22IGraphicBufferConsumerEEEjib +000000000032ac7c w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERf +00000000003cfa9c g DF .text 0000000000000034 __fpclassify +0000000000083238 w DF .text 00000000000002b4 _ZN2nn7nlibsdk4heap12TlsHeapCache19AllocFuncAlgn_Mode0INSt3__117integral_constantIbLb1EEEEEPvPS2_mm +000000000035401c g DF .text 0000000000000140 _ZNSt3__16locale6globalERKS0_ +000000000023b1bc g DF .text 0000000000000044 _ZN2nn8irsensor6system30UnregisterAppletResourceUserIdERKNS_6applet20AppletResourceUserIdE +00000000003aed14 g DF .text 00000000000002ac asin +0000000000186c94 g DF .text 0000000000000048 _ZN2nn5audio15SetDelayEnabledEPNS0_9DelayTypeEb +0000000000959eb0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client6detail9CmifProxyINS_5visrv2sf26IApplicationDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEvEE +000000000032a58c w DF .text 0000000000000164 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERi +00000000003ab0c8 g DF .text 0000000000000004 pthread_cond_wait +000000000019ce1c w DF .text 0000000000000034 _ZN2nn2sf4impl6detail17ImplTemplateBaseTINS_5audio6detail14IAudioRendererES6_NS0_6detail18EmplacedImplHolderINS4_6server24AudioRendererManagerImpl17AudioRendererImplEEESC_S6_E29_nn_sf_sync_RequestUpdateAutoERKNS0_9OutBufferESG_RKNS0_8InBufferE +000000000032a6f0 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERj +00000000009504c0 g DO .data 0000000000000018 _ZTIN2nn5codec30HardwareOpusMultiStreamDecoderE +000000000009dc38 w DF .text 000000000000005c _ZN2nn2sf4hipc6server17HipcServerMessage13SetOutObjectsEPNS0_4cmif6server20CmifServerObjectInfoE +00000000001dd3b0 g DF .text 0000000000000454 FS_set_flags +000000000032a80c w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERl +000000000032a928 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERm +000000000023aad4 g DF .text 0000000000000044 _ZN2nn8irsensor18StopImageProcessorERKNS0_14IrCameraHandleE +00000000002ce00c g DF .text 0000000000000034 _ZN7android8String16C2Ev +000000000017ce3c g DF .text 0000000000000010 _ZN2nn3ssl6detail15BuiltinDataInfo7GetDataEPhjPj +000000000023ff30 w DF .text 0000000000000d64 _ZN22nerd_gillette_internal5otete7jaimev19SerializeINS0_15BitStreamReaderINS0_14InputBitStreamEEEEEbRNS1_11FingerGroupERT_ +000000000094f7f8 w DO .data 0000000000000068 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_4bcat6detail3ipc15IServiceCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSC_18Hipc2ProxyKindBaseILNSB_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESK_E6ObjectE +000000000018da1c g DF .text 0000000000000008 _ZN2nn5audio17DelayLineGetDelayEPNS0_11FXDelayLineE +000000000021d500 g DF .text 00000000000000ac _ZN2nn3hid6detail16GetNpadPowerInfoEPNS0_6system9PowerInfoERKj +00000000001d0078 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E43_nn_sf_sync_DestroyIndirectProducerEndPointEm +000000000095dd50 w DO .data 0000000000000038 _ZTIN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_8irsensor21IIrSensorSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_6detail20IrSensorSystemServerEEEEEE13ServiceObjectESJ_E6ObjectE +000000000032a310 w DF .text 0000000000000160 _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERs +000000000032a470 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERt +00000000000cb790 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22IGlobalStateControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +00000000001362e0 g DF .text 00000000000001d8 _ZN2nn2lm6detail24LogPacketTransmitterBase13PushDataChunkENS1_15LogDataChunkKeyEPKvm +000000000017e0d4 g DF .text 0000000000000184 _ZN2nn4time12GetDayOfWeekEiii +00000000009741d0 g DO .data 0000000000000108 _ZTCN7android23BnSurfaceComposerClientE0_NS_22ISurfaceComposerClientE +0000000000825120 g DO .rodata 0000000000000019 _ZTSSt20bad_array_new_length +00000000007cd650 w DO .rodata 0000000000000108 _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service24IApplicationProxyServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +000000000032aa44 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERx +000000000082208a g DO .rodata 0000000000000001 _ZNSt3__112placeholders3_10E +000000000032ab60 w DF .text 000000000000011c _ZNSt3__113basic_istreamIcNS_11char_traitsIcEEErsERy +000000000097d4e0 g DO .data 0000000000000008 __cxa_unexpected_handler +00000000001b6198 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor9GetGenderEv +0000000000949648 w DO .data 0000000000000020 _ZTVN2nn7account49ExternalNetworkServiceAccountIntroducingProcedureE +0000000000227e8c g DF .text 0000000000000084 _ZN2nn3hid6detail22RetrieveVibrationValueEPNS0_14VibrationValueEiPNS1_30VibrationFileParserContextImplE +000000000016e060 g DF .text 0000000000000080 _ZN2nn8settings6detail18SetNetworkSettingsEPKNS0_6system15NetworkSettingsEi +0000000000804a70 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi20EE4MaskE +00000000001c9640 g DF .text 00000000000000a4 _ZN2nn5swkbd13SetOkTextUtf8EPNS0_14KeyboardConfigEPKc +0000000000286798 g DF .text 000000000000000c NvRmGpuDeviceSetMmuDebugMode +00000000003de25c g DF .text 00000000000000c8 putc +000000000017ce14 g DF .text 000000000000000c _ZN2nn3ssl6detail15BuiltinDataInfoC1EjNS2_17BuiltinDataStatusEPKcPNS1_17BuiltinDataLoaderE +0000000000369068 g DF .text 00000000000001d8 _ZNSt3__15stoldERKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPm +00000000000c198c g DF .text 0000000000000028 _ZN2nn7account8NotifierD2Ev +00000000000ca088 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service16IStorageAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E19_nn_sf_sync_GetSizeENS0_3OutIlvEE +00000000002a6350 g DF .text 0000000000000040 native_handle_create +00000000009559a8 w DO .data 00000000000000b0 _ZTVN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslContextENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +00000000000c7078 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E34_nn_sf_sync_IsIlluminanceAvailableENS0_3OutIbvEE +00000000007d4acc g DO .rodata 0000000000000018 silk_gain_iCDF +00000000003ccfbc g DF .text 0000000000000078 modf +00000000002c9c28 g DF .text 0000000000000060 _ZN7android13GraphicBuffer9lockYCbCrEjRKNS_4RectEP13android_ycbcr +00000000000cea00 w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service21IApplicationFunctionsENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E27_nn_sf_sync_GetSaveDataSizeENS0_3OutIlvEESL_hRKNS_7account3UidE +00000000001bc830 g DF .text 0000000000000004 _ZNK2nn3mii6detail12StoreDataRaw15GetEyebrowScaleEv +00000000003c2cb0 g DF .text 000000000000003c iswpunct +00000000000c96a4 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service25IProcessWindingControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E17GetCmifBaseObjectEv +000000000094d6d0 w DO .data 0000000000000018 _ZTIN2nn2am7service22IGlobalStateControllerE +000000000004b894 g DF .text 0000000000000108 _ZN2nn2fs15RomFsFileSystemD1Ev +00000000003de3b8 g DF .text 00000000000000b8 puts +00000000000d2dc4 g DF .text 0000000000000008 _ZN2nn6applet42RequestExitLibraryAppletAndWaitOrTerminateENS0_19LibraryAppletHandleENS_8TimeSpanE +0000000000122480 g DF .text 0000000000000008 _ZNK2nn7friends13FriendRequest19GetMiiImageUrlParamEv +0000000000156f98 g DF .text 0000000000000354 _ZN2nn4nifm6detail6Base6414ToBase64StringEPmPcmPKvmNS2_4ModeE +000000000017496c w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E28_nn_sf_sync_SetSleepSettingsERKNS5_6system13SleepSettingsE +00000000003b32dc g DF .text 0000000000000008 __nnmusl_force_mul +00000000000ac7f4 g DF .text 0000000000000070 _ZN2nn6socket8resolver3tls12SetServerTLSEPFvPvES3_ +00000000001c3398 g DF .text 0000000000000010 _ZN2nn3mii6detail16Ver3StoreDataRaw15SetEyebrowScaleEi +000000000026fd14 g DF .text 0000000000000080 NvRmMemHandleAlloc +0000000000328fc4 w DF .text 0000000000000034 _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE9sputbackcEc +00000000003de470 g DF .text 0000000000000038 putw +0000000000137f30 w DF .text 0000000000000158 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm4ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +00000000007b9878 g DO .rodata 0000000000000008 _ZN2nn2sm11ServiceName11InvalidNameE +0000000000957a80 w DO .data 0000000000000018 _ZTIN2nn5audio6detail25IAudioOutManagerForAppletE +000000000014b614 w DF .text 0000000000000008 _ZN2nn3ngc6detail16NullOutputStream6Close_Ev +0000000000183730 g DF .text 0000000000000008 _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImpl26GetFinishNotificationEventEv +0000000000328a28 g DF .text 000000000000000c _ZNKSt3__18ios_base6getlocEv +00000000000b682c w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_3nas21IAuthorizationRequestEEEvi +00000000001982a0 g DF .text 0000000000000100 _ZN2nn5audio12OpenAudioOutEPNS0_8AudioOutEPNS_2os11SystemEventEPKcRKNS0_17AudioOutParameterE +00000000001b65e0 g DF .text 0000000000000014 _ZN2nn3mii16GetMouthRedColorENS0_11CommonColorENS0_9GammaTypeE +00000000000a1a74 g DF .text 0000000000000004 _ZN2nn6socket6SysctlEPimPvPmS2_m +0000000000029ed8 g DF .text 0000000000000308 _ZN2nn5image6detail4jpeg13jpeg_idct_3x6EPNS2_22jpeg_decompress_structEPNS2_19jpeg_component_infoEPsPPhi +0000000000239200 g DF .text 0000000000000008 _ZNK2nn8irsensor6detail19StatusManagerHolder19GetSharedMemorySizeEv +0000000000343c70 w DF .text 0000000000000208 _ZNKSt3__18time_getIwNS_19istreambuf_iteratorIwNS_11char_traitsIwEEEEE17__get_white_spaceERS4_S4_RjRKNS_5ctypeIwEE +00000000001b8ea8 g DF .text 0000000000000038 _ZNK2nn3mii6detail11CoreDataRaw7GetEyeXEv +00000000002579c4 g DF .text 0000000000000090 _ZN2nn3web21ShowWebPageArgPrivate20SetScreenShotEnabledEb +0000000000174e50 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings21ISystemSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E42_nn_sf_sync_GetHeadphoneVolumeWarningCountENS0_3OutIivEE +000000000019ef10 g DF .text 00000000000000bc _ZN2nn5audio6server12DetailAspectC1EPNS1_16CommandGeneratorENS0_20PerformanceEntryTypeEjNS0_21PerformanceDetailTypeE +00000000007ae740 g DO .rodata 0000000000000010 _ZN2nn4util8Vector3f11ConstantOneE +000000000097d718 g DO .data 0000000000000028 _ZTVSt16invalid_argument +00000000000b84b0 w DF .text 00000000000001d0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi25ELm16EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb1EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +0000000000048f04 g DF .text 000000000000016c _ZN2nn2fs24HierarchicalRomFileTable12FindNextFileEPcPNS1_12FindPositionEm +0000000000118918 g DF .text 0000000000000008 _ZNK2nn5codec22OpusMultiStreamDecoder13GetSampleRateEv +0000000000136ad8 g DF .text 0000000000000144 _ZN2nn2lm22CreateLogServiceByHipcEv +00000000003aac30 g DF .text 0000000000000024 __stdio_close +00000000007f0e60 g DO .rodata 0000000000000008 _ZN2nn5audio6server14EffectInfoBase15StateBufferSizeE +00000000001c9960 g DF .text 00000000000000a0 _ZN2nn5swkbd14SetSubTextUtf8EPNS0_14KeyboardConfigEPKc +00000000000ac6c4 g DF .text 000000000000007c _ZN2nn6socket8resolver3tls19TlsDestructFunctionEm +000000000015874c g DF .text 0000000000000020 _ZN2nn3nsd25ReadSaveDataFromFsForTestEPNS0_8SaveDataE +00000000008049d0 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi15EE4MaskE +0000000000a82ae0 g DO .bss 0000000000000008 __progname_full +00000000001c78c4 g DF .text 0000000000000008 _ZNK2nn3mii12AppletOutput22GetAppendMiiImageIndexEv +0000000000125ad0 w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E41_nn_sf_sync_GetPlayHistoryRegistrationKeyENS0_3OutINS5_26PlayHistoryRegistrationKeyEvEERKNS_7account3UidEb +00000000001941fc g DF .text 00000000000000e4 _ZN2nn5audio41CreateAudioRendererManagerForAppletByHipcEv +0000000000156e48 g DF .text 000000000000000c _ZN2nn4nifm17NetworkConnectionC1Ev +0000000000232588 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E41_nn_sf_sync_SetNpadHandheldActivationModeENS_6applet20AppletResourceUserIdEl +00000000000c9b94 w DF .text 0000000000000094 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service22ILibraryAppletAccessorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E33_nn_sf_sync_PopInteractiveOutDataENS0_3OutINS0_13SharedPointerINS6_8IStorageEEEvEE +00000000001b2744 g DF .text 0000000000000158 _ZN2nn2ec6detail40ShowShopMembershipServiceInformationImplERKNS_7account3UidENS0_8SourceIdE +0000000000805410 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi97EE4MaskE +0000000000125e24 w DF .text 000000000000002c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E31_nn_sf_sync_GetUserPresenceViewENS0_3OutINS6_20UserPresenceViewImplEvEERKNS_7account3UidE +000000000018bb94 g DF .text 0000000000000038 _ZN2nn5audio20SetSubMixDestinationEPNS0_19AudioRendererConfigEPNS0_10SubMixTypeES4_ +000000000036d474 g DF .text 0000000000000018 _ZNSt3__121__libcpp_mutex_unlockEPNSt13__libcxx_shim19__libcxx_shim_ver_119__libcxx_shim_mutexE +000000000035cc10 g DF .text 00000000000006cc _ZNSt3__118__time_get_storageIwE9__analyzeEcRKNS_5ctypeIwEE +0000000000001e94 g DF .text 0000000000000010 _ZN2nn6crypto6detail17bigint_digit_multEPjjj +0000000000239ba0 g DF .text 00000000000000bc _ZN2nn8irsensor6detail15IrSensorSession18RunMomentProcessorERKNS0_14IrCameraHandleERKNS0_27PackedMomentProcessorConfigE +00000000002cbf80 g DF .text 0000000000000008 _ZNK7android6Region8subtractERKNS_4RectE +00000000002b342c g DF .text 0000000000000038 _ZTv0_n24_N7android12ConsumerBaseD1Ev +00000000007fedb8 g DO .rodata 000000000000024c _ZN2nn3mii6detail22RandomMiiEyeColorTableE +00000000002599fc g DF .text 0000000000000008 nvdcGetIMPUserInfo +0000000000045b18 g DF .text 00000000000000b0 _ZN2nn4diag12PrintModulesEPmi +00000000000d77b0 g DF .text 00000000000000a8 _ZN2nn4bcat6detail17ShimLibraryGlobal31EnumerateDeliveryCacheDirectoryEPiPNS0_13DirectoryNameEi +00000000007e0470 w DO .rodata 0000000000000168 _ZTSN2nn2sf4cmif6client16CmifProxyFactoryINS_4nifm6detail15IGeneralServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS9_18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEEE13ServiceObjectE +0000000000214324 g DF .text 0000000000000078 _ZN2nn3hid6detail33StartAnalogStickManualCalibrationENS0_6system11UniquePadIdENS2_19AnalogStickPositionE +000000000002ec74 g DF .text 0000000000000004 _ZN2nn5image11JpegEncoderD2Ev +00000000002cbf78 g DF .text 0000000000000008 _ZNK7android6Region9intersectERKNS_4RectE +000000000015b4c4 g DF .text 000000000000007c _ZN2nn2oe38GetDefaultDisplayResolutionChangeEventEPNS_2os11SystemEventE +000000000017a218 g DF .text 0000000000000028 nnsslConnectionSetOption +00000000007d4118 g DO .rodata 0000000000000102 silk_LSFCosTab_FIX_Q12 +00000000000b3efc g DF .text 0000000000000034 _ZN2nn7account24CompleteUserRegistrationERKNS0_3UidE +0000000000070f44 g DF .text 0000000000000020 _ZN2nn4lmem6detail14FreeToUnitHeapEPNS1_8HeapHeadEPv +00000000001b4010 g DF .text 00000000000001d0 _ZN2nn2ec28RequestPurchaseAuthorizationERKNS_7account10UserHandleEPKc +000000000097d090 g DO .data 0000000000000050 _ZTTNSt3__19strstreamE +0000000000948070 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IProfileEditorEEE +00000000000ce140 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service18IAppletProxyCommonENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyENS6_17IApplicationProxyEE12GetProxyInfoEv +00000000000e8a48 g DF .text 00000000000000a8 ec_dec_bit_logp +000000000016c6c0 g DF .text 0000000000000070 _ZN2nn8settings6detail13GetBatteryLotEPNS0_6system10BatteryLotE +0000000000224750 w DF .text 00000000000001a8 _ZNK2nn3hid6detail8RingLifoINS0_16TouchScreenStateILm16EEELi16ENS1_29TouchScreenStateAtomicStorageEE8ReadImplINS3_ILm6EEEEEiPT_i +00000000002cc074 g DF .text 0000000000000008 _ZNK7android6Region9intersectERKS0_ +0000000000251b6c w DF .text 0000000000000260 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_17InRawArgumentInfoILm32ELm8ELl152EEENSB_ILm68ELm2ELl0EEENSB_ILm32ELm1ELl68EEENSB_ILm48ELm1ELl100EEENS7_18BufferArgumentInfoILi0ELi9ELm0EEEEEELm184ELm0ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client23InRawClientArgumentTypeILm32ELm8EvEENSO_ILm68ELm2EvEENSO_ILm32ELm1EvEENSO_ILm48ELm1EvEENSN_24BufferClientArgumentTypeEj +00000000001582f4 g DF .text 0000000000000004 _ZN2nn4nifm6detail12HttpPostDataD1Ev +00000000003e92dc g DF .text 0000000000000038 __musl_bytewise_strcmp +00000000001b62cc g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor15GetMustacheTypeEv +000000000025ce54 g DF .text 0000000000000094 NvOsReallocLeak +0000000000096f5c g DF .text 0000000000000030 _ZN2nn2os6detail36InternalCriticalSectionImplByHorizon8TryEnterEv +0000000000156e94 g DF .text 000000000000001c _ZN2nn4nifm17NetworkConnection11IsAvailableEv +0000000000150cb4 g DF .text 0000000000000034 _ZN2nn4nifm6detail13RequestClient19SetNetworkProfileIdENS_4util4UuidE +00000000000035ac g DF .text 0000000000000080 _ZN2nn6crypto6detail32alg_p256_generate_shared_key_preEPNS1_10p256_pointEPNS1_10p256_curveES3_PjS6_ +0000000000178f10 g DF .text 00000000000000a4 _ZN2nn3ssl10Connection19GetServerCertDetailEPNS1_16ServerCertDetailEPKcj +00000000000a1a88 g DF .text 0000000000000004 nnsocketSend +00000000007c5d30 w DO .rodata 00000000000000ff _ZTSN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service15ISelfControllerENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_EE +0000000000177358 w DF .text 00000000000000fc _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm36ELm4ELl0EEEEEELm0ELm36ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm36ELm4EEEj +0000000000361264 g DF .text 000000000000002c _ZNSt3__111timed_mutexC2Ev +00000000007c5080 w DO .rodata 0000000000000025 _ZTSN2nn2am7service18IAppletProxyCommonE +00000000000bbe3c w DF .text 0000000000000008 _ZThn32_N2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4baas12IManagerBaseENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS6_14IAdministratorEE17GetCmifBaseObjectEv +000000000021ee84 g DF .text 0000000000000064 _ZN2nn3hid6detail29GetAllowedBluetoothLinksCountEv +0000000000043580 w DF .text 0000000000000018 _ZN2nn2sf13SharedPointerINS_3spl6detail16IRandomInterfaceEED2Ev +000000000013e4e8 g DF .text 0000000000000070 _ZN2nn3nfp6SetAllERKNS0_12DeviceHandleERKNS0_7NfpDataE +0000000000163ba8 g DF .text 0000000000000054 _ZN2nn5prepo6detail7msgpack10WriteMap16EPNS2_17OutputStreamParamEt +0000000000180dec w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7timesrv6detail7service12ISystemClockENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4time6detail7service21ServiceProviderClient30CreateTimeUserServiceObjectTagEEEEES8_E33_nn_sf_sync_SetSystemClockContextERKNSL_18SystemClockContextE +00000000001c64e8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3mii6detail16IDatabaseServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS6_21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEES7_E26_nn_sf_sync_IsFullDatabaseENS0_3OutIbvEE +00000000000911ac g DF .text 0000000000000034 _ZN2nn2os21AllocateAddressRegionEPmm +0000000000360d1c g DF .text 0000000000000024 _ZNSt3__112bad_weak_ptrD0Ev +0000000000284470 g DF .text 0000000000000148 NvDdkVicExecute +0000000000945960 g DO .data 0000000000000018 _ZTIN2nn2os6detail36MultiWaitHolderOfMessageQueueNotFullE +000000000009816c w DF .text 0000000000000134 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm8ELm8ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl0EEENSD_ILm8ELm8ELl8EEENSD_ILm8ELm8ELl16EEENSD_ILm8ELm8ELl24EEENSD_ILm8ELm8ELl32EEEEEELm40ELm8ELb1EEESJ_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm8ELm8EEENSO_23InRawClientArgumentTypeILm8ELm8EvEESS_SS_SS_SS_j +0000000000125e50 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E30_nn_sf_sync_GetPlayHistoryListENS0_3OutIivEERKNS0_8OutArrayINS6_15PlayHistoryImplEEERKNS_7account3UidEi +000000000035af1c g DF .text 00000000000001d8 _ZNSt3__115numpunct_bynameIwE6__initEPKc +000000000022ba8c g DF .text 0000000000000064 _ZN2nn3hid6system13GetNpadStatesEPNS1_18NpadSystemExtStateEiRKj +00000000003dba4c w DF .text 0000000000000164 hsearch_r +00000000000c7a38 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_2am7service7IWindowENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES7_E12GetProxyInfoEv +00000000000bd2b4 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7account4http15IOAuthProcedureENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS5_3nas29IOAuthProcedureForExternalNsaEE19_nn_sf_sync_SuspendENS0_3OutINSK_4UuidEvEE +0000000000259228 g DF .text 0000000000000008 nvdcSetWinmask +000000000012f388 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENSB_ILm8ELm8ELl8EEENS7_18BufferArgumentInfoILi0ELi33ELm0EEENS7_17InRawArgumentInfoILm4ELm4ELl0EEEEEELm4ELm16ELb0EEESI_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSO_ILm8ELm8EEENSN_24BufferClientArgumentTypeENSN_23InRawClientArgumentTypeILm4ELm4EvEEj +00000000000ca9e0 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21ILibraryAppletCreatorENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000002377cc g DF .text 00000000000000dc _ZN2nn8irsensor6detail25RunImageTransferProcessorERKNS0_14IrCameraHandleERKNS0_30ImageTransferProcessorExConfigEPvm +00000000002840ac g DF .text 0000000000000060 NvDdkVicReadCrc +000000000003d75c g DF .text 0000000000000004 _ZN2nn4util23StreamingDecompressGzipEPmS1_PvmPKvmPNS0_30StreamingDecompressZlibContextE +00000000001a28c4 g DF .text 0000000000000008 _ZN2nn5audio6server14EffectInfoBase8SetUsageENS2_10UsageStateE +0000000000183584 g DF .text 00000000000000fc _ZN2nn3ntc6detail4shim40EnsureNetworkClockAvailabilityClientImplC2ENS_2os14EventClearModeENS0_34EnsureNetworkClockAvailabilityModeE +00000000003576a8 g DF .text 0000000000000068 _ZNKSt3__17codecvtIDsc11__mbstate_tE6do_outERS1_PKDsS5_RS5_PcS7_RS7_ +0000000000257f0c g DF .text 000000000000019c nvcecWrite +00000000000a19ac g DF .text 0000000000000004 _ZN2nn6socket5IoctlEijPvm +000000000019d314 g DF .text 0000000000000008 _ZNK2nn5audio6server13CommandBuffer26GetEstimatedProcessingTimeEv +0000000000091464 g DF .text 0000000000000004 nnosFinalizeMessageQueue +0000000000269a78 g DF .text 0000000000000064 NvRmSurfaceInitNonRmPitch +00000000007e37c0 w DO .rodata 00000000000000fc _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEvEE +00000000001da5c4 g DF .text 000000000000001c _ZN2nn6fontll18ScalableFontEngine15CheckGlyphExistEj +0000000000273eb8 g DF .text 0000000000000004 NvRmChannelFreeClientManagedSyncPoint +00000000002a419c g DF .text 0000000000000144 _ZN7android14IPCThreadState8shutdownEv +0000000000365c34 w DF .text 00000000000001a8 _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE21__grow_by_and_replaceEmmmmmmPKw +00000000001a139c g DF .text 0000000000000384 _ZN2nn5audio6server11InfoUpdater13UpdateEffectsERNS1_13EffectContextEbPNS1_14MemoryPoolInfoEi +000000000035a520 g DF .text 000000000000000c _ZNKSt3__120__codecvt_utf8_utf16IwE10do_unshiftER11__mbstate_tPcS4_RS4_ +000000000021d5ac g DF .text 00000000000000f4 _ZN2nn3hid6detail16GetNpadPowerInfoEPNS0_6system9PowerInfoES4_RKj +000000000004cd94 g DF .text 00000000000000b8 _ZN2nn2fs6detail12FileAccessorD1Ev +000000000017b41c w DF .text 0000000000000024 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf14ISslConnectionENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E27_nn_sf_sync_SetVerifyOptionENS6_12VerifyOptionE +000000000014776c g DF .text 0000000000000058 _ZN2nn3ngc6detail3Bp_16ReleaseAllocatorEv +00000000003de990 g DF .text 000000000000008c vasprintf +00000000000a1e80 g DF .text 000000000000002c _ZN2nn6socket6detail15HeapIsAvailableEi +00000000001c9ce8 g DF .text 0000000000000084 _ZN2nn5swkbd9InputText3SetEPKDs +00000000002740e4 g DF .text 0000000000000034 NvRmFenceSignalSemaphore +000000000015a654 w DF .text 0000000000000180 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_18BufferArgumentInfoILi0ELi22ELm256EEENSD_ILi1ELi21ELm256EEEEEELm0ELm4ELb0EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSL_24BufferClientArgumentTypeESO_j +00000000000419f4 g DF .text 0000000000000020 _ZN2nn4edid6detail13GetVideoSetupEh +0000000000231db4 w DF .text 0000000000000008 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid10IHidServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail9HidServerEEEEES6_E12GetProxyInfoEv +000000000095dbb0 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS4_6detail14IrSensorServerEEEEEE13ServiceObjectE +0000000000120adc g DF .text 0000000000000130 _ZN2nn7friends13SuspendDaemonEPNS0_16DaemonSuspensionE +00000000000bbe44 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS_7account6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSI_3nas40IOAuthProcedureForNintendoAccountLinkageEEEvi +000000000094edb0 w DO .data 0000000000000038 _ZTIN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3apm18IManagerPrivilegedENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESE_E6ObjectE +000000000095b920 w DO .data 0000000000000018 _ZTIN2nn3hid6detail9MouseLifoE +000000000024e7d4 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_6capsrv2sf29IScreenShotApplicationServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E26_nn_sf_sync_SaveScreenShotENS0_3OutINS5_21ApplicationAlbumEntryEvEERKNS0_8InBufferEjNS_6applet20AppletResourceUserIdEj +000000000006c7e0 g DF .text 0000000000000028 _ZN2nn2fs6detail27StorageServiceObjectAdapterD2Ev +00000000007b87e0 g DO .rodata 0000000000000037 _ZTSN2nn2os6detail37MultiWaitHolderOfMessageQueueNotEmptyE +0000000000956280 w DO .data 0000000000000018 _ZTIN2nn7timesrv6detail7service16ITimeZoneServiceE +0000000000041c2c g DF .text 000000000000005c _ZN2nn4edid6detail22VisitEstablishedTimingEPFbPKNS0_15DisplayModeInfoEPKNS0_17DisplayTimingInfoEPKNS0_13ImageSizeInfoEPvESB_iifb +00000000003b9818 g DF .text 0000000000000024 __shlim +00000000003de37c w DF .text 000000000000003c fputc_unlocked +00000000000a1b94 g DF .text 0000000000000004 nnsocketSetLastErrno +0000000000a80a58 g DO .bss 0000000000000001 _ZNSt3__119__start_std_streamsE +000000000097d590 g DO .data 0000000000000018 _ZTISt9bad_alloc +000000000004f370 g DF .text 000000000000008c _ZN2nn2fs11GetFileSizeEPlNS0_10FileHandleE +0000000000169de0 g DF .text 0000000000000044 _ZN2nn8settings6system24GetPtmFuelGaugeParameterEPNS1_21PtmFuelGaugeParameterE +00000000003966ac g DF .text 0000000000000054 _ZNSt11logic_errorD2Ev +0000000000954e70 w DO .data 0000000000000018 _ZTIN2nn2sf4cmif6client16CmifProxyFactoryINS_8settings28IFirmwareDebugSettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS6_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES5_EEEEE13ServiceObjectE +00000000002297b0 g DF .text 0000000000000044 _ZN2nn3hid18InitializeKeyboardEv +00000000007e31a0 w DO .rodata 000000000000002f _ZTSN2nn4pctl6detail3ipc23IParentalControlServiceE +00000000001a26ec g DF .text 0000000000000018 _ZNK2nn5audio6server12BehaviorInfo51IsAudioRenererProcessingTimeLimit70PercentSupportedEv +000000000016a368 g DF .text 0000000000000068 _ZN2nn8settings5fwdbg18GetSettingsItemKeyEPvmRKNS1_23SettingsItemKeyIteratorE +0000000000255a90 g DF .text 0000000000000100 _ZN2nn3web16ShowSharePageArg22SetAdditionalMediaDataEPKhm +0000000000805670 g DO .rodata 0000000000000020 _ZN2nn4util10BitFlagSetILi256ENS_3hid11KeyboardKeyEE4FlagILi133EE4MaskE +00000000001bfa30 g DF .text 0000000000000084 _ZNK2nn3mii6detail16Ver3StoreDataRaw14GetEyebrowTypeEv +00000000001da230 g DF .text 00000000000000b8 _ZN2nn6fontll18ScalableFontEngine25AcquireRawOtfKerningFirstEPKNS0_15OtfKerningTableEj +000000000017ab58 w DF .text 0000000000000038 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_E22_nn_sf_sync_DebugIoctlERKNS0_9OutBufferERKNS0_8InBufferEm +00000000007f5f24 g DO .rodata 0000000000000140 _ZN2nn3mii6detail18FacelineColorTableE +00000000001d0098 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5visrv2sf22IManagerDisplayServiceENS0_4hipc6client18Hipc2ProxyKindBaseILNS8_6detail11MessageTypeE4EEENS0_30MemoryResourceAllocationPolicyES7_E42_nn_sf_sync_CreateIndirectConsumerEndPointENS0_3OutImvEEmNS_6applet20AppletResourceUserIdE +00000000001e2ad8 g DF .text 0000000000000038 scale_font +000000000032efd8 w DF .text 0000000000000084 _ZNSt3__113basic_ostreamIcNS_11char_traitsIcEEEC1EPNS_15basic_streambufIcS2_EE +00000000001670b8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_5prepo6detail3ipc13IPrepoServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E33_nn_sf_sync_GetTransmissionStatusENS0_3OutIivEE +00000000003262bc g DF .text 000000000000001c _ZNSt16nested_exceptionD2Ev +00000000007bc700 w DO .rodata 000000000000014c _ZTSN2nn2sf4cmif6client6detail9CmifProxyINS_7account7profile8IProfileENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS5_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEvEE +0000000000058b6c w DF .text 00000000000001d0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_17InRawArgumentInfoILm8ELm8ELl0EEENSC_18BufferArgumentInfoILi0ELi69ELm0EEENSG_ILm8ELm8ELl8EEEEEELm16ELm0ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_23InRawClientArgumentTypeILm8ELm8EvEENS2_24BufferClientArgumentTypeEST_j +0000000000160de0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4pctl6detail3ipc23IParentalControlServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E25_nn_sf_sync_DeletePairingEv +00000000001186f8 g DF .text 00000000000000b0 _ZN2nn5codec11OpusEncoder14BindCodingModeENS0_14OpusCodingModeE +0000000000955a80 w DO .data 0000000000000048 _ZTIN2nn2sf4cmif6client6detail13CmifProxyImplINS_3ssl2sf11ISslContextENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSA_18Hipc2ProxyKindBaseILNS9_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEES7_EE +0000000000187240 g DF .text 000000000000000c _ZN2nn5audio17GetAuxSampleCountEPKNS0_7AuxTypeE +0000000000395dd0 g DF .text 0000000000000024 _ZNSt20bad_array_new_lengthD0Ev +00000000000c2440 g DF .text 000000000000002c _ZNK2nn7account13ProfileEditor13IsLocalOriginEv +00000000001b625c g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor16GetEyebrowAspectEv +00000000000d14b4 w DF .text 00000000000000f0 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEEEEELm0ELm4ELb0EEESD_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEEj +00000000001727c0 w DF .text 0000000000000200 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18BufferArgumentInfoILi0ELi25ELm72EEENSB_ILi1ELi25ELm72EEENSB_ILi2ELi5ELm0EEEEEELm0ELm0ELb0EEESF_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24BufferClientArgumentTypeESL_SL_j +00000000007e5570 w DO .rodata 0000000000000152 _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_3ssl2sf11ISslServiceENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_24StatefulAllocationPolicyINS0_16ExpHeapAllocatorEEEE13ServiceObjectESL_E6ObjectE +0000000000117fb4 g DF .text 0000000000000008 _ZNK2nn5codec11OpusDecoder13GetSampleRateEv +00000000002956c0 g DF .text 0000000000000010 _ZN7android7BBinder17onGetNativeHandleEjRjRb +00000000000b2380 g DF .text 0000000000000044 _ZN2nn7account6detail24SimpleOAuthProcedureBaseC1EOS2_ +00000000002333e4 w DF .text 0000000000000118 _ZN2nn2sf4hipc6client24Hipc2ClientCoreProcessorILNS1_6detail11MessageTypeE4ENS0_4cmif6detail14CoreMethodInfoINSt3__15tupleIJNS7_18OutRawArgumentInfoILm4ELm4ELl0EEENS7_17InRawArgumentInfoILm8ELm8ELl8EEENSD_ILm4ELm4ELl0EEEEEELm16ELm4ELb1EEESG_E7ProcessEPNS2_26Hipc2ClientProxyBaseObjectENS6_6client24OutRawClientArgumentTypeILm4ELm4EEENSL_23InRawClientArgumentTypeILm8ELm8EvEENSO_ILm4ELm4EvEEj +00000000002c4f98 g DF .text 0000000000000094 _ZN7android8Composer13setLayerStackERKNS_2spINS_21SurfaceComposerClientEEERKNS1_INS_7IBinderEEEj +00000000003a3274 g DF .text 00000000000001a0 __mulsc3 +000000000031aeb0 w DF .text 0000000000000308 _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIccEEPcEEbT0_S5_T_ +00000000003a8eb0 w DF .text 0000000000000054 uselocale +00000000000c93d8 w DF .text 0000000000000058 _ZN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service25IProcessWindingControllerENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6Object7ReleaseEv +00000000009ef6e8 g DO .bss 0000000000000008 _ZN2nn3ssl6detail16SslMemoryManager10g_HeapSizeE +0000000000228810 g DF .text 0000000000000060 _ZN2nn3hid6system22GetCaptureButtonStatesEPNS1_18CaptureButtonStateEi +000000000000a6f8 g DF .text 0000000000000004 _ZN2nn5image6detail4jpeg21jpeg_destroy_compressEPNS2_20jpeg_compress_structE +00000000002350c0 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E31_nn_sf_sync_AbortFirmwareUpdateEv +0000000000236674 g DF .text 0000000000000078 _ZN2nn8irsensor6detail17GetIrCameraStatusEPNS0_14IrCameraStatusERKNS0_14IrCameraHandleE +00000000000d6690 g DF .text 0000000000000098 _ZN2nn4bcat17DeliveryCacheFileD2Ev +000000000025d060 g DF .text 000000000000002c NvOsFread +00000000000938a8 g DF .text 0000000000000048 _ZNK2nn2os6detail37MultiWaitHolderOfMessageQueueNotEmpty10IsSignaledEv +00000000001de210 g DF .text 00000000000000a4 FSS_get_graymap +00000000000d8188 w DF .text 00000000000000a8 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E29_nn_sf_sync_CreateBcatServiceENS0_3OutINS0_13SharedPointerINS7_12IBcatServiceEEEvEEm +0000000000122998 g DF .text 000000000000000c _ZN2nn7friends12UserPresenceC2Ev +0000000000945078 g DO .data 0000000000000020 nnmem_spinlock_cond +000000000022b474 g DF .text 0000000000000048 _ZN2nn3hid41EnableUnintendedHomeButtonInputProtectionERKjb +00000000000033fc g DF .text 0000000000000080 _ZN2nn6crypto6detail28alg_p256_generate_shared_keyEPjPKNS1_10p256_pointEPKNS1_10p256_curveES5_PKj +00000000003e560c g DF .text 00000000000001cc __nnmusl_FileWrite +000000000015699c g DF .text 000000000000001c _ZN2nn4nifm33UnregisterRequestSocketDescriptorENS0_13RequestHandleE +00000000001624cc w DF .text 00000000000001b8 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm4ELl0EEENSC_21OutHandleArgumentInfoILi0ELi1EEEEEELm0ELm8ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm4EEENS2_27OutHandleClientArgumentTypeEj +00000000002233f0 g DF .text 00000000000000e8 _ZN2nn3hid6detail20GetTouchScreenStatesILm12EEENS_6ResultEPiPNS0_16TouchScreenStateIXT_EEEi +0000000000091428 g DF .text 0000000000000004 nnosFinalizeEvent +000000000013b4e4 w DF .text 00000000000001e0 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi6ELm0EEENSC_18OutRawArgumentInfoILm4ELm4ELl0EEENSC_17InRawArgumentInfoILm8ELm4ELl0EEEEEELm8ELm4ELb0EEESM_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_24OutRawClientArgumentTypeILm4ELm4EEENS2_23InRawClientArgumentTypeILm8ELm4EvEEj +000000000031640c g DF .text 0000000000000038 _ZN2nn3i2c4SendERKNS0_10I2cSessionEPKvmNS0_17TransactionOptionE +0000000000092c18 g DF .text 000000000000000c _ZN2nn2os6detail15StopTimerUnsafeEPNS0_14TimerEventTypeE +0000000000355b74 g DF .text 0000000000000190 _ZNSt3__112ctype_bynameIcEC2EPKcm +000000000008e930 g DF .text 0000000000000134 _ZN2nn2os21TimedSendMessageQueueEPNS0_16MessageQueueTypeEmNS_8TimeSpanE +00000000000c295c g DF .text 000000000000004c _ZN2nn2am20GetCommonStateGetterEv +00000000000907cc g DF .text 0000000000000060 _ZN2nn2os15FreeMemoryBlockEmm +000000000008c4b8 g DF .text 0000000000000130 _ZN2nn3mem19NumberLineAllocator12FindUserDataEPPvi +000000000023c2dc w DF .text 0000000000000030 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8irsensor15IIrSensorServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail14IrSensorServerEEEEES6_E42_nn_sf_sync_GetImageTransferProcessorStateENS_6applet20AppletResourceUserIdENS0_3OutINS5_27ImageTransferProcessorStateEvEERKNS0_9OutBufferENS5_14IrCameraHandleE +00000000000b0d40 g DF .text 0000000000000008 _ZN2nn6socket8resolver10serializer13DNSSerializer6SizeOfI12sockaddr_in6EEmRKT_ +000000000018c1ac g DF .text 0000000000000018 _ZN2nn5audio17GetVoiceMixVolumeEPKNS0_9VoiceTypeEPKNS0_12FinalMixTypeEii +0000000000173758 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_8settings15ISettingsServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ES6_EEEES6_E41_nn_sf_sync_GetAvailableLanguageCodeCountENS0_3OutIivEE +00000000001b62d4 g DF .text 0000000000000008 _ZNK2nn3mii21ParamCharInfoAccessor16GetMustacheScaleEv +00000000007b09e0 w DO .rodata 000000000000002d _ZTSN2nn2sf4impl6detail22ServiceObjectImplBase2E +00000000001cab90 g DF .text 0000000000000030 _ZN2nn5swkbd6detail18InlineKeyboardImpl14SetKeytopScaleEff +0000000000365ddc w DF .text 000000000000017c _ZNSt3__112basic_stringIwNS_11char_traitsIwEENS_9allocatorIwEEE9__grow_byEmmmmmm +00000000000d8380 w DF .text 0000000000000010 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_4bcat6detail3ipc15IServiceCreatorENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E17GetCmifBaseObjectEv +00000000002203e4 w DF .text 0000000000000004 _ZN2nn3hid6detail8RingLifoINS0_17NpadHandheldStateELi16ENS1_13AtomicStorageIS3_EEED2Ev +000000000025523c g DF .text 000000000000008c _ZN2nn3web6detail24ShowOfflinePageArgDetail16SetLeftStickModeEPhRKNS0_20OfflineLeftStickModeE +000000000035a7e0 g DF .text 0000000000000024 _ZNSt3__116__narrow_to_utf8ILm32EED0Ev +000000000016e0e0 g DF .text 0000000000000070 _ZN2nn8settings6detail31GetConsoleInformationUploadFlagEPb +00000000001e03d0 g DF .text 000000000000000c FSS_load_font +00000000000c2a8c g DF .text 000000000000004c _ZN2nn2am19GetWindowControllerEv +0000000000126014 w DF .text 000000000000003c _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_7friends6detail3ipc14IFriendServiceENS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyES8_E48_nn_sf_sync_SendFriendRequestWithApplicationInfoERKNS_7account3UidENSL_23NetworkServiceAccountIdEiRKNS5_15ApplicationInfoERKNS5_15InAppScreenNameESV_ +0000000000128bb8 w DF .text 0000000000000170 _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18OutRawArgumentInfoILm8ELm1ELl0EEENSC_17InRawArgumentInfoILm16ELm8ELl0EEENSI_ILm8ELm8ELl16EEEEEELm24ELm8ELb0EEESL_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24OutRawClientArgumentTypeILm8ELm1EEENS2_23InRawClientArgumentTypeILm16ELm8EvEENSU_ILm8ELm8EvEEj +0000000000813460 w DO .rodata 0000000000000033 _ZTSN2nn3ldn6detail32ISystemLocalCommunicationServiceE +0000000000328ea8 w DF .text 000000000000000c _ZNSt3__115basic_streambufIcNS_11char_traitsIcEEE10pubseekoffExNS_8ios_base7seekdirEj +0000000000945050 g DO .data 0000000000000008 nnmem_nlib_hex_char_table +00000000001bc8a0 g DF .text 0000000000000034 _ZN2nn3mii6detail12StoreDataRaw12BuildDefaultEPNS1_11UtilityImplEi +00000000000d6e18 g DF .text 000000000000003c _ZN2nn4bcat21DeliveryCacheProgressC1Ev +0000000000234ef8 w DF .text 0000000000000020 _ZN2nn2sf4cmif6client6detail13CmifProxyImplINS_3hid16IHidSystemServerENS0_4hipc6client18Hipc2ProxyKindBaseILNS7_6detail11MessageTypeE4EEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS5_6detail15HidSystemServerEEEEES6_E57_nn_sf_sync_RetryCurrentAnalogStickManualCalibrationStageENS5_6system11UniquePadIdEl +000000000005d154 w DF .text 00000000000001cc _ZN2nn2sf4cmif6client34CmifDomainProxyClientCoreProcessorINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS5_18Hipc2ProxyKindBaseILNS4_6detail11MessageTypeE4EEEEENS1_6detail14CoreMethodInfoINSt3__15tupleIJNSC_18BufferArgumentInfoILi0ELi5ELm0EEENSC_17InRawArgumentInfoILm8ELm8ELl0EEEEEELm8ELm0ELb0EEESK_E7ProcessEPNS2_23CmifDomainClientMessageISB_E15ProxyBaseObjectENS2_24BufferClientArgumentTypeENS2_23InRawClientArgumentTypeILm8ELm8EvEEj +00000000002d3420 g DF .text 0000000000000020 _ZN7android16SortedVectorImplC2Emj +00000000000bad6c w DF .text 0000000000000008 _ZN2nn2sf6detail39ObjectImplFactoryWithStatelessAllocatorINS0_4cmif6client16CmifProxyFactoryINS_7account4baas28IFloatingRegistrationRequestENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm2048ENS6_6detail12ObjectHolder24ObjectHolderAllocatorTagEEEEEE13ServiceObjectESP_E6Object12AddReferenceEv +00000000007cce40 w DO .rodata 000000000000014d _ZTSN2nn2sf6detail38ObjectImplFactoryWithStatefulAllocatorINS0_4cmif6client16CmifProxyFactoryINS_2am7service21IApplicationFunctionsENS4_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINSB_18Hipc2ProxyKindBaseILNSA_6detail11MessageTypeE4EEEEEEENS0_30MemoryResourceAllocationPolicyEE13ServiceObjectESJ_E6ObjectE +00000000002d2c84 g DF .text 0000000000000090 _ZN7android10VectorImpl3addEPKv +00000000002c9b38 g DF .text 0000000000000048 _ZN7android13GraphicBuffer4lockEjPPv +00000000000b396c g DF .text 000000000000003c _ZN2nn7account28DeleteSaveDataThumbnailImageERKNS0_3UidE +00000000001d3b6c g DF .text 0000000000000090 _ZN2nn2vi21GetDisplayContentTypeEPNS0_11ContentTypeEPKNS0_7DisplayE +0000000000253460 g DF .text 00000000000000bc _ZN2nn3web19ShowOfflineHtmlPageEPNS0_26OfflineHtmlPageReturnValueERKNS0_22ShowOfflineHtmlPageArgE +0000000000067e44 g DF .text 00000000000001f8 _ZN2nn2fs22CreateTemporaryStorageENS_3ncm13ApplicationIdEmlj +00000000001b1610 g DF .text 000000000000001c _ZN2nn2ec21ShowShopCouponForMenuENS0_8CouponIdERKNS_7account3UidENS0_8SourceIdE +0000000000154278 w DF .text 00000000000000b4 _ZN2nn2sf4cmif6client32GetClientProcessorWithObjectBaseINS2_15CmifDomainProxyINS0_4hipc6client38Hipc2ClientSessionManagedProxyKindBaseINS6_18Hipc2ProxyKindBaseILNS5_6detail11MessageTypeE4EEEEEEEE14ObjectAssignerINS0_25StatelessAllocationPolicyINS0_22ExpHeapStaticAllocatorILm16384ENS_4nifm6detail21ServiceProviderClient30CreateNifmUserServiceObjectTagEEEEENS0_6detail23StatelessDummyAllocatorEE14AllocateObjectINSJ_15INetworkProfileEEEvi +00000000001b1570 g DF .text 0000000000000020 _ZN2nn2ec37ShowShopApplicationInformationForMenuENS0_5NsUidERKNS_7account3UidENS0_8SourceIdE +000000000015c458 g DF .text 0000000000000054 _ZN2nn2oe16DisableRecordingEv +0000000000091248 g DF .text 000000000000002c _ZN2nn2os17FreeAddressRegionEm +0000000000217978 g DF .text 00000000000000b8 _ZN2nn3hid6detail19NotifyInputDetectorERKNS_4util10BitFlagSetILi32ENS0_6system13InputSourceIdEEE +00000000003ce8f8 g DF .text 0000000000000244 sincosf +00000000007debf0 g DO .rodata 000000000000001b _ZTSN2nn3ngc15ProfanityFilterE + + diff --git a/packages/test-mod/src/lib.rs b/packages/test-mod/src/lib.rs new file mode 100644 index 0000000..be8beaf --- /dev/null +++ b/packages/test-mod/src/lib.rs @@ -0,0 +1,141 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (c) 2026 Megaton contributors + +#[cxx::bridge] +mod ffi { + unsafe extern "C++" { + include!("test-mod/mod.h"); + + fn init_function_in_c(); + fn write_test_output(data: &str); + } + #[namespace = "example_rs"] + extern "Rust" { + fn run_megaton_tests(); + } +} + +struct MegatonTests { + total_tests: usize, + passed_tests: usize, + category_tests: usize, + category_passed_tests: usize, + category: &'static str +} + +impl MegatonTests { + + fn new() -> MegatonTests { + MegatonTests { + total_tests: 0, + passed_tests: 0, + category_tests: 0, + category_passed_tests: 0, + category: "", + } + } + + fn megaton_log(&self, text: &str) { + ffi::write_test_output(text); + } + + fn megaton_assert<T: std::cmp::PartialEq + std::fmt::Debug>(&mut self, result: T, expected: T) { + self.total_tests += 1; + self.category_tests += 1; + if result != expected { + self.megaton_log(format!("Test number {:#?} failed: got {:#?}, expected {:#?}\n", self.total_tests, result, expected).as_str()); + } else { + self.passed_tests += 1; + self.category_passed_tests += 1; + } + } + + fn megaton_assert_msg<T: std::cmp::PartialEq + std::fmt::Debug>(&mut self, result: T, expected: T, msg: &str) { + self.total_tests += 1; + self.category_tests += 1; + if result != expected { + self.megaton_log(format!("Test number {:#?} failed: got {:#?}, expected {:#?}. Message: {:?}\n", self.total_tests, result, expected, msg).as_str()); + } else { + self.passed_tests += 1; + self.category_passed_tests += 1; + } + } + + fn megaton_assert_ok<T,E>(&mut self, result: Result<T,E>, msg: &str) -> Option<T> + where + T: std::fmt::Debug, + E: std::fmt::Debug + { + self.total_tests += 1; + self.category_tests += 1; + if result.is_err() { + self.megaton_log(format!("Test number {:#?} failed: received Err: {:?}. Message: {:?}\n", self.total_tests, result.unwrap_err(), msg).as_str()); + return None; + } else { + self.passed_tests += 1; + self.category_passed_tests += 1; + return Some(result.unwrap()); + } + } + fn start_category(&mut self, category: &'static str) { + self.category_tests = 0; + self.category_passed_tests = 0; + self.category = category; + } + + fn end_category(&mut self) { + self.megaton_log(format!("{:#?} tests finished, {:#?}/{:#?} Passed\n", self.category, self.category_passed_tests, self.category_tests).as_str()); + self.category_tests = 0; + self.category_passed_tests = 0; + self.category = ""; + } +} + +fn megaton_num_tests(mtt: &mut MegatonTests) { + mtt.start_category("Math"); + // basic math + mtt.megaton_assert(1 + 1, 2); + mtt.megaton_assert(1 * 1, 1); + mtt.megaton_assert(1 - 1, 0); + mtt.megaton_assert(1 / 1, 1); + mtt.megaton_assert(4 + 2, 6); + mtt.megaton_assert(4 - 2, 2); + mtt.megaton_assert(4 * 2, 8); + mtt.megaton_assert(4 / 2, 2); + + // more in depth + for i in 0..25 { + for j in 0..25 { + mtt.megaton_assert(i + j, j + i); + mtt.megaton_assert(i * j, j * i); + mtt.megaton_assert(((i - j) as i32).abs(), ((j - i) as i32).abs()); + } + mtt.megaton_assert(i * 2, i + i); + mtt.megaton_assert(i - i, 0) + } + mtt.end_category(); +} + +fn megaton_string_tests(mtt: &mut MegatonTests) { + mtt.start_category("Strings"); + mtt.megaton_assert("", ""); + mtt.end_category(); +} + +fn megaton_file_tests(mtt: &mut MegatonTests) { + mtt.start_category("Files"); + mtt.end_category(); +} + +fn run_megaton_tests() { + let mut mtt = MegatonTests::new(); + megaton_num_tests(&mut mtt); + megaton_string_tests(&mut mtt); + megaton_file_tests(&mut mtt); + mtt.megaton_log(format!("Tests finished, {:#?}/{:#?} Passed\n", mtt.passed_tests, mtt.total_tests).as_str()); +} + +#[unsafe(no_mangle)] +extern "C" fn __megaton_rs_main() { + ffi::init_function_in_c(); +} diff --git a/packages/test-mod/src/main.cpp b/packages/test-mod/src/main.cpp new file mode 100644 index 0000000..f5fd468 --- /dev/null +++ b/packages/test-mod/src/main.cpp @@ -0,0 +1,31 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (c) 2026 Megaton contributors + +#include <megaton/prelude.h> + +#include <test-mod/mod.h> +#include <lib.h> +#include <rust/cxx.h> + +namespace nn::fs { + void MountSdCard(const char* path); +} + +extern "C" void __megaton_rs_main(); + +extern "C" void megaton_main() { + __megaton_rs_main(); +} + +static FILE* f; + +void write_test_output(rust::Str data) { + fwrite(data.data(), sizeof(char), data.length(), f); +} + +void init_function_in_c() { + nn::fs::MountSdCard("sd"); + f = fopen("sd:/test_output.txt", "w"); + example_rs::run_megaton_tests(); + fclose(f); +}